instancemetadata

package
v0.0.0-...-02ad720 Latest Latest
Warning

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

Go to latest
Published: Sep 2, 2024 License: AGPL-3.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the instancemetadata type in the database.
	Label = "instance_metadata"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldIsRemote holds the string denoting the isremote field in the database.
	FieldIsRemote = "is_remote"
	// FieldURI holds the string denoting the uri field in the database.
	FieldURI = "uri"
	// FieldExtensions holds the string denoting the extensions field in the database.
	FieldExtensions = "extensions"
	// 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"
	// 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"
	// FieldHost holds the string denoting the host field in the database.
	FieldHost = "host"
	// FieldPublicKey holds the string denoting the publickey field in the database.
	FieldPublicKey = "public_key"
	// FieldPublicKeyAlgorithm holds the string denoting the publickeyalgorithm field in the database.
	FieldPublicKeyAlgorithm = "public_key_algorithm"
	// FieldPrivateKey holds the string denoting the privatekey field in the database.
	FieldPrivateKey = "private_key"
	// FieldSoftwareName holds the string denoting the softwarename field in the database.
	FieldSoftwareName = "software_name"
	// FieldSoftwareVersion holds the string denoting the softwareversion field in the database.
	FieldSoftwareVersion = "software_version"
	// FieldSharedInboxURI holds the string denoting the sharedinboxuri field in the database.
	FieldSharedInboxURI = "shared_inbox_uri"
	// FieldModeratorsURI holds the string denoting the moderatorsuri field in the database.
	FieldModeratorsURI = "moderators_uri"
	// FieldAdminsURI holds the string denoting the adminsuri field in the database.
	FieldAdminsURI = "admins_uri"
	// FieldLogoEndpoint holds the string denoting the logoendpoint field in the database.
	FieldLogoEndpoint = "logo_endpoint"
	// FieldLogoMimeType holds the string denoting the logomimetype field in the database.
	FieldLogoMimeType = "logo_mime_type"
	// FieldBannerEndpoint holds the string denoting the bannerendpoint field in the database.
	FieldBannerEndpoint = "banner_endpoint"
	// FieldBannerMimeType holds the string denoting the bannermimetype field in the database.
	FieldBannerMimeType = "banner_mime_type"
	// FieldSupportedVersions holds the string denoting the supportedversions field in the database.
	FieldSupportedVersions = "supported_versions"
	// FieldSupportedExtensions holds the string denoting the supportedextensions field in the database.
	FieldSupportedExtensions = "supported_extensions"
	// EdgeUsers holds the string denoting the users edge name in mutations.
	EdgeUsers = "users"
	// EdgeModerators holds the string denoting the moderators edge name in mutations.
	EdgeModerators = "moderators"
	// EdgeAdmins holds the string denoting the admins edge name in mutations.
	EdgeAdmins = "admins"
	// Table holds the table name of the instancemetadata in the database.
	Table = "instance_metadata"
	// UsersTable is the table that holds the users relation/edge. The primary key declared below.
	UsersTable = "instance_metadata_users"
	// UsersInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	UsersInverseTable = "users"
	// ModeratorsTable is the table that holds the moderators relation/edge. The primary key declared below.
	ModeratorsTable = "instance_metadata_moderators"
	// ModeratorsInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	ModeratorsInverseTable = "users"
	// AdminsTable is the table that holds the admins relation/edge. The primary key declared below.
	AdminsTable = "instance_metadata_admins"
	// AdminsInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	AdminsInverseTable = "users"
)

Variables

View Source
var (
	// UsersPrimaryKey and UsersColumn2 are the table columns denoting the
	// primary key for the users relation (M2M).
	UsersPrimaryKey = []string{"instance_metadata_id", "user_id"}
	// ModeratorsPrimaryKey and ModeratorsColumn2 are the table columns denoting the
	// primary key for the moderators relation (M2M).
	ModeratorsPrimaryKey = []string{"instance_metadata_id", "user_id"}
	// AdminsPrimaryKey and AdminsColumn2 are the table columns denoting the
	// primary key for the admins relation (M2M).
	AdminsPrimaryKey = []string{"instance_metadata_id", "user_id"}
)
View Source
var (
	// URIValidator is a validator for the "uri" field. It is called by the builders before save.
	URIValidator func(string) error
	// DefaultExtensions holds the default value on creation for the "extensions" field.
	DefaultExtensions versia.Extensions
	// 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
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// HostValidator is a validator for the "host" field. It is called by the builders before save.
	HostValidator func(string) error
	// SoftwareNameValidator is a validator for the "softwareName" field. It is called by the builders before save.
	SoftwareNameValidator func(string) error
	// SoftwareVersionValidator is a validator for the "softwareVersion" field. It is called by the builders before save.
	SoftwareVersionValidator func(string) error
	// SharedInboxURIValidator is a validator for the "sharedInboxURI" field. It is called by the builders before save.
	SharedInboxURIValidator func(string) error
	// ModeratorsURIValidator is a validator for the "moderatorsURI" field. It is called by the builders before save.
	ModeratorsURIValidator func(string) error
	// AdminsURIValidator is a validator for the "adminsURI" field. It is called by the builders before save.
	AdminsURIValidator func(string) error
	// LogoEndpointValidator is a validator for the "logoEndpoint" field. It is called by the builders before save.
	LogoEndpointValidator func(string) error
	// LogoMimeTypeValidator is a validator for the "logoMimeType" field. It is called by the builders before save.
	LogoMimeTypeValidator func(string) error
	// BannerEndpointValidator is a validator for the "bannerEndpoint" field. It is called by the builders before save.
	BannerEndpointValidator func(string) error
	// BannerMimeTypeValidator is a validator for the "bannerMimeType" field. It is called by the builders before save.
	BannerMimeTypeValidator func(string) error
	// DefaultSupportedVersions holds the default value on creation for the "supportedVersions" field.
	DefaultSupportedVersions []string
	// DefaultSupportedExtensions holds the default value on creation for the "supportedExtensions" field.
	DefaultSupportedExtensions []string
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for instancemetadata fields.

Functions

func AdminsURI

func AdminsURI(v string) predicate.InstanceMetadata

AdminsURI applies equality check predicate on the "adminsURI" field. It's identical to AdminsURIEQ.

func AdminsURIContains

func AdminsURIContains(v string) predicate.InstanceMetadata

AdminsURIContains applies the Contains predicate on the "adminsURI" field.

func AdminsURIContainsFold

func AdminsURIContainsFold(v string) predicate.InstanceMetadata

AdminsURIContainsFold applies the ContainsFold predicate on the "adminsURI" field.

func AdminsURIEQ

func AdminsURIEQ(v string) predicate.InstanceMetadata

AdminsURIEQ applies the EQ predicate on the "adminsURI" field.

func AdminsURIEqualFold

func AdminsURIEqualFold(v string) predicate.InstanceMetadata

AdminsURIEqualFold applies the EqualFold predicate on the "adminsURI" field.

func AdminsURIGT

func AdminsURIGT(v string) predicate.InstanceMetadata

AdminsURIGT applies the GT predicate on the "adminsURI" field.

func AdminsURIGTE

func AdminsURIGTE(v string) predicate.InstanceMetadata

AdminsURIGTE applies the GTE predicate on the "adminsURI" field.

func AdminsURIHasPrefix

func AdminsURIHasPrefix(v string) predicate.InstanceMetadata

AdminsURIHasPrefix applies the HasPrefix predicate on the "adminsURI" field.

func AdminsURIHasSuffix

func AdminsURIHasSuffix(v string) predicate.InstanceMetadata

AdminsURIHasSuffix applies the HasSuffix predicate on the "adminsURI" field.

func AdminsURIIn

func AdminsURIIn(vs ...string) predicate.InstanceMetadata

AdminsURIIn applies the In predicate on the "adminsURI" field.

func AdminsURIIsNil

func AdminsURIIsNil() predicate.InstanceMetadata

AdminsURIIsNil applies the IsNil predicate on the "adminsURI" field.

func AdminsURILT

func AdminsURILT(v string) predicate.InstanceMetadata

AdminsURILT applies the LT predicate on the "adminsURI" field.

func AdminsURILTE

func AdminsURILTE(v string) predicate.InstanceMetadata

AdminsURILTE applies the LTE predicate on the "adminsURI" field.

func AdminsURINEQ

func AdminsURINEQ(v string) predicate.InstanceMetadata

AdminsURINEQ applies the NEQ predicate on the "adminsURI" field.

func AdminsURINotIn

func AdminsURINotIn(vs ...string) predicate.InstanceMetadata

AdminsURINotIn applies the NotIn predicate on the "adminsURI" field.

func AdminsURINotNil

func AdminsURINotNil() predicate.InstanceMetadata

AdminsURINotNil applies the NotNil predicate on the "adminsURI" field.

func And

And groups predicates with the AND operator between them.

func BannerEndpoint

func BannerEndpoint(v string) predicate.InstanceMetadata

BannerEndpoint applies equality check predicate on the "bannerEndpoint" field. It's identical to BannerEndpointEQ.

func BannerEndpointContains

func BannerEndpointContains(v string) predicate.InstanceMetadata

BannerEndpointContains applies the Contains predicate on the "bannerEndpoint" field.

func BannerEndpointContainsFold

func BannerEndpointContainsFold(v string) predicate.InstanceMetadata

BannerEndpointContainsFold applies the ContainsFold predicate on the "bannerEndpoint" field.

func BannerEndpointEQ

func BannerEndpointEQ(v string) predicate.InstanceMetadata

BannerEndpointEQ applies the EQ predicate on the "bannerEndpoint" field.

func BannerEndpointEqualFold

func BannerEndpointEqualFold(v string) predicate.InstanceMetadata

BannerEndpointEqualFold applies the EqualFold predicate on the "bannerEndpoint" field.

func BannerEndpointGT

func BannerEndpointGT(v string) predicate.InstanceMetadata

BannerEndpointGT applies the GT predicate on the "bannerEndpoint" field.

func BannerEndpointGTE

func BannerEndpointGTE(v string) predicate.InstanceMetadata

BannerEndpointGTE applies the GTE predicate on the "bannerEndpoint" field.

func BannerEndpointHasPrefix

func BannerEndpointHasPrefix(v string) predicate.InstanceMetadata

BannerEndpointHasPrefix applies the HasPrefix predicate on the "bannerEndpoint" field.

func BannerEndpointHasSuffix

func BannerEndpointHasSuffix(v string) predicate.InstanceMetadata

BannerEndpointHasSuffix applies the HasSuffix predicate on the "bannerEndpoint" field.

func BannerEndpointIn

func BannerEndpointIn(vs ...string) predicate.InstanceMetadata

BannerEndpointIn applies the In predicate on the "bannerEndpoint" field.

func BannerEndpointIsNil

func BannerEndpointIsNil() predicate.InstanceMetadata

BannerEndpointIsNil applies the IsNil predicate on the "bannerEndpoint" field.

func BannerEndpointLT

func BannerEndpointLT(v string) predicate.InstanceMetadata

BannerEndpointLT applies the LT predicate on the "bannerEndpoint" field.

func BannerEndpointLTE

func BannerEndpointLTE(v string) predicate.InstanceMetadata

BannerEndpointLTE applies the LTE predicate on the "bannerEndpoint" field.

func BannerEndpointNEQ

func BannerEndpointNEQ(v string) predicate.InstanceMetadata

BannerEndpointNEQ applies the NEQ predicate on the "bannerEndpoint" field.

func BannerEndpointNotIn

func BannerEndpointNotIn(vs ...string) predicate.InstanceMetadata

BannerEndpointNotIn applies the NotIn predicate on the "bannerEndpoint" field.

func BannerEndpointNotNil

func BannerEndpointNotNil() predicate.InstanceMetadata

BannerEndpointNotNil applies the NotNil predicate on the "bannerEndpoint" field.

func BannerMimeType

func BannerMimeType(v string) predicate.InstanceMetadata

BannerMimeType applies equality check predicate on the "bannerMimeType" field. It's identical to BannerMimeTypeEQ.

func BannerMimeTypeContains

func BannerMimeTypeContains(v string) predicate.InstanceMetadata

BannerMimeTypeContains applies the Contains predicate on the "bannerMimeType" field.

func BannerMimeTypeContainsFold

func BannerMimeTypeContainsFold(v string) predicate.InstanceMetadata

BannerMimeTypeContainsFold applies the ContainsFold predicate on the "bannerMimeType" field.

func BannerMimeTypeEQ

func BannerMimeTypeEQ(v string) predicate.InstanceMetadata

BannerMimeTypeEQ applies the EQ predicate on the "bannerMimeType" field.

func BannerMimeTypeEqualFold

func BannerMimeTypeEqualFold(v string) predicate.InstanceMetadata

BannerMimeTypeEqualFold applies the EqualFold predicate on the "bannerMimeType" field.

func BannerMimeTypeGT

func BannerMimeTypeGT(v string) predicate.InstanceMetadata

BannerMimeTypeGT applies the GT predicate on the "bannerMimeType" field.

func BannerMimeTypeGTE

func BannerMimeTypeGTE(v string) predicate.InstanceMetadata

BannerMimeTypeGTE applies the GTE predicate on the "bannerMimeType" field.

func BannerMimeTypeHasPrefix

func BannerMimeTypeHasPrefix(v string) predicate.InstanceMetadata

BannerMimeTypeHasPrefix applies the HasPrefix predicate on the "bannerMimeType" field.

func BannerMimeTypeHasSuffix

func BannerMimeTypeHasSuffix(v string) predicate.InstanceMetadata

BannerMimeTypeHasSuffix applies the HasSuffix predicate on the "bannerMimeType" field.

func BannerMimeTypeIn

func BannerMimeTypeIn(vs ...string) predicate.InstanceMetadata

BannerMimeTypeIn applies the In predicate on the "bannerMimeType" field.

func BannerMimeTypeIsNil

func BannerMimeTypeIsNil() predicate.InstanceMetadata

BannerMimeTypeIsNil applies the IsNil predicate on the "bannerMimeType" field.

func BannerMimeTypeLT

func BannerMimeTypeLT(v string) predicate.InstanceMetadata

BannerMimeTypeLT applies the LT predicate on the "bannerMimeType" field.

func BannerMimeTypeLTE

func BannerMimeTypeLTE(v string) predicate.InstanceMetadata

BannerMimeTypeLTE applies the LTE predicate on the "bannerMimeType" field.

func BannerMimeTypeNEQ

func BannerMimeTypeNEQ(v string) predicate.InstanceMetadata

BannerMimeTypeNEQ applies the NEQ predicate on the "bannerMimeType" field.

func BannerMimeTypeNotIn

func BannerMimeTypeNotIn(vs ...string) predicate.InstanceMetadata

BannerMimeTypeNotIn applies the NotIn predicate on the "bannerMimeType" field.

func BannerMimeTypeNotNil

func BannerMimeTypeNotNil() predicate.InstanceMetadata

BannerMimeTypeNotNil applies the NotNil predicate on the "bannerMimeType" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.InstanceMetadata

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.InstanceMetadata

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.InstanceMetadata

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.InstanceMetadata

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.InstanceMetadata

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.InstanceMetadata

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.InstanceMetadata

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

func CreatedAtNotIn

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

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

func Description

func Description(v string) predicate.InstanceMetadata

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

func DescriptionContains

func DescriptionContains(v string) predicate.InstanceMetadata

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

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.InstanceMetadata

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

func DescriptionEQ

func DescriptionEQ(v string) predicate.InstanceMetadata

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

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.InstanceMetadata

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

func DescriptionGT

func DescriptionGT(v string) predicate.InstanceMetadata

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

func DescriptionGTE

func DescriptionGTE(v string) predicate.InstanceMetadata

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

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.InstanceMetadata

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

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.InstanceMetadata

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

func DescriptionIn

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

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

func DescriptionIsNil

func DescriptionIsNil() predicate.InstanceMetadata

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

func DescriptionLT

func DescriptionLT(v string) predicate.InstanceMetadata

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

func DescriptionLTE

func DescriptionLTE(v string) predicate.InstanceMetadata

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

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.InstanceMetadata

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

func DescriptionNotIn

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

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

func DescriptionNotNil

func DescriptionNotNil() predicate.InstanceMetadata

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

func HasAdmins

func HasAdmins() predicate.InstanceMetadata

HasAdmins applies the HasEdge predicate on the "admins" edge.

func HasAdminsWith

func HasAdminsWith(preds ...predicate.User) predicate.InstanceMetadata

HasAdminsWith applies the HasEdge predicate on the "admins" edge with a given conditions (other predicates).

func HasModerators

func HasModerators() predicate.InstanceMetadata

HasModerators applies the HasEdge predicate on the "moderators" edge.

func HasModeratorsWith

func HasModeratorsWith(preds ...predicate.User) predicate.InstanceMetadata

HasModeratorsWith applies the HasEdge predicate on the "moderators" edge with a given conditions (other predicates).

func HasUsers

func HasUsers() predicate.InstanceMetadata

HasUsers applies the HasEdge predicate on the "users" edge.

func HasUsersWith

func HasUsersWith(preds ...predicate.User) predicate.InstanceMetadata

HasUsersWith applies the HasEdge predicate on the "users" edge with a given conditions (other predicates).

func Host

Host applies equality check predicate on the "host" field. It's identical to HostEQ.

func HostContains

func HostContains(v string) predicate.InstanceMetadata

HostContains applies the Contains predicate on the "host" field.

func HostContainsFold

func HostContainsFold(v string) predicate.InstanceMetadata

HostContainsFold applies the ContainsFold predicate on the "host" field.

func HostEQ

HostEQ applies the EQ predicate on the "host" field.

func HostEqualFold

func HostEqualFold(v string) predicate.InstanceMetadata

HostEqualFold applies the EqualFold predicate on the "host" field.

func HostGT

HostGT applies the GT predicate on the "host" field.

func HostGTE

HostGTE applies the GTE predicate on the "host" field.

func HostHasPrefix

func HostHasPrefix(v string) predicate.InstanceMetadata

HostHasPrefix applies the HasPrefix predicate on the "host" field.

func HostHasSuffix

func HostHasSuffix(v string) predicate.InstanceMetadata

HostHasSuffix applies the HasSuffix predicate on the "host" field.

func HostIn

func HostIn(vs ...string) predicate.InstanceMetadata

HostIn applies the In predicate on the "host" field.

func HostLT

HostLT applies the LT predicate on the "host" field.

func HostLTE

HostLTE applies the LTE predicate on the "host" field.

func HostNEQ

HostNEQ applies the NEQ predicate on the "host" field.

func HostNotIn

func HostNotIn(vs ...string) predicate.InstanceMetadata

HostNotIn applies the NotIn predicate on the "host" field.

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func IsRemote

func IsRemote(v bool) predicate.InstanceMetadata

IsRemote applies equality check predicate on the "isRemote" field. It's identical to IsRemoteEQ.

func IsRemoteEQ

func IsRemoteEQ(v bool) predicate.InstanceMetadata

IsRemoteEQ applies the EQ predicate on the "isRemote" field.

func IsRemoteNEQ

func IsRemoteNEQ(v bool) predicate.InstanceMetadata

IsRemoteNEQ applies the NEQ predicate on the "isRemote" field.

func LogoEndpoint

func LogoEndpoint(v string) predicate.InstanceMetadata

LogoEndpoint applies equality check predicate on the "logoEndpoint" field. It's identical to LogoEndpointEQ.

func LogoEndpointContains

func LogoEndpointContains(v string) predicate.InstanceMetadata

LogoEndpointContains applies the Contains predicate on the "logoEndpoint" field.

func LogoEndpointContainsFold

func LogoEndpointContainsFold(v string) predicate.InstanceMetadata

LogoEndpointContainsFold applies the ContainsFold predicate on the "logoEndpoint" field.

func LogoEndpointEQ

func LogoEndpointEQ(v string) predicate.InstanceMetadata

LogoEndpointEQ applies the EQ predicate on the "logoEndpoint" field.

func LogoEndpointEqualFold

func LogoEndpointEqualFold(v string) predicate.InstanceMetadata

LogoEndpointEqualFold applies the EqualFold predicate on the "logoEndpoint" field.

func LogoEndpointGT

func LogoEndpointGT(v string) predicate.InstanceMetadata

LogoEndpointGT applies the GT predicate on the "logoEndpoint" field.

func LogoEndpointGTE

func LogoEndpointGTE(v string) predicate.InstanceMetadata

LogoEndpointGTE applies the GTE predicate on the "logoEndpoint" field.

func LogoEndpointHasPrefix

func LogoEndpointHasPrefix(v string) predicate.InstanceMetadata

LogoEndpointHasPrefix applies the HasPrefix predicate on the "logoEndpoint" field.

func LogoEndpointHasSuffix

func LogoEndpointHasSuffix(v string) predicate.InstanceMetadata

LogoEndpointHasSuffix applies the HasSuffix predicate on the "logoEndpoint" field.

func LogoEndpointIn

func LogoEndpointIn(vs ...string) predicate.InstanceMetadata

LogoEndpointIn applies the In predicate on the "logoEndpoint" field.

func LogoEndpointIsNil

func LogoEndpointIsNil() predicate.InstanceMetadata

LogoEndpointIsNil applies the IsNil predicate on the "logoEndpoint" field.

func LogoEndpointLT

func LogoEndpointLT(v string) predicate.InstanceMetadata

LogoEndpointLT applies the LT predicate on the "logoEndpoint" field.

func LogoEndpointLTE

func LogoEndpointLTE(v string) predicate.InstanceMetadata

LogoEndpointLTE applies the LTE predicate on the "logoEndpoint" field.

func LogoEndpointNEQ

func LogoEndpointNEQ(v string) predicate.InstanceMetadata

LogoEndpointNEQ applies the NEQ predicate on the "logoEndpoint" field.

func LogoEndpointNotIn

func LogoEndpointNotIn(vs ...string) predicate.InstanceMetadata

LogoEndpointNotIn applies the NotIn predicate on the "logoEndpoint" field.

func LogoEndpointNotNil

func LogoEndpointNotNil() predicate.InstanceMetadata

LogoEndpointNotNil applies the NotNil predicate on the "logoEndpoint" field.

func LogoMimeType

func LogoMimeType(v string) predicate.InstanceMetadata

LogoMimeType applies equality check predicate on the "logoMimeType" field. It's identical to LogoMimeTypeEQ.

func LogoMimeTypeContains

func LogoMimeTypeContains(v string) predicate.InstanceMetadata

LogoMimeTypeContains applies the Contains predicate on the "logoMimeType" field.

func LogoMimeTypeContainsFold

func LogoMimeTypeContainsFold(v string) predicate.InstanceMetadata

LogoMimeTypeContainsFold applies the ContainsFold predicate on the "logoMimeType" field.

func LogoMimeTypeEQ

func LogoMimeTypeEQ(v string) predicate.InstanceMetadata

LogoMimeTypeEQ applies the EQ predicate on the "logoMimeType" field.

func LogoMimeTypeEqualFold

func LogoMimeTypeEqualFold(v string) predicate.InstanceMetadata

LogoMimeTypeEqualFold applies the EqualFold predicate on the "logoMimeType" field.

func LogoMimeTypeGT

func LogoMimeTypeGT(v string) predicate.InstanceMetadata

LogoMimeTypeGT applies the GT predicate on the "logoMimeType" field.

func LogoMimeTypeGTE

func LogoMimeTypeGTE(v string) predicate.InstanceMetadata

LogoMimeTypeGTE applies the GTE predicate on the "logoMimeType" field.

func LogoMimeTypeHasPrefix

func LogoMimeTypeHasPrefix(v string) predicate.InstanceMetadata

LogoMimeTypeHasPrefix applies the HasPrefix predicate on the "logoMimeType" field.

func LogoMimeTypeHasSuffix

func LogoMimeTypeHasSuffix(v string) predicate.InstanceMetadata

LogoMimeTypeHasSuffix applies the HasSuffix predicate on the "logoMimeType" field.

func LogoMimeTypeIn

func LogoMimeTypeIn(vs ...string) predicate.InstanceMetadata

LogoMimeTypeIn applies the In predicate on the "logoMimeType" field.

func LogoMimeTypeIsNil

func LogoMimeTypeIsNil() predicate.InstanceMetadata

LogoMimeTypeIsNil applies the IsNil predicate on the "logoMimeType" field.

func LogoMimeTypeLT

func LogoMimeTypeLT(v string) predicate.InstanceMetadata

LogoMimeTypeLT applies the LT predicate on the "logoMimeType" field.

func LogoMimeTypeLTE

func LogoMimeTypeLTE(v string) predicate.InstanceMetadata

LogoMimeTypeLTE applies the LTE predicate on the "logoMimeType" field.

func LogoMimeTypeNEQ

func LogoMimeTypeNEQ(v string) predicate.InstanceMetadata

LogoMimeTypeNEQ applies the NEQ predicate on the "logoMimeType" field.

func LogoMimeTypeNotIn

func LogoMimeTypeNotIn(vs ...string) predicate.InstanceMetadata

LogoMimeTypeNotIn applies the NotIn predicate on the "logoMimeType" field.

func LogoMimeTypeNotNil

func LogoMimeTypeNotNil() predicate.InstanceMetadata

LogoMimeTypeNotNil applies the NotNil predicate on the "logoMimeType" field.

func ModeratorsURI

func ModeratorsURI(v string) predicate.InstanceMetadata

ModeratorsURI applies equality check predicate on the "moderatorsURI" field. It's identical to ModeratorsURIEQ.

func ModeratorsURIContains

func ModeratorsURIContains(v string) predicate.InstanceMetadata

ModeratorsURIContains applies the Contains predicate on the "moderatorsURI" field.

func ModeratorsURIContainsFold

func ModeratorsURIContainsFold(v string) predicate.InstanceMetadata

ModeratorsURIContainsFold applies the ContainsFold predicate on the "moderatorsURI" field.

func ModeratorsURIEQ

func ModeratorsURIEQ(v string) predicate.InstanceMetadata

ModeratorsURIEQ applies the EQ predicate on the "moderatorsURI" field.

func ModeratorsURIEqualFold

func ModeratorsURIEqualFold(v string) predicate.InstanceMetadata

ModeratorsURIEqualFold applies the EqualFold predicate on the "moderatorsURI" field.

func ModeratorsURIGT

func ModeratorsURIGT(v string) predicate.InstanceMetadata

ModeratorsURIGT applies the GT predicate on the "moderatorsURI" field.

func ModeratorsURIGTE

func ModeratorsURIGTE(v string) predicate.InstanceMetadata

ModeratorsURIGTE applies the GTE predicate on the "moderatorsURI" field.

func ModeratorsURIHasPrefix

func ModeratorsURIHasPrefix(v string) predicate.InstanceMetadata

ModeratorsURIHasPrefix applies the HasPrefix predicate on the "moderatorsURI" field.

func ModeratorsURIHasSuffix

func ModeratorsURIHasSuffix(v string) predicate.InstanceMetadata

ModeratorsURIHasSuffix applies the HasSuffix predicate on the "moderatorsURI" field.

func ModeratorsURIIn

func ModeratorsURIIn(vs ...string) predicate.InstanceMetadata

ModeratorsURIIn applies the In predicate on the "moderatorsURI" field.

func ModeratorsURIIsNil

func ModeratorsURIIsNil() predicate.InstanceMetadata

ModeratorsURIIsNil applies the IsNil predicate on the "moderatorsURI" field.

func ModeratorsURILT

func ModeratorsURILT(v string) predicate.InstanceMetadata

ModeratorsURILT applies the LT predicate on the "moderatorsURI" field.

func ModeratorsURILTE

func ModeratorsURILTE(v string) predicate.InstanceMetadata

ModeratorsURILTE applies the LTE predicate on the "moderatorsURI" field.

func ModeratorsURINEQ

func ModeratorsURINEQ(v string) predicate.InstanceMetadata

ModeratorsURINEQ applies the NEQ predicate on the "moderatorsURI" field.

func ModeratorsURINotIn

func ModeratorsURINotIn(vs ...string) predicate.InstanceMetadata

ModeratorsURINotIn applies the NotIn predicate on the "moderatorsURI" field.

func ModeratorsURINotNil

func ModeratorsURINotNil() predicate.InstanceMetadata

ModeratorsURINotNil applies the NotNil predicate on the "moderatorsURI" field.

func Name

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

func NameContains

func NameContains(v string) predicate.InstanceMetadata

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

func NameContainsFold

func NameContainsFold(v string) predicate.InstanceMetadata

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

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

func NameGT

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

func NameGTE

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.InstanceMetadata

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.InstanceMetadata

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

func NameIn

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

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

func NameLT

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

func NameLTE

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

func NameNEQ

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

func NameNotIn

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

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

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func PrivateKey

func PrivateKey(v []byte) predicate.InstanceMetadata

PrivateKey applies equality check predicate on the "privateKey" field. It's identical to PrivateKeyEQ.

func PrivateKeyEQ

func PrivateKeyEQ(v []byte) predicate.InstanceMetadata

PrivateKeyEQ applies the EQ predicate on the "privateKey" field.

func PrivateKeyGT

func PrivateKeyGT(v []byte) predicate.InstanceMetadata

PrivateKeyGT applies the GT predicate on the "privateKey" field.

func PrivateKeyGTE

func PrivateKeyGTE(v []byte) predicate.InstanceMetadata

PrivateKeyGTE applies the GTE predicate on the "privateKey" field.

func PrivateKeyIn

func PrivateKeyIn(vs ...[]byte) predicate.InstanceMetadata

PrivateKeyIn applies the In predicate on the "privateKey" field.

func PrivateKeyIsNil

func PrivateKeyIsNil() predicate.InstanceMetadata

PrivateKeyIsNil applies the IsNil predicate on the "privateKey" field.

func PrivateKeyLT

func PrivateKeyLT(v []byte) predicate.InstanceMetadata

PrivateKeyLT applies the LT predicate on the "privateKey" field.

func PrivateKeyLTE

func PrivateKeyLTE(v []byte) predicate.InstanceMetadata

PrivateKeyLTE applies the LTE predicate on the "privateKey" field.

func PrivateKeyNEQ

func PrivateKeyNEQ(v []byte) predicate.InstanceMetadata

PrivateKeyNEQ applies the NEQ predicate on the "privateKey" field.

func PrivateKeyNotIn

func PrivateKeyNotIn(vs ...[]byte) predicate.InstanceMetadata

PrivateKeyNotIn applies the NotIn predicate on the "privateKey" field.

func PrivateKeyNotNil

func PrivateKeyNotNil() predicate.InstanceMetadata

PrivateKeyNotNil applies the NotNil predicate on the "privateKey" field.

func PublicKey

func PublicKey(v []byte) predicate.InstanceMetadata

PublicKey applies equality check predicate on the "publicKey" field. It's identical to PublicKeyEQ.

func PublicKeyAlgorithm

func PublicKeyAlgorithm(v string) predicate.InstanceMetadata

PublicKeyAlgorithm applies equality check predicate on the "publicKeyAlgorithm" field. It's identical to PublicKeyAlgorithmEQ.

func PublicKeyAlgorithmContains

func PublicKeyAlgorithmContains(v string) predicate.InstanceMetadata

PublicKeyAlgorithmContains applies the Contains predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmContainsFold

func PublicKeyAlgorithmContainsFold(v string) predicate.InstanceMetadata

PublicKeyAlgorithmContainsFold applies the ContainsFold predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmEQ

func PublicKeyAlgorithmEQ(v string) predicate.InstanceMetadata

PublicKeyAlgorithmEQ applies the EQ predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmEqualFold

func PublicKeyAlgorithmEqualFold(v string) predicate.InstanceMetadata

PublicKeyAlgorithmEqualFold applies the EqualFold predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmGT

func PublicKeyAlgorithmGT(v string) predicate.InstanceMetadata

PublicKeyAlgorithmGT applies the GT predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmGTE

func PublicKeyAlgorithmGTE(v string) predicate.InstanceMetadata

PublicKeyAlgorithmGTE applies the GTE predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmHasPrefix

func PublicKeyAlgorithmHasPrefix(v string) predicate.InstanceMetadata

PublicKeyAlgorithmHasPrefix applies the HasPrefix predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmHasSuffix

func PublicKeyAlgorithmHasSuffix(v string) predicate.InstanceMetadata

PublicKeyAlgorithmHasSuffix applies the HasSuffix predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmIn

func PublicKeyAlgorithmIn(vs ...string) predicate.InstanceMetadata

PublicKeyAlgorithmIn applies the In predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmLT

func PublicKeyAlgorithmLT(v string) predicate.InstanceMetadata

PublicKeyAlgorithmLT applies the LT predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmLTE

func PublicKeyAlgorithmLTE(v string) predicate.InstanceMetadata

PublicKeyAlgorithmLTE applies the LTE predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmNEQ

func PublicKeyAlgorithmNEQ(v string) predicate.InstanceMetadata

PublicKeyAlgorithmNEQ applies the NEQ predicate on the "publicKeyAlgorithm" field.

func PublicKeyAlgorithmNotIn

func PublicKeyAlgorithmNotIn(vs ...string) predicate.InstanceMetadata

PublicKeyAlgorithmNotIn applies the NotIn predicate on the "publicKeyAlgorithm" field.

func PublicKeyEQ

func PublicKeyEQ(v []byte) predicate.InstanceMetadata

PublicKeyEQ applies the EQ predicate on the "publicKey" field.

func PublicKeyGT

func PublicKeyGT(v []byte) predicate.InstanceMetadata

PublicKeyGT applies the GT predicate on the "publicKey" field.

func PublicKeyGTE

func PublicKeyGTE(v []byte) predicate.InstanceMetadata

PublicKeyGTE applies the GTE predicate on the "publicKey" field.

func PublicKeyIn

func PublicKeyIn(vs ...[]byte) predicate.InstanceMetadata

PublicKeyIn applies the In predicate on the "publicKey" field.

func PublicKeyLT

func PublicKeyLT(v []byte) predicate.InstanceMetadata

PublicKeyLT applies the LT predicate on the "publicKey" field.

func PublicKeyLTE

func PublicKeyLTE(v []byte) predicate.InstanceMetadata

PublicKeyLTE applies the LTE predicate on the "publicKey" field.

func PublicKeyNEQ

func PublicKeyNEQ(v []byte) predicate.InstanceMetadata

PublicKeyNEQ applies the NEQ predicate on the "publicKey" field.

func PublicKeyNotIn

func PublicKeyNotIn(vs ...[]byte) predicate.InstanceMetadata

PublicKeyNotIn applies the NotIn predicate on the "publicKey" field.

func SharedInboxURI

func SharedInboxURI(v string) predicate.InstanceMetadata

SharedInboxURI applies equality check predicate on the "sharedInboxURI" field. It's identical to SharedInboxURIEQ.

func SharedInboxURIContains

func SharedInboxURIContains(v string) predicate.InstanceMetadata

SharedInboxURIContains applies the Contains predicate on the "sharedInboxURI" field.

func SharedInboxURIContainsFold

func SharedInboxURIContainsFold(v string) predicate.InstanceMetadata

SharedInboxURIContainsFold applies the ContainsFold predicate on the "sharedInboxURI" field.

func SharedInboxURIEQ

func SharedInboxURIEQ(v string) predicate.InstanceMetadata

SharedInboxURIEQ applies the EQ predicate on the "sharedInboxURI" field.

func SharedInboxURIEqualFold

func SharedInboxURIEqualFold(v string) predicate.InstanceMetadata

SharedInboxURIEqualFold applies the EqualFold predicate on the "sharedInboxURI" field.

func SharedInboxURIGT

func SharedInboxURIGT(v string) predicate.InstanceMetadata

SharedInboxURIGT applies the GT predicate on the "sharedInboxURI" field.

func SharedInboxURIGTE

func SharedInboxURIGTE(v string) predicate.InstanceMetadata

SharedInboxURIGTE applies the GTE predicate on the "sharedInboxURI" field.

func SharedInboxURIHasPrefix

func SharedInboxURIHasPrefix(v string) predicate.InstanceMetadata

SharedInboxURIHasPrefix applies the HasPrefix predicate on the "sharedInboxURI" field.

func SharedInboxURIHasSuffix

func SharedInboxURIHasSuffix(v string) predicate.InstanceMetadata

SharedInboxURIHasSuffix applies the HasSuffix predicate on the "sharedInboxURI" field.

func SharedInboxURIIn

func SharedInboxURIIn(vs ...string) predicate.InstanceMetadata

SharedInboxURIIn applies the In predicate on the "sharedInboxURI" field.

func SharedInboxURILT

func SharedInboxURILT(v string) predicate.InstanceMetadata

SharedInboxURILT applies the LT predicate on the "sharedInboxURI" field.

func SharedInboxURILTE

func SharedInboxURILTE(v string) predicate.InstanceMetadata

SharedInboxURILTE applies the LTE predicate on the "sharedInboxURI" field.

func SharedInboxURINEQ

func SharedInboxURINEQ(v string) predicate.InstanceMetadata

SharedInboxURINEQ applies the NEQ predicate on the "sharedInboxURI" field.

func SharedInboxURINotIn

func SharedInboxURINotIn(vs ...string) predicate.InstanceMetadata

SharedInboxURINotIn applies the NotIn predicate on the "sharedInboxURI" field.

func SoftwareName

func SoftwareName(v string) predicate.InstanceMetadata

SoftwareName applies equality check predicate on the "softwareName" field. It's identical to SoftwareNameEQ.

func SoftwareNameContains

func SoftwareNameContains(v string) predicate.InstanceMetadata

SoftwareNameContains applies the Contains predicate on the "softwareName" field.

func SoftwareNameContainsFold

func SoftwareNameContainsFold(v string) predicate.InstanceMetadata

SoftwareNameContainsFold applies the ContainsFold predicate on the "softwareName" field.

func SoftwareNameEQ

func SoftwareNameEQ(v string) predicate.InstanceMetadata

SoftwareNameEQ applies the EQ predicate on the "softwareName" field.

func SoftwareNameEqualFold

func SoftwareNameEqualFold(v string) predicate.InstanceMetadata

SoftwareNameEqualFold applies the EqualFold predicate on the "softwareName" field.

func SoftwareNameGT

func SoftwareNameGT(v string) predicate.InstanceMetadata

SoftwareNameGT applies the GT predicate on the "softwareName" field.

func SoftwareNameGTE

func SoftwareNameGTE(v string) predicate.InstanceMetadata

SoftwareNameGTE applies the GTE predicate on the "softwareName" field.

func SoftwareNameHasPrefix

func SoftwareNameHasPrefix(v string) predicate.InstanceMetadata

SoftwareNameHasPrefix applies the HasPrefix predicate on the "softwareName" field.

func SoftwareNameHasSuffix

func SoftwareNameHasSuffix(v string) predicate.InstanceMetadata

SoftwareNameHasSuffix applies the HasSuffix predicate on the "softwareName" field.

func SoftwareNameIn

func SoftwareNameIn(vs ...string) predicate.InstanceMetadata

SoftwareNameIn applies the In predicate on the "softwareName" field.

func SoftwareNameLT

func SoftwareNameLT(v string) predicate.InstanceMetadata

SoftwareNameLT applies the LT predicate on the "softwareName" field.

func SoftwareNameLTE

func SoftwareNameLTE(v string) predicate.InstanceMetadata

SoftwareNameLTE applies the LTE predicate on the "softwareName" field.

func SoftwareNameNEQ

func SoftwareNameNEQ(v string) predicate.InstanceMetadata

SoftwareNameNEQ applies the NEQ predicate on the "softwareName" field.

func SoftwareNameNotIn

func SoftwareNameNotIn(vs ...string) predicate.InstanceMetadata

SoftwareNameNotIn applies the NotIn predicate on the "softwareName" field.

func SoftwareVersion

func SoftwareVersion(v string) predicate.InstanceMetadata

SoftwareVersion applies equality check predicate on the "softwareVersion" field. It's identical to SoftwareVersionEQ.

func SoftwareVersionContains

func SoftwareVersionContains(v string) predicate.InstanceMetadata

SoftwareVersionContains applies the Contains predicate on the "softwareVersion" field.

func SoftwareVersionContainsFold

func SoftwareVersionContainsFold(v string) predicate.InstanceMetadata

SoftwareVersionContainsFold applies the ContainsFold predicate on the "softwareVersion" field.

func SoftwareVersionEQ

func SoftwareVersionEQ(v string) predicate.InstanceMetadata

SoftwareVersionEQ applies the EQ predicate on the "softwareVersion" field.

func SoftwareVersionEqualFold

func SoftwareVersionEqualFold(v string) predicate.InstanceMetadata

SoftwareVersionEqualFold applies the EqualFold predicate on the "softwareVersion" field.

func SoftwareVersionGT

func SoftwareVersionGT(v string) predicate.InstanceMetadata

SoftwareVersionGT applies the GT predicate on the "softwareVersion" field.

func SoftwareVersionGTE

func SoftwareVersionGTE(v string) predicate.InstanceMetadata

SoftwareVersionGTE applies the GTE predicate on the "softwareVersion" field.

func SoftwareVersionHasPrefix

func SoftwareVersionHasPrefix(v string) predicate.InstanceMetadata

SoftwareVersionHasPrefix applies the HasPrefix predicate on the "softwareVersion" field.

func SoftwareVersionHasSuffix

func SoftwareVersionHasSuffix(v string) predicate.InstanceMetadata

SoftwareVersionHasSuffix applies the HasSuffix predicate on the "softwareVersion" field.

func SoftwareVersionIn

func SoftwareVersionIn(vs ...string) predicate.InstanceMetadata

SoftwareVersionIn applies the In predicate on the "softwareVersion" field.

func SoftwareVersionLT

func SoftwareVersionLT(v string) predicate.InstanceMetadata

SoftwareVersionLT applies the LT predicate on the "softwareVersion" field.

func SoftwareVersionLTE

func SoftwareVersionLTE(v string) predicate.InstanceMetadata

SoftwareVersionLTE applies the LTE predicate on the "softwareVersion" field.

func SoftwareVersionNEQ

func SoftwareVersionNEQ(v string) predicate.InstanceMetadata

SoftwareVersionNEQ applies the NEQ predicate on the "softwareVersion" field.

func SoftwareVersionNotIn

func SoftwareVersionNotIn(vs ...string) predicate.InstanceMetadata

SoftwareVersionNotIn applies the NotIn predicate on the "softwareVersion" field.

func URI

URI applies equality check predicate on the "uri" field. It's identical to URIEQ.

func URIContains

func URIContains(v string) predicate.InstanceMetadata

URIContains applies the Contains predicate on the "uri" field.

func URIContainsFold

func URIContainsFold(v string) predicate.InstanceMetadata

URIContainsFold applies the ContainsFold predicate on the "uri" field.

func URIEQ

URIEQ applies the EQ predicate on the "uri" field.

func URIEqualFold

func URIEqualFold(v string) predicate.InstanceMetadata

URIEqualFold applies the EqualFold predicate on the "uri" field.

func URIGT

URIGT applies the GT predicate on the "uri" field.

func URIGTE

URIGTE applies the GTE predicate on the "uri" field.

func URIHasPrefix

func URIHasPrefix(v string) predicate.InstanceMetadata

URIHasPrefix applies the HasPrefix predicate on the "uri" field.

func URIHasSuffix

func URIHasSuffix(v string) predicate.InstanceMetadata

URIHasSuffix applies the HasSuffix predicate on the "uri" field.

func URIIn

func URIIn(vs ...string) predicate.InstanceMetadata

URIIn applies the In predicate on the "uri" field.

func URILT

URILT applies the LT predicate on the "uri" field.

func URILTE

URILTE applies the LTE predicate on the "uri" field.

func URINEQ

URINEQ applies the NEQ predicate on the "uri" field.

func URINotIn

func URINotIn(vs ...string) predicate.InstanceMetadata

URINotIn applies the NotIn predicate on the "uri" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.InstanceMetadata

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.InstanceMetadata

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.InstanceMetadata

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.InstanceMetadata

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.InstanceMetadata

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.InstanceMetadata

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.InstanceMetadata

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

func UpdatedAtNotIn

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

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

func ByAdmins

func ByAdmins(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByAdmins orders the results by admins terms.

func ByAdminsCount

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

ByAdminsCount orders the results by admins count.

func ByAdminsURI

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

ByAdminsURI orders the results by the adminsURI field.

func ByBannerEndpoint

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

ByBannerEndpoint orders the results by the bannerEndpoint field.

func ByBannerMimeType

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

ByBannerMimeType orders the results by the bannerMimeType field.

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 ByHost

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

ByHost orders the results by the host field.

func ByID

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

ByID orders the results by the id field.

func ByIsRemote

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

ByIsRemote orders the results by the isRemote field.

func ByLogoEndpoint

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

ByLogoEndpoint orders the results by the logoEndpoint field.

func ByLogoMimeType

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

ByLogoMimeType orders the results by the logoMimeType field.

func ByModerators

func ByModerators(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByModerators orders the results by moderators terms.

func ByModeratorsCount

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

ByModeratorsCount orders the results by moderators count.

func ByModeratorsURI

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

ByModeratorsURI orders the results by the moderatorsURI field.

func ByName

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

ByName orders the results by the name field.

func ByPublicKeyAlgorithm

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

ByPublicKeyAlgorithm orders the results by the publicKeyAlgorithm field.

func BySharedInboxURI

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

BySharedInboxURI orders the results by the sharedInboxURI field.

func BySoftwareName

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

BySoftwareName orders the results by the softwareName field.

func BySoftwareVersion

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

BySoftwareVersion orders the results by the softwareVersion field.

func ByURI

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

ByURI orders the results by the uri field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByUsers

func ByUsers(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByUsers orders the results by users terms.

func ByUsersCount

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

ByUsersCount orders the results by users count.

Jump to

Keyboard shortcuts

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