computeimage

package
v0.0.12 Latest Latest
Warning

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

Go to latest
Published: Oct 20, 2025 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the computeimage type in the database.
	Label = "compute_image"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldImage holds the string denoting the image field in the database.
	FieldImage = "image"
	// FieldTag holds the string denoting the tag field in the database.
	FieldTag = "tag"
	// FieldOsType holds the string denoting the os_type field in the database.
	FieldOsType = "os_type"
	// FieldOsVariant holds the string denoting the os_variant field in the database.
	FieldOsVariant = "os_variant"
	// FieldFilename holds the string denoting the filename field in the database.
	FieldFilename = "filename"
	// FieldDownloadURL holds the string denoting the download_url field in the database.
	FieldDownloadURL = "download_url"
	// FieldMd5 holds the string denoting the md5 field in the database.
	FieldMd5 = "md5"
	// FieldSort holds the string denoting the sort field in the database.
	FieldSort = "sort"
	// FieldArch holds the string denoting the arch field in the database.
	FieldArch = "arch"
	// FieldBootType holds the string denoting the boot_type field in the database.
	FieldBootType = "boot_type"
	// Table holds the table name of the computeimage in the database.
	Table = "compute_images"
)

Variables

View Source
var (
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// ImageValidator is a validator for the "image" field. It is called by the builders before save.
	ImageValidator func(string) error
	// TagValidator is a validator for the "tag" field. It is called by the builders before save.
	TagValidator func(string) error
	// OsTypeValidator is a validator for the "os_type" field. It is called by the builders before save.
	OsTypeValidator func(string) error
	// OsVariantValidator is a validator for the "os_variant" field. It is called by the builders before save.
	OsVariantValidator func(string) error
	// DefaultBootType holds the default value on creation for the "boot_type" field.
	DefaultBootType string
)

Columns holds all SQL columns for computeimage fields.

Functions

func And

func And(predicates ...predicate.ComputeImage) predicate.ComputeImage

And groups predicates with the AND operator between them.

func Arch

Arch applies equality check predicate on the "arch" field. It's identical to ArchEQ.

func ArchContains

func ArchContains(v string) predicate.ComputeImage

ArchContains applies the Contains predicate on the "arch" field.

func ArchContainsFold

func ArchContainsFold(v string) predicate.ComputeImage

ArchContainsFold applies the ContainsFold predicate on the "arch" field.

func ArchEQ

func ArchEQ(v string) predicate.ComputeImage

ArchEQ applies the EQ predicate on the "arch" field.

func ArchEqualFold

func ArchEqualFold(v string) predicate.ComputeImage

ArchEqualFold applies the EqualFold predicate on the "arch" field.

func ArchGT

func ArchGT(v string) predicate.ComputeImage

ArchGT applies the GT predicate on the "arch" field.

func ArchGTE

func ArchGTE(v string) predicate.ComputeImage

ArchGTE applies the GTE predicate on the "arch" field.

func ArchHasPrefix

func ArchHasPrefix(v string) predicate.ComputeImage

ArchHasPrefix applies the HasPrefix predicate on the "arch" field.

func ArchHasSuffix

func ArchHasSuffix(v string) predicate.ComputeImage

ArchHasSuffix applies the HasSuffix predicate on the "arch" field.

func ArchIn

func ArchIn(vs ...string) predicate.ComputeImage

ArchIn applies the In predicate on the "arch" field.

func ArchLT

func ArchLT(v string) predicate.ComputeImage

ArchLT applies the LT predicate on the "arch" field.

func ArchLTE

func ArchLTE(v string) predicate.ComputeImage

ArchLTE applies the LTE predicate on the "arch" field.

func ArchNEQ

func ArchNEQ(v string) predicate.ComputeImage

ArchNEQ applies the NEQ predicate on the "arch" field.

func ArchNotIn

func ArchNotIn(vs ...string) predicate.ComputeImage

ArchNotIn applies the NotIn predicate on the "arch" field.

func BootType added in v0.0.12

func BootType(v string) predicate.ComputeImage

BootType applies equality check predicate on the "boot_type" field. It's identical to BootTypeEQ.

func BootTypeContains added in v0.0.12

func BootTypeContains(v string) predicate.ComputeImage

BootTypeContains applies the Contains predicate on the "boot_type" field.

func BootTypeContainsFold added in v0.0.12

func BootTypeContainsFold(v string) predicate.ComputeImage

BootTypeContainsFold applies the ContainsFold predicate on the "boot_type" field.

func BootTypeEQ added in v0.0.12

func BootTypeEQ(v string) predicate.ComputeImage

BootTypeEQ applies the EQ predicate on the "boot_type" field.

func BootTypeEqualFold added in v0.0.12

func BootTypeEqualFold(v string) predicate.ComputeImage

BootTypeEqualFold applies the EqualFold predicate on the "boot_type" field.

func BootTypeGT added in v0.0.12

func BootTypeGT(v string) predicate.ComputeImage

BootTypeGT applies the GT predicate on the "boot_type" field.

func BootTypeGTE added in v0.0.12

func BootTypeGTE(v string) predicate.ComputeImage

BootTypeGTE applies the GTE predicate on the "boot_type" field.

func BootTypeHasPrefix added in v0.0.12

func BootTypeHasPrefix(v string) predicate.ComputeImage

BootTypeHasPrefix applies the HasPrefix predicate on the "boot_type" field.

func BootTypeHasSuffix added in v0.0.12

func BootTypeHasSuffix(v string) predicate.ComputeImage

BootTypeHasSuffix applies the HasSuffix predicate on the "boot_type" field.

func BootTypeIn added in v0.0.12

func BootTypeIn(vs ...string) predicate.ComputeImage

BootTypeIn applies the In predicate on the "boot_type" field.

func BootTypeLT added in v0.0.12

func BootTypeLT(v string) predicate.ComputeImage

BootTypeLT applies the LT predicate on the "boot_type" field.

func BootTypeLTE added in v0.0.12

func BootTypeLTE(v string) predicate.ComputeImage

BootTypeLTE applies the LTE predicate on the "boot_type" field.

func BootTypeNEQ added in v0.0.12

func BootTypeNEQ(v string) predicate.ComputeImage

BootTypeNEQ applies the NEQ predicate on the "boot_type" field.

func BootTypeNotIn added in v0.0.12

func BootTypeNotIn(vs ...string) predicate.ComputeImage

BootTypeNotIn applies the NotIn predicate on the "boot_type" field.

func DownloadURL

func DownloadURL(v string) predicate.ComputeImage

DownloadURL applies equality check predicate on the "download_url" field. It's identical to DownloadURLEQ.

func DownloadURLContains

func DownloadURLContains(v string) predicate.ComputeImage

DownloadURLContains applies the Contains predicate on the "download_url" field.

func DownloadURLContainsFold

func DownloadURLContainsFold(v string) predicate.ComputeImage

DownloadURLContainsFold applies the ContainsFold predicate on the "download_url" field.

func DownloadURLEQ

func DownloadURLEQ(v string) predicate.ComputeImage

DownloadURLEQ applies the EQ predicate on the "download_url" field.

func DownloadURLEqualFold

func DownloadURLEqualFold(v string) predicate.ComputeImage

DownloadURLEqualFold applies the EqualFold predicate on the "download_url" field.

func DownloadURLGT

func DownloadURLGT(v string) predicate.ComputeImage

DownloadURLGT applies the GT predicate on the "download_url" field.

func DownloadURLGTE

func DownloadURLGTE(v string) predicate.ComputeImage

DownloadURLGTE applies the GTE predicate on the "download_url" field.

func DownloadURLHasPrefix

func DownloadURLHasPrefix(v string) predicate.ComputeImage

DownloadURLHasPrefix applies the HasPrefix predicate on the "download_url" field.

func DownloadURLHasSuffix

func DownloadURLHasSuffix(v string) predicate.ComputeImage

DownloadURLHasSuffix applies the HasSuffix predicate on the "download_url" field.

func DownloadURLIn

func DownloadURLIn(vs ...string) predicate.ComputeImage

DownloadURLIn applies the In predicate on the "download_url" field.

func DownloadURLLT

func DownloadURLLT(v string) predicate.ComputeImage

DownloadURLLT applies the LT predicate on the "download_url" field.

func DownloadURLLTE

func DownloadURLLTE(v string) predicate.ComputeImage

DownloadURLLTE applies the LTE predicate on the "download_url" field.

func DownloadURLNEQ

func DownloadURLNEQ(v string) predicate.ComputeImage

DownloadURLNEQ applies the NEQ predicate on the "download_url" field.

func DownloadURLNotIn

func DownloadURLNotIn(vs ...string) predicate.ComputeImage

DownloadURLNotIn applies the NotIn predicate on the "download_url" field.

func Filename

func Filename(v string) predicate.ComputeImage

Filename applies equality check predicate on the "filename" field. It's identical to FilenameEQ.

func FilenameContains

func FilenameContains(v string) predicate.ComputeImage

FilenameContains applies the Contains predicate on the "filename" field.

func FilenameContainsFold

func FilenameContainsFold(v string) predicate.ComputeImage

FilenameContainsFold applies the ContainsFold predicate on the "filename" field.

func FilenameEQ

func FilenameEQ(v string) predicate.ComputeImage

FilenameEQ applies the EQ predicate on the "filename" field.

func FilenameEqualFold

func FilenameEqualFold(v string) predicate.ComputeImage

FilenameEqualFold applies the EqualFold predicate on the "filename" field.

func FilenameGT

func FilenameGT(v string) predicate.ComputeImage

FilenameGT applies the GT predicate on the "filename" field.

func FilenameGTE

func FilenameGTE(v string) predicate.ComputeImage

FilenameGTE applies the GTE predicate on the "filename" field.

func FilenameHasPrefix

func FilenameHasPrefix(v string) predicate.ComputeImage

FilenameHasPrefix applies the HasPrefix predicate on the "filename" field.

func FilenameHasSuffix

func FilenameHasSuffix(v string) predicate.ComputeImage

FilenameHasSuffix applies the HasSuffix predicate on the "filename" field.

func FilenameIn

func FilenameIn(vs ...string) predicate.ComputeImage

FilenameIn applies the In predicate on the "filename" field.

func FilenameLT

func FilenameLT(v string) predicate.ComputeImage

FilenameLT applies the LT predicate on the "filename" field.

func FilenameLTE

func FilenameLTE(v string) predicate.ComputeImage

FilenameLTE applies the LTE predicate on the "filename" field.

func FilenameNEQ

func FilenameNEQ(v string) predicate.ComputeImage

FilenameNEQ applies the NEQ predicate on the "filename" field.

func FilenameNotIn

func FilenameNotIn(vs ...string) predicate.ComputeImage

FilenameNotIn applies the NotIn predicate on the "filename" field.

func ID

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int32) predicate.ComputeImage

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int32) predicate.ComputeImage

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int32) predicate.ComputeImage

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int32) predicate.ComputeImage

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int32) predicate.ComputeImage

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int32) predicate.ComputeImage

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int32) predicate.ComputeImage

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int32) predicate.ComputeImage

IDNotIn applies the NotIn predicate on the ID field.

func Image

func Image(v string) predicate.ComputeImage

Image applies equality check predicate on the "image" field. It's identical to ImageEQ.

func ImageContains

func ImageContains(v string) predicate.ComputeImage

ImageContains applies the Contains predicate on the "image" field.

func ImageContainsFold

func ImageContainsFold(v string) predicate.ComputeImage

ImageContainsFold applies the ContainsFold predicate on the "image" field.

func ImageEQ

func ImageEQ(v string) predicate.ComputeImage

ImageEQ applies the EQ predicate on the "image" field.

func ImageEqualFold

func ImageEqualFold(v string) predicate.ComputeImage

ImageEqualFold applies the EqualFold predicate on the "image" field.

func ImageGT

func ImageGT(v string) predicate.ComputeImage

ImageGT applies the GT predicate on the "image" field.

func ImageGTE

func ImageGTE(v string) predicate.ComputeImage

ImageGTE applies the GTE predicate on the "image" field.

func ImageHasPrefix

func ImageHasPrefix(v string) predicate.ComputeImage

ImageHasPrefix applies the HasPrefix predicate on the "image" field.

func ImageHasSuffix

func ImageHasSuffix(v string) predicate.ComputeImage

ImageHasSuffix applies the HasSuffix predicate on the "image" field.

func ImageIn

func ImageIn(vs ...string) predicate.ComputeImage

ImageIn applies the In predicate on the "image" field.

func ImageLT

func ImageLT(v string) predicate.ComputeImage

ImageLT applies the LT predicate on the "image" field.

func ImageLTE

func ImageLTE(v string) predicate.ComputeImage

ImageLTE applies the LTE predicate on the "image" field.

func ImageNEQ

func ImageNEQ(v string) predicate.ComputeImage

ImageNEQ applies the NEQ predicate on the "image" field.

func ImageNotIn

func ImageNotIn(vs ...string) predicate.ComputeImage

ImageNotIn applies the NotIn predicate on the "image" field.

func Md5

Md5 applies equality check predicate on the "md5" field. It's identical to Md5EQ.

func Md5Contains

func Md5Contains(v string) predicate.ComputeImage

Md5Contains applies the Contains predicate on the "md5" field.

func Md5ContainsFold

func Md5ContainsFold(v string) predicate.ComputeImage

Md5ContainsFold applies the ContainsFold predicate on the "md5" field.

func Md5EQ

func Md5EQ(v string) predicate.ComputeImage

Md5EQ applies the EQ predicate on the "md5" field.

func Md5EqualFold

func Md5EqualFold(v string) predicate.ComputeImage

Md5EqualFold applies the EqualFold predicate on the "md5" field.

func Md5GT

func Md5GT(v string) predicate.ComputeImage

Md5GT applies the GT predicate on the "md5" field.

func Md5GTE

func Md5GTE(v string) predicate.ComputeImage

Md5GTE applies the GTE predicate on the "md5" field.

func Md5HasPrefix

func Md5HasPrefix(v string) predicate.ComputeImage

Md5HasPrefix applies the HasPrefix predicate on the "md5" field.

func Md5HasSuffix

func Md5HasSuffix(v string) predicate.ComputeImage

Md5HasSuffix applies the HasSuffix predicate on the "md5" field.

func Md5In

func Md5In(vs ...string) predicate.ComputeImage

Md5In applies the In predicate on the "md5" field.

func Md5LT

func Md5LT(v string) predicate.ComputeImage

Md5LT applies the LT predicate on the "md5" field.

func Md5LTE

func Md5LTE(v string) predicate.ComputeImage

Md5LTE applies the LTE predicate on the "md5" field.

func Md5NEQ

func Md5NEQ(v string) predicate.ComputeImage

Md5NEQ applies the NEQ predicate on the "md5" field.

func Md5NotIn

func Md5NotIn(vs ...string) predicate.ComputeImage

Md5NotIn applies the NotIn predicate on the "md5" field.

func Name

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.ComputeImage

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

func NameContainsFold

func NameContainsFold(v string) predicate.ComputeImage

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

func NameEQ

func NameEQ(v string) predicate.ComputeImage

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

func NameEqualFold

func NameEqualFold(v string) predicate.ComputeImage

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

func NameGT

func NameGT(v string) predicate.ComputeImage

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

func NameGTE

func NameGTE(v string) predicate.ComputeImage

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.ComputeImage

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.ComputeImage

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.ComputeImage

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

func NameLTE

func NameLTE(v string) predicate.ComputeImage

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

func NameNEQ

func NameNEQ(v string) predicate.ComputeImage

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

func NameNotIn

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

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

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.ComputeImage) predicate.ComputeImage

Or groups predicates with the OR operator between them.

func OsType

func OsType(v string) predicate.ComputeImage

OsType applies equality check predicate on the "os_type" field. It's identical to OsTypeEQ.

func OsTypeContains

func OsTypeContains(v string) predicate.ComputeImage

OsTypeContains applies the Contains predicate on the "os_type" field.

func OsTypeContainsFold

func OsTypeContainsFold(v string) predicate.ComputeImage

OsTypeContainsFold applies the ContainsFold predicate on the "os_type" field.

func OsTypeEQ

func OsTypeEQ(v string) predicate.ComputeImage

OsTypeEQ applies the EQ predicate on the "os_type" field.

func OsTypeEqualFold

func OsTypeEqualFold(v string) predicate.ComputeImage

OsTypeEqualFold applies the EqualFold predicate on the "os_type" field.

func OsTypeGT

func OsTypeGT(v string) predicate.ComputeImage

OsTypeGT applies the GT predicate on the "os_type" field.

func OsTypeGTE

func OsTypeGTE(v string) predicate.ComputeImage

OsTypeGTE applies the GTE predicate on the "os_type" field.

func OsTypeHasPrefix

func OsTypeHasPrefix(v string) predicate.ComputeImage

OsTypeHasPrefix applies the HasPrefix predicate on the "os_type" field.

func OsTypeHasSuffix

func OsTypeHasSuffix(v string) predicate.ComputeImage

OsTypeHasSuffix applies the HasSuffix predicate on the "os_type" field.

func OsTypeIn

func OsTypeIn(vs ...string) predicate.ComputeImage

OsTypeIn applies the In predicate on the "os_type" field.

func OsTypeLT

func OsTypeLT(v string) predicate.ComputeImage

OsTypeLT applies the LT predicate on the "os_type" field.

func OsTypeLTE

func OsTypeLTE(v string) predicate.ComputeImage

OsTypeLTE applies the LTE predicate on the "os_type" field.

func OsTypeNEQ

func OsTypeNEQ(v string) predicate.ComputeImage

OsTypeNEQ applies the NEQ predicate on the "os_type" field.

func OsTypeNotIn

func OsTypeNotIn(vs ...string) predicate.ComputeImage

OsTypeNotIn applies the NotIn predicate on the "os_type" field.

func OsVariant

func OsVariant(v string) predicate.ComputeImage

OsVariant applies equality check predicate on the "os_variant" field. It's identical to OsVariantEQ.

func OsVariantContains

func OsVariantContains(v string) predicate.ComputeImage

OsVariantContains applies the Contains predicate on the "os_variant" field.

func OsVariantContainsFold

func OsVariantContainsFold(v string) predicate.ComputeImage

OsVariantContainsFold applies the ContainsFold predicate on the "os_variant" field.

func OsVariantEQ

func OsVariantEQ(v string) predicate.ComputeImage

OsVariantEQ applies the EQ predicate on the "os_variant" field.

func OsVariantEqualFold

func OsVariantEqualFold(v string) predicate.ComputeImage

OsVariantEqualFold applies the EqualFold predicate on the "os_variant" field.

func OsVariantGT

func OsVariantGT(v string) predicate.ComputeImage

OsVariantGT applies the GT predicate on the "os_variant" field.

func OsVariantGTE

func OsVariantGTE(v string) predicate.ComputeImage

OsVariantGTE applies the GTE predicate on the "os_variant" field.

func OsVariantHasPrefix

func OsVariantHasPrefix(v string) predicate.ComputeImage

OsVariantHasPrefix applies the HasPrefix predicate on the "os_variant" field.

func OsVariantHasSuffix

func OsVariantHasSuffix(v string) predicate.ComputeImage

OsVariantHasSuffix applies the HasSuffix predicate on the "os_variant" field.

func OsVariantIn

func OsVariantIn(vs ...string) predicate.ComputeImage

OsVariantIn applies the In predicate on the "os_variant" field.

func OsVariantLT

func OsVariantLT(v string) predicate.ComputeImage

OsVariantLT applies the LT predicate on the "os_variant" field.

func OsVariantLTE

func OsVariantLTE(v string) predicate.ComputeImage

OsVariantLTE applies the LTE predicate on the "os_variant" field.

func OsVariantNEQ

func OsVariantNEQ(v string) predicate.ComputeImage

OsVariantNEQ applies the NEQ predicate on the "os_variant" field.

func OsVariantNotIn

func OsVariantNotIn(vs ...string) predicate.ComputeImage

OsVariantNotIn applies the NotIn predicate on the "os_variant" field.

func Sort

func Sort(v uint) predicate.ComputeImage

Sort applies equality check predicate on the "sort" field. It's identical to SortEQ.

func SortEQ

func SortEQ(v uint) predicate.ComputeImage

SortEQ applies the EQ predicate on the "sort" field.

func SortGT

func SortGT(v uint) predicate.ComputeImage

SortGT applies the GT predicate on the "sort" field.

func SortGTE

func SortGTE(v uint) predicate.ComputeImage

SortGTE applies the GTE predicate on the "sort" field.

func SortIn

func SortIn(vs ...uint) predicate.ComputeImage

SortIn applies the In predicate on the "sort" field.

func SortLT

func SortLT(v uint) predicate.ComputeImage

SortLT applies the LT predicate on the "sort" field.

func SortLTE

func SortLTE(v uint) predicate.ComputeImage

SortLTE applies the LTE predicate on the "sort" field.

func SortNEQ

func SortNEQ(v uint) predicate.ComputeImage

SortNEQ applies the NEQ predicate on the "sort" field.

func SortNotIn

func SortNotIn(vs ...uint) predicate.ComputeImage

SortNotIn applies the NotIn predicate on the "sort" field.

func Tag

Tag applies equality check predicate on the "tag" field. It's identical to TagEQ.

func TagContains

func TagContains(v string) predicate.ComputeImage

TagContains applies the Contains predicate on the "tag" field.

func TagContainsFold

func TagContainsFold(v string) predicate.ComputeImage

TagContainsFold applies the ContainsFold predicate on the "tag" field.

func TagEQ

func TagEQ(v string) predicate.ComputeImage

TagEQ applies the EQ predicate on the "tag" field.

func TagEqualFold

func TagEqualFold(v string) predicate.ComputeImage

TagEqualFold applies the EqualFold predicate on the "tag" field.

func TagGT

func TagGT(v string) predicate.ComputeImage

TagGT applies the GT predicate on the "tag" field.

func TagGTE

func TagGTE(v string) predicate.ComputeImage

TagGTE applies the GTE predicate on the "tag" field.

func TagHasPrefix

func TagHasPrefix(v string) predicate.ComputeImage

TagHasPrefix applies the HasPrefix predicate on the "tag" field.

func TagHasSuffix

func TagHasSuffix(v string) predicate.ComputeImage

TagHasSuffix applies the HasSuffix predicate on the "tag" field.

func TagIn

func TagIn(vs ...string) predicate.ComputeImage

TagIn applies the In predicate on the "tag" field.

func TagLT

func TagLT(v string) predicate.ComputeImage

TagLT applies the LT predicate on the "tag" field.

func TagLTE

func TagLTE(v string) predicate.ComputeImage

TagLTE applies the LTE predicate on the "tag" field.

func TagNEQ

func TagNEQ(v string) predicate.ComputeImage

TagNEQ applies the NEQ predicate on the "tag" field.

func TagNotIn

func TagNotIn(vs ...string) predicate.ComputeImage

TagNotIn applies the NotIn predicate on the "tag" 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 ComputeImage queries.

func ByArch

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

ByArch orders the results by the arch field.

func ByBootType added in v0.0.12

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

ByBootType orders the results by the boot_type field.

func ByDownloadURL

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

ByDownloadURL orders the results by the download_url field.

func ByFilename

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

ByFilename orders the results by the filename field.

func ByID

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

ByID orders the results by the id field.

func ByImage

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

ByImage orders the results by the image field.

func ByMd5

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

ByMd5 orders the results by the md5 field.

func ByName

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

ByName orders the results by the name field.

func ByOsType

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

ByOsType orders the results by the os_type field.

func ByOsVariant

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

ByOsVariant orders the results by the os_variant field.

func BySort

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

BySort orders the results by the sort field.

func ByTag

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

ByTag orders the results by the tag field.

Jump to

Keyboard shortcuts

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