host

package
v0.0.0-...-e544f65 Latest Latest
Warning

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

Go to latest
Published: Jun 24, 2022 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the host type in the database.
	Label = "host"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldHostname holds the string denoting the hostname field in the database.
	FieldHostname = "hostname"
	// FieldOs holds the string denoting the os field in the database.
	FieldOs = "os"
	// FieldPlatform holds the string denoting the platform field in the database.
	FieldPlatform = "platform"
	// FieldPlatformFamily holds the string denoting the platform_family field in the database.
	FieldPlatformFamily = "platform_family"
	// FieldPlatformVersion holds the string denoting the platform_version field in the database.
	FieldPlatformVersion = "platform_version"
	// FieldKernelVersion holds the string denoting the kernel_version field in the database.
	FieldKernelVersion = "kernel_version"
	// FieldKernelArch holds the string denoting the kernel_arch field in the database.
	FieldKernelArch = "kernel_arch"
	// FieldVirtualizationSystem holds the string denoting the virtualization_system field in the database.
	FieldVirtualizationSystem = "virtualization_system"
	// FieldVirtualizationRole holds the string denoting the virtualization_role field in the database.
	FieldVirtualizationRole = "virtualization_role"
	// 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"
	// EdgeCPU holds the string denoting the cpu edge name in mutations.
	EdgeCPU = "cpu"
	// EdgeNetwork holds the string denoting the network edge name in mutations.
	EdgeNetwork = "network"
	// EdgeNetstat holds the string denoting the netstat edge name in mutations.
	EdgeNetstat = "netstat"
	// EdgeDisk holds the string denoting the disk edge name in mutations.
	EdgeDisk = "disk"
	// Table holds the table name of the host in the database.
	Table = "hosts"
	// CPUTable is the table that holds the cpu relation/edge.
	CPUTable = "cpus"
	// CPUInverseTable is the table name for the Cpu entity.
	// It exists in this package in order to avoid circular dependency with the "cpu" package.
	CPUInverseTable = "cpus"
	// CPUColumn is the table column denoting the cpu relation/edge.
	CPUColumn = "host_cpu"
	// NetworkTable is the table that holds the network relation/edge.
	NetworkTable = "networks"
	// NetworkInverseTable is the table name for the Network entity.
	// It exists in this package in order to avoid circular dependency with the "network" package.
	NetworkInverseTable = "networks"
	// NetworkColumn is the table column denoting the network relation/edge.
	NetworkColumn = "host_network"
	// NetstatTable is the table that holds the netstat relation/edge.
	NetstatTable = "netstats"
	// NetstatInverseTable is the table name for the Netstat entity.
	// It exists in this package in order to avoid circular dependency with the "netstat" package.
	NetstatInverseTable = "netstats"
	// NetstatColumn is the table column denoting the netstat relation/edge.
	NetstatColumn = "host_netstat"
	// DiskTable is the table that holds the disk relation/edge.
	DiskTable = "disks"
	// DiskInverseTable is the table name for the Disk entity.
	// It exists in this package in order to avoid circular dependency with the "disk" package.
	DiskInverseTable = "disks"
	// DiskColumn is the table column denoting the disk relation/edge.
	DiskColumn = "host_disk"
)

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
)

Columns holds all SQL columns for host fields.

Functions

func And

func And(predicates ...predicate.Host) predicate.Host

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.Host

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Host

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Host

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Host

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Host

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Host

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Host

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

func CreatedAtNotIn

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

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

func HasCPU

func HasCPU() predicate.Host

HasCPU applies the HasEdge predicate on the "cpu" edge.

func HasCPUWith

func HasCPUWith(preds ...predicate.Cpu) predicate.Host

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

func HasDisk

func HasDisk() predicate.Host

HasDisk applies the HasEdge predicate on the "disk" edge.

func HasDiskWith

func HasDiskWith(preds ...predicate.Disk) predicate.Host

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

func HasNetstat

func HasNetstat() predicate.Host

HasNetstat applies the HasEdge predicate on the "netstat" edge.

func HasNetstatWith

func HasNetstatWith(preds ...predicate.Netstat) predicate.Host

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

func HasNetwork

func HasNetwork() predicate.Host

HasNetwork applies the HasEdge predicate on the "network" edge.

func HasNetworkWith

func HasNetworkWith(preds ...predicate.Network) predicate.Host

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

func Hostname

func Hostname(v string) predicate.Host

Hostname applies equality check predicate on the "hostname" field. It's identical to HostnameEQ.

func HostnameContains

func HostnameContains(v string) predicate.Host

HostnameContains applies the Contains predicate on the "hostname" field.

func HostnameContainsFold

func HostnameContainsFold(v string) predicate.Host

HostnameContainsFold applies the ContainsFold predicate on the "hostname" field.

func HostnameEQ

func HostnameEQ(v string) predicate.Host

HostnameEQ applies the EQ predicate on the "hostname" field.

func HostnameEqualFold

func HostnameEqualFold(v string) predicate.Host

HostnameEqualFold applies the EqualFold predicate on the "hostname" field.

func HostnameGT

func HostnameGT(v string) predicate.Host

HostnameGT applies the GT predicate on the "hostname" field.

func HostnameGTE

func HostnameGTE(v string) predicate.Host

HostnameGTE applies the GTE predicate on the "hostname" field.

func HostnameHasPrefix

func HostnameHasPrefix(v string) predicate.Host

HostnameHasPrefix applies the HasPrefix predicate on the "hostname" field.

func HostnameHasSuffix

func HostnameHasSuffix(v string) predicate.Host

HostnameHasSuffix applies the HasSuffix predicate on the "hostname" field.

func HostnameIn

func HostnameIn(vs ...string) predicate.Host

HostnameIn applies the In predicate on the "hostname" field.

func HostnameLT

func HostnameLT(v string) predicate.Host

HostnameLT applies the LT predicate on the "hostname" field.

func HostnameLTE

func HostnameLTE(v string) predicate.Host

HostnameLTE applies the LTE predicate on the "hostname" field.

func HostnameNEQ

func HostnameNEQ(v string) predicate.Host

HostnameNEQ applies the NEQ predicate on the "hostname" field.

func HostnameNotIn

func HostnameNotIn(vs ...string) predicate.Host

HostnameNotIn applies the NotIn predicate on the "hostname" field.

func ID

func ID(id string) predicate.Host

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id string) predicate.Host

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id string) predicate.Host

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.Host

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...string) predicate.Host

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.Host

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.Host

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.Host

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.Host

IDNotIn applies the NotIn predicate on the ID field.

func KernelArch

func KernelArch(v string) predicate.Host

KernelArch applies equality check predicate on the "kernel_arch" field. It's identical to KernelArchEQ.

func KernelArchContains

func KernelArchContains(v string) predicate.Host

KernelArchContains applies the Contains predicate on the "kernel_arch" field.

func KernelArchContainsFold

func KernelArchContainsFold(v string) predicate.Host

KernelArchContainsFold applies the ContainsFold predicate on the "kernel_arch" field.

func KernelArchEQ

func KernelArchEQ(v string) predicate.Host

KernelArchEQ applies the EQ predicate on the "kernel_arch" field.

func KernelArchEqualFold

func KernelArchEqualFold(v string) predicate.Host

KernelArchEqualFold applies the EqualFold predicate on the "kernel_arch" field.

func KernelArchGT

func KernelArchGT(v string) predicate.Host

KernelArchGT applies the GT predicate on the "kernel_arch" field.

func KernelArchGTE

func KernelArchGTE(v string) predicate.Host

KernelArchGTE applies the GTE predicate on the "kernel_arch" field.

func KernelArchHasPrefix

func KernelArchHasPrefix(v string) predicate.Host

KernelArchHasPrefix applies the HasPrefix predicate on the "kernel_arch" field.

func KernelArchHasSuffix

func KernelArchHasSuffix(v string) predicate.Host

KernelArchHasSuffix applies the HasSuffix predicate on the "kernel_arch" field.

func KernelArchIn

func KernelArchIn(vs ...string) predicate.Host

KernelArchIn applies the In predicate on the "kernel_arch" field.

func KernelArchLT

func KernelArchLT(v string) predicate.Host

KernelArchLT applies the LT predicate on the "kernel_arch" field.

func KernelArchLTE

func KernelArchLTE(v string) predicate.Host

KernelArchLTE applies the LTE predicate on the "kernel_arch" field.

func KernelArchNEQ

func KernelArchNEQ(v string) predicate.Host

KernelArchNEQ applies the NEQ predicate on the "kernel_arch" field.

func KernelArchNotIn

func KernelArchNotIn(vs ...string) predicate.Host

KernelArchNotIn applies the NotIn predicate on the "kernel_arch" field.

func KernelVersion

func KernelVersion(v string) predicate.Host

KernelVersion applies equality check predicate on the "kernel_version" field. It's identical to KernelVersionEQ.

func KernelVersionContains

func KernelVersionContains(v string) predicate.Host

KernelVersionContains applies the Contains predicate on the "kernel_version" field.

func KernelVersionContainsFold

func KernelVersionContainsFold(v string) predicate.Host

KernelVersionContainsFold applies the ContainsFold predicate on the "kernel_version" field.

func KernelVersionEQ

func KernelVersionEQ(v string) predicate.Host

KernelVersionEQ applies the EQ predicate on the "kernel_version" field.

func KernelVersionEqualFold

func KernelVersionEqualFold(v string) predicate.Host

KernelVersionEqualFold applies the EqualFold predicate on the "kernel_version" field.

func KernelVersionGT

func KernelVersionGT(v string) predicate.Host

KernelVersionGT applies the GT predicate on the "kernel_version" field.

func KernelVersionGTE

func KernelVersionGTE(v string) predicate.Host

KernelVersionGTE applies the GTE predicate on the "kernel_version" field.

func KernelVersionHasPrefix

func KernelVersionHasPrefix(v string) predicate.Host

KernelVersionHasPrefix applies the HasPrefix predicate on the "kernel_version" field.

func KernelVersionHasSuffix

func KernelVersionHasSuffix(v string) predicate.Host

KernelVersionHasSuffix applies the HasSuffix predicate on the "kernel_version" field.

func KernelVersionIn

func KernelVersionIn(vs ...string) predicate.Host

KernelVersionIn applies the In predicate on the "kernel_version" field.

func KernelVersionLT

func KernelVersionLT(v string) predicate.Host

KernelVersionLT applies the LT predicate on the "kernel_version" field.

func KernelVersionLTE

func KernelVersionLTE(v string) predicate.Host

KernelVersionLTE applies the LTE predicate on the "kernel_version" field.

func KernelVersionNEQ

func KernelVersionNEQ(v string) predicate.Host

KernelVersionNEQ applies the NEQ predicate on the "kernel_version" field.

func KernelVersionNotIn

func KernelVersionNotIn(vs ...string) predicate.Host

KernelVersionNotIn applies the NotIn predicate on the "kernel_version" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Host) predicate.Host

Or groups predicates with the OR operator between them.

func Os

func Os(v string) predicate.Host

Os applies equality check predicate on the "os" field. It's identical to OsEQ.

func OsContains

func OsContains(v string) predicate.Host

OsContains applies the Contains predicate on the "os" field.

func OsContainsFold

func OsContainsFold(v string) predicate.Host

OsContainsFold applies the ContainsFold predicate on the "os" field.

func OsEQ

func OsEQ(v string) predicate.Host

OsEQ applies the EQ predicate on the "os" field.

func OsEqualFold

func OsEqualFold(v string) predicate.Host

OsEqualFold applies the EqualFold predicate on the "os" field.

func OsGT

func OsGT(v string) predicate.Host

OsGT applies the GT predicate on the "os" field.

func OsGTE

func OsGTE(v string) predicate.Host

OsGTE applies the GTE predicate on the "os" field.

func OsHasPrefix

func OsHasPrefix(v string) predicate.Host

OsHasPrefix applies the HasPrefix predicate on the "os" field.

func OsHasSuffix

func OsHasSuffix(v string) predicate.Host

OsHasSuffix applies the HasSuffix predicate on the "os" field.

func OsIn

func OsIn(vs ...string) predicate.Host

OsIn applies the In predicate on the "os" field.

func OsLT

func OsLT(v string) predicate.Host

OsLT applies the LT predicate on the "os" field.

func OsLTE

func OsLTE(v string) predicate.Host

OsLTE applies the LTE predicate on the "os" field.

func OsNEQ

func OsNEQ(v string) predicate.Host

OsNEQ applies the NEQ predicate on the "os" field.

func OsNotIn

func OsNotIn(vs ...string) predicate.Host

OsNotIn applies the NotIn predicate on the "os" field.

func Platform

func Platform(v string) predicate.Host

Platform applies equality check predicate on the "platform" field. It's identical to PlatformEQ.

func PlatformContains

func PlatformContains(v string) predicate.Host

PlatformContains applies the Contains predicate on the "platform" field.

func PlatformContainsFold

func PlatformContainsFold(v string) predicate.Host

PlatformContainsFold applies the ContainsFold predicate on the "platform" field.

func PlatformEQ

func PlatformEQ(v string) predicate.Host

PlatformEQ applies the EQ predicate on the "platform" field.

func PlatformEqualFold

func PlatformEqualFold(v string) predicate.Host

PlatformEqualFold applies the EqualFold predicate on the "platform" field.

func PlatformFamily

func PlatformFamily(v string) predicate.Host

PlatformFamily applies equality check predicate on the "platform_family" field. It's identical to PlatformFamilyEQ.

func PlatformFamilyContains

func PlatformFamilyContains(v string) predicate.Host

PlatformFamilyContains applies the Contains predicate on the "platform_family" field.

func PlatformFamilyContainsFold

func PlatformFamilyContainsFold(v string) predicate.Host

PlatformFamilyContainsFold applies the ContainsFold predicate on the "platform_family" field.

func PlatformFamilyEQ

func PlatformFamilyEQ(v string) predicate.Host

PlatformFamilyEQ applies the EQ predicate on the "platform_family" field.

func PlatformFamilyEqualFold

func PlatformFamilyEqualFold(v string) predicate.Host

PlatformFamilyEqualFold applies the EqualFold predicate on the "platform_family" field.

func PlatformFamilyGT

func PlatformFamilyGT(v string) predicate.Host

PlatformFamilyGT applies the GT predicate on the "platform_family" field.

func PlatformFamilyGTE

func PlatformFamilyGTE(v string) predicate.Host

PlatformFamilyGTE applies the GTE predicate on the "platform_family" field.

func PlatformFamilyHasPrefix

func PlatformFamilyHasPrefix(v string) predicate.Host

PlatformFamilyHasPrefix applies the HasPrefix predicate on the "platform_family" field.

func PlatformFamilyHasSuffix

func PlatformFamilyHasSuffix(v string) predicate.Host

PlatformFamilyHasSuffix applies the HasSuffix predicate on the "platform_family" field.

func PlatformFamilyIn

func PlatformFamilyIn(vs ...string) predicate.Host

PlatformFamilyIn applies the In predicate on the "platform_family" field.

func PlatformFamilyLT

func PlatformFamilyLT(v string) predicate.Host

PlatformFamilyLT applies the LT predicate on the "platform_family" field.

func PlatformFamilyLTE

func PlatformFamilyLTE(v string) predicate.Host

PlatformFamilyLTE applies the LTE predicate on the "platform_family" field.

func PlatformFamilyNEQ

func PlatformFamilyNEQ(v string) predicate.Host

PlatformFamilyNEQ applies the NEQ predicate on the "platform_family" field.

func PlatformFamilyNotIn

func PlatformFamilyNotIn(vs ...string) predicate.Host

PlatformFamilyNotIn applies the NotIn predicate on the "platform_family" field.

func PlatformGT

func PlatformGT(v string) predicate.Host

PlatformGT applies the GT predicate on the "platform" field.

func PlatformGTE

func PlatformGTE(v string) predicate.Host

PlatformGTE applies the GTE predicate on the "platform" field.

func PlatformHasPrefix

func PlatformHasPrefix(v string) predicate.Host

PlatformHasPrefix applies the HasPrefix predicate on the "platform" field.

func PlatformHasSuffix

func PlatformHasSuffix(v string) predicate.Host

PlatformHasSuffix applies the HasSuffix predicate on the "platform" field.

func PlatformIn

func PlatformIn(vs ...string) predicate.Host

PlatformIn applies the In predicate on the "platform" field.

func PlatformLT

func PlatformLT(v string) predicate.Host

PlatformLT applies the LT predicate on the "platform" field.

func PlatformLTE

func PlatformLTE(v string) predicate.Host

PlatformLTE applies the LTE predicate on the "platform" field.

func PlatformNEQ

func PlatformNEQ(v string) predicate.Host

PlatformNEQ applies the NEQ predicate on the "platform" field.

func PlatformNotIn

func PlatformNotIn(vs ...string) predicate.Host

PlatformNotIn applies the NotIn predicate on the "platform" field.

func PlatformVersion

func PlatformVersion(v string) predicate.Host

PlatformVersion applies equality check predicate on the "platform_version" field. It's identical to PlatformVersionEQ.

func PlatformVersionContains

func PlatformVersionContains(v string) predicate.Host

PlatformVersionContains applies the Contains predicate on the "platform_version" field.

func PlatformVersionContainsFold

func PlatformVersionContainsFold(v string) predicate.Host

PlatformVersionContainsFold applies the ContainsFold predicate on the "platform_version" field.

func PlatformVersionEQ

func PlatformVersionEQ(v string) predicate.Host

PlatformVersionEQ applies the EQ predicate on the "platform_version" field.

func PlatformVersionEqualFold

func PlatformVersionEqualFold(v string) predicate.Host

PlatformVersionEqualFold applies the EqualFold predicate on the "platform_version" field.

func PlatformVersionGT

func PlatformVersionGT(v string) predicate.Host

PlatformVersionGT applies the GT predicate on the "platform_version" field.

func PlatformVersionGTE

func PlatformVersionGTE(v string) predicate.Host

PlatformVersionGTE applies the GTE predicate on the "platform_version" field.

func PlatformVersionHasPrefix

func PlatformVersionHasPrefix(v string) predicate.Host

PlatformVersionHasPrefix applies the HasPrefix predicate on the "platform_version" field.

func PlatformVersionHasSuffix

func PlatformVersionHasSuffix(v string) predicate.Host

PlatformVersionHasSuffix applies the HasSuffix predicate on the "platform_version" field.

func PlatformVersionIn

func PlatformVersionIn(vs ...string) predicate.Host

PlatformVersionIn applies the In predicate on the "platform_version" field.

func PlatformVersionLT

func PlatformVersionLT(v string) predicate.Host

PlatformVersionLT applies the LT predicate on the "platform_version" field.

func PlatformVersionLTE

func PlatformVersionLTE(v string) predicate.Host

PlatformVersionLTE applies the LTE predicate on the "platform_version" field.

func PlatformVersionNEQ

func PlatformVersionNEQ(v string) predicate.Host

PlatformVersionNEQ applies the NEQ predicate on the "platform_version" field.

func PlatformVersionNotIn

func PlatformVersionNotIn(vs ...string) predicate.Host

PlatformVersionNotIn applies the NotIn predicate on the "platform_version" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Host

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Host

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Host

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Host

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Host

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Host

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Host

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

func UpdatedAtNotIn

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

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

func VirtualizationRole

func VirtualizationRole(v string) predicate.Host

VirtualizationRole applies equality check predicate on the "virtualization_role" field. It's identical to VirtualizationRoleEQ.

func VirtualizationRoleContains

func VirtualizationRoleContains(v string) predicate.Host

VirtualizationRoleContains applies the Contains predicate on the "virtualization_role" field.

func VirtualizationRoleContainsFold

func VirtualizationRoleContainsFold(v string) predicate.Host

VirtualizationRoleContainsFold applies the ContainsFold predicate on the "virtualization_role" field.

func VirtualizationRoleEQ

func VirtualizationRoleEQ(v string) predicate.Host

VirtualizationRoleEQ applies the EQ predicate on the "virtualization_role" field.

func VirtualizationRoleEqualFold

func VirtualizationRoleEqualFold(v string) predicate.Host

VirtualizationRoleEqualFold applies the EqualFold predicate on the "virtualization_role" field.

func VirtualizationRoleGT

func VirtualizationRoleGT(v string) predicate.Host

VirtualizationRoleGT applies the GT predicate on the "virtualization_role" field.

func VirtualizationRoleGTE

func VirtualizationRoleGTE(v string) predicate.Host

VirtualizationRoleGTE applies the GTE predicate on the "virtualization_role" field.

func VirtualizationRoleHasPrefix

func VirtualizationRoleHasPrefix(v string) predicate.Host

VirtualizationRoleHasPrefix applies the HasPrefix predicate on the "virtualization_role" field.

func VirtualizationRoleHasSuffix

func VirtualizationRoleHasSuffix(v string) predicate.Host

VirtualizationRoleHasSuffix applies the HasSuffix predicate on the "virtualization_role" field.

func VirtualizationRoleIn

func VirtualizationRoleIn(vs ...string) predicate.Host

VirtualizationRoleIn applies the In predicate on the "virtualization_role" field.

func VirtualizationRoleLT

func VirtualizationRoleLT(v string) predicate.Host

VirtualizationRoleLT applies the LT predicate on the "virtualization_role" field.

func VirtualizationRoleLTE

func VirtualizationRoleLTE(v string) predicate.Host

VirtualizationRoleLTE applies the LTE predicate on the "virtualization_role" field.

func VirtualizationRoleNEQ

func VirtualizationRoleNEQ(v string) predicate.Host

VirtualizationRoleNEQ applies the NEQ predicate on the "virtualization_role" field.

func VirtualizationRoleNotIn

func VirtualizationRoleNotIn(vs ...string) predicate.Host

VirtualizationRoleNotIn applies the NotIn predicate on the "virtualization_role" field.

func VirtualizationSystem

func VirtualizationSystem(v string) predicate.Host

VirtualizationSystem applies equality check predicate on the "virtualization_system" field. It's identical to VirtualizationSystemEQ.

func VirtualizationSystemContains

func VirtualizationSystemContains(v string) predicate.Host

VirtualizationSystemContains applies the Contains predicate on the "virtualization_system" field.

func VirtualizationSystemContainsFold

func VirtualizationSystemContainsFold(v string) predicate.Host

VirtualizationSystemContainsFold applies the ContainsFold predicate on the "virtualization_system" field.

func VirtualizationSystemEQ

func VirtualizationSystemEQ(v string) predicate.Host

VirtualizationSystemEQ applies the EQ predicate on the "virtualization_system" field.

func VirtualizationSystemEqualFold

func VirtualizationSystemEqualFold(v string) predicate.Host

VirtualizationSystemEqualFold applies the EqualFold predicate on the "virtualization_system" field.

func VirtualizationSystemGT

func VirtualizationSystemGT(v string) predicate.Host

VirtualizationSystemGT applies the GT predicate on the "virtualization_system" field.

func VirtualizationSystemGTE

func VirtualizationSystemGTE(v string) predicate.Host

VirtualizationSystemGTE applies the GTE predicate on the "virtualization_system" field.

func VirtualizationSystemHasPrefix

func VirtualizationSystemHasPrefix(v string) predicate.Host

VirtualizationSystemHasPrefix applies the HasPrefix predicate on the "virtualization_system" field.

func VirtualizationSystemHasSuffix

func VirtualizationSystemHasSuffix(v string) predicate.Host

VirtualizationSystemHasSuffix applies the HasSuffix predicate on the "virtualization_system" field.

func VirtualizationSystemIn

func VirtualizationSystemIn(vs ...string) predicate.Host

VirtualizationSystemIn applies the In predicate on the "virtualization_system" field.

func VirtualizationSystemLT

func VirtualizationSystemLT(v string) predicate.Host

VirtualizationSystemLT applies the LT predicate on the "virtualization_system" field.

func VirtualizationSystemLTE

func VirtualizationSystemLTE(v string) predicate.Host

VirtualizationSystemLTE applies the LTE predicate on the "virtualization_system" field.

func VirtualizationSystemNEQ

func VirtualizationSystemNEQ(v string) predicate.Host

VirtualizationSystemNEQ applies the NEQ predicate on the "virtualization_system" field.

func VirtualizationSystemNotIn

func VirtualizationSystemNotIn(vs ...string) predicate.Host

VirtualizationSystemNotIn applies the NotIn predicate on the "virtualization_system" field.

Types

This section is empty.

Jump to

Keyboard shortcuts

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