stack

package
v0.0.0-...-3e288c8 Latest Latest
Warning

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

Go to latest
Published: Mar 30, 2022 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the stack type in the database.
	Label = "stack"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldInstance holds the string denoting the instance field in the database.
	FieldInstance = "instance"
	// FieldVpcID holds the string denoting the vpc_id field in the database.
	FieldVpcID = "vpc_id"
	// FieldPublicIP holds the string denoting the public_ip field in the database.
	FieldPublicIP = "public_ip"
	// FieldPublicDNS holds the string denoting the public_dns field in the database.
	FieldPublicDNS = "public_dns"
	// FieldUsername holds the string denoting the username field in the database.
	FieldUsername = "username"
	// FieldSecurityGroup holds the string denoting the security_group field in the database.
	FieldSecurityGroup = "security_group"
	// FieldKeyPair holds the string denoting the key_pair field in the database.
	FieldKeyPair = "key_pair"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldPrivateKey holds the string denoting the private_key field in the database.
	FieldPrivateKey = "private_key"
	// FieldFilepath holds the string denoting the filepath field in the database.
	FieldFilepath = "filepath"
	// EdgeDeployment holds the string denoting the deployment edge name in mutations.
	EdgeDeployment = "deployment"
	// Table holds the table name of the stack in the database.
	Table = "stacks"
	// DeploymentTable is the table that holds the deployment relation/edge.
	DeploymentTable = "stacks"
	// DeploymentInverseTable is the table name for the Deployment entity.
	// It exists in this package in order to avoid circular dependency with the "deployment" package.
	DeploymentInverseTable = "deployments"
	// DeploymentColumn is the table column denoting the deployment relation/edge.
	DeploymentColumn = "deployment_stack"
)

Variables

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

Columns holds all SQL columns for stack fields.

View Source
var ForeignKeys = []string{
	"deployment_stack",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "stacks" table and are not defined as standalone fields in the schema.

Functions

func And

func And(predicates ...predicate.Stack) predicate.Stack

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.Stack

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Stack

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Stack

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Stack

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Stack

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Stack

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Stack

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

func CreatedAtNotIn

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

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

func Filepath

func Filepath(v string) predicate.Stack

Filepath applies equality check predicate on the "filepath" field. It's identical to FilepathEQ.

func FilepathContains

func FilepathContains(v string) predicate.Stack

FilepathContains applies the Contains predicate on the "filepath" field.

func FilepathContainsFold

func FilepathContainsFold(v string) predicate.Stack

FilepathContainsFold applies the ContainsFold predicate on the "filepath" field.

func FilepathEQ

func FilepathEQ(v string) predicate.Stack

FilepathEQ applies the EQ predicate on the "filepath" field.

func FilepathEqualFold

func FilepathEqualFold(v string) predicate.Stack

FilepathEqualFold applies the EqualFold predicate on the "filepath" field.

func FilepathGT

func FilepathGT(v string) predicate.Stack

FilepathGT applies the GT predicate on the "filepath" field.

func FilepathGTE

func FilepathGTE(v string) predicate.Stack

FilepathGTE applies the GTE predicate on the "filepath" field.

func FilepathHasPrefix

func FilepathHasPrefix(v string) predicate.Stack

FilepathHasPrefix applies the HasPrefix predicate on the "filepath" field.

func FilepathHasSuffix

func FilepathHasSuffix(v string) predicate.Stack

FilepathHasSuffix applies the HasSuffix predicate on the "filepath" field.

func FilepathIn

func FilepathIn(vs ...string) predicate.Stack

FilepathIn applies the In predicate on the "filepath" field.

func FilepathIsNil

func FilepathIsNil() predicate.Stack

FilepathIsNil applies the IsNil predicate on the "filepath" field.

func FilepathLT

func FilepathLT(v string) predicate.Stack

FilepathLT applies the LT predicate on the "filepath" field.

func FilepathLTE

func FilepathLTE(v string) predicate.Stack

FilepathLTE applies the LTE predicate on the "filepath" field.

func FilepathNEQ

func FilepathNEQ(v string) predicate.Stack

FilepathNEQ applies the NEQ predicate on the "filepath" field.

func FilepathNotIn

func FilepathNotIn(vs ...string) predicate.Stack

FilepathNotIn applies the NotIn predicate on the "filepath" field.

func FilepathNotNil

func FilepathNotNil() predicate.Stack

FilepathNotNil applies the NotNil predicate on the "filepath" field.

func HasDeployment

func HasDeployment() predicate.Stack

HasDeployment applies the HasEdge predicate on the "deployment" edge.

func HasDeploymentWith

func HasDeploymentWith(preds ...predicate.Deployment) predicate.Stack

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

func ID

func ID(id string) predicate.Stack

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id string) predicate.Stack

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id string) predicate.Stack

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.Stack

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.Stack

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.Stack

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.Stack

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Instance

func Instance(v string) predicate.Stack

Instance applies equality check predicate on the "instance" field. It's identical to InstanceEQ.

func InstanceContains

func InstanceContains(v string) predicate.Stack

InstanceContains applies the Contains predicate on the "instance" field.

func InstanceContainsFold

func InstanceContainsFold(v string) predicate.Stack

InstanceContainsFold applies the ContainsFold predicate on the "instance" field.

func InstanceEQ

func InstanceEQ(v string) predicate.Stack

InstanceEQ applies the EQ predicate on the "instance" field.

func InstanceEqualFold

func InstanceEqualFold(v string) predicate.Stack

InstanceEqualFold applies the EqualFold predicate on the "instance" field.

func InstanceGT

func InstanceGT(v string) predicate.Stack

InstanceGT applies the GT predicate on the "instance" field.

func InstanceGTE

func InstanceGTE(v string) predicate.Stack

InstanceGTE applies the GTE predicate on the "instance" field.

func InstanceHasPrefix

func InstanceHasPrefix(v string) predicate.Stack

InstanceHasPrefix applies the HasPrefix predicate on the "instance" field.

func InstanceHasSuffix

func InstanceHasSuffix(v string) predicate.Stack

InstanceHasSuffix applies the HasSuffix predicate on the "instance" field.

func InstanceIn

func InstanceIn(vs ...string) predicate.Stack

InstanceIn applies the In predicate on the "instance" field.

func InstanceLT

func InstanceLT(v string) predicate.Stack

InstanceLT applies the LT predicate on the "instance" field.

func InstanceLTE

func InstanceLTE(v string) predicate.Stack

InstanceLTE applies the LTE predicate on the "instance" field.

func InstanceNEQ

func InstanceNEQ(v string) predicate.Stack

InstanceNEQ applies the NEQ predicate on the "instance" field.

func InstanceNotIn

func InstanceNotIn(vs ...string) predicate.Stack

InstanceNotIn applies the NotIn predicate on the "instance" field.

func KeyPair

func KeyPair(v string) predicate.Stack

KeyPair applies equality check predicate on the "key_pair" field. It's identical to KeyPairEQ.

func KeyPairContains

func KeyPairContains(v string) predicate.Stack

KeyPairContains applies the Contains predicate on the "key_pair" field.

func KeyPairContainsFold

func KeyPairContainsFold(v string) predicate.Stack

KeyPairContainsFold applies the ContainsFold predicate on the "key_pair" field.

func KeyPairEQ

func KeyPairEQ(v string) predicate.Stack

KeyPairEQ applies the EQ predicate on the "key_pair" field.

func KeyPairEqualFold

func KeyPairEqualFold(v string) predicate.Stack

KeyPairEqualFold applies the EqualFold predicate on the "key_pair" field.

func KeyPairGT

func KeyPairGT(v string) predicate.Stack

KeyPairGT applies the GT predicate on the "key_pair" field.

func KeyPairGTE

func KeyPairGTE(v string) predicate.Stack

KeyPairGTE applies the GTE predicate on the "key_pair" field.

func KeyPairHasPrefix

func KeyPairHasPrefix(v string) predicate.Stack

KeyPairHasPrefix applies the HasPrefix predicate on the "key_pair" field.

func KeyPairHasSuffix

func KeyPairHasSuffix(v string) predicate.Stack

KeyPairHasSuffix applies the HasSuffix predicate on the "key_pair" field.

func KeyPairIn

func KeyPairIn(vs ...string) predicate.Stack

KeyPairIn applies the In predicate on the "key_pair" field.

func KeyPairLT

func KeyPairLT(v string) predicate.Stack

KeyPairLT applies the LT predicate on the "key_pair" field.

func KeyPairLTE

func KeyPairLTE(v string) predicate.Stack

KeyPairLTE applies the LTE predicate on the "key_pair" field.

func KeyPairNEQ

func KeyPairNEQ(v string) predicate.Stack

KeyPairNEQ applies the NEQ predicate on the "key_pair" field.

func KeyPairNotIn

func KeyPairNotIn(vs ...string) predicate.Stack

KeyPairNotIn applies the NotIn predicate on the "key_pair" field.

func Name

func Name(v string) predicate.Stack

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

func NameContains

func NameContains(v string) predicate.Stack

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

func NameContainsFold

func NameContainsFold(v string) predicate.Stack

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

func NameEQ

func NameEQ(v string) predicate.Stack

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

func NameEqualFold

func NameEqualFold(v string) predicate.Stack

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

func NameGT

func NameGT(v string) predicate.Stack

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

func NameGTE

func NameGTE(v string) predicate.Stack

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.Stack

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.Stack

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.Stack

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

func NameLTE

func NameLTE(v string) predicate.Stack

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

func NameNEQ

func NameNEQ(v string) predicate.Stack

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

func NameNotIn

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

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

Or groups predicates with the OR operator between them.

func PrivateKey

func PrivateKey(v string) predicate.Stack

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

func PrivateKeyContains

func PrivateKeyContains(v string) predicate.Stack

PrivateKeyContains applies the Contains predicate on the "private_key" field.

func PrivateKeyContainsFold

func PrivateKeyContainsFold(v string) predicate.Stack

PrivateKeyContainsFold applies the ContainsFold predicate on the "private_key" field.

func PrivateKeyEQ

func PrivateKeyEQ(v string) predicate.Stack

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

func PrivateKeyEqualFold

func PrivateKeyEqualFold(v string) predicate.Stack

PrivateKeyEqualFold applies the EqualFold predicate on the "private_key" field.

func PrivateKeyGT

func PrivateKeyGT(v string) predicate.Stack

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

func PrivateKeyGTE

func PrivateKeyGTE(v string) predicate.Stack

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

func PrivateKeyHasPrefix

func PrivateKeyHasPrefix(v string) predicate.Stack

PrivateKeyHasPrefix applies the HasPrefix predicate on the "private_key" field.

func PrivateKeyHasSuffix

func PrivateKeyHasSuffix(v string) predicate.Stack

PrivateKeyHasSuffix applies the HasSuffix predicate on the "private_key" field.

func PrivateKeyIn

func PrivateKeyIn(vs ...string) predicate.Stack

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

func PrivateKeyLT

func PrivateKeyLT(v string) predicate.Stack

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

func PrivateKeyLTE

func PrivateKeyLTE(v string) predicate.Stack

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

func PrivateKeyNEQ

func PrivateKeyNEQ(v string) predicate.Stack

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

func PrivateKeyNotIn

func PrivateKeyNotIn(vs ...string) predicate.Stack

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

func PublicDNS

func PublicDNS(v string) predicate.Stack

PublicDNS applies equality check predicate on the "public_dns" field. It's identical to PublicDNSEQ.

func PublicDNSContains

func PublicDNSContains(v string) predicate.Stack

PublicDNSContains applies the Contains predicate on the "public_dns" field.

func PublicDNSContainsFold

func PublicDNSContainsFold(v string) predicate.Stack

PublicDNSContainsFold applies the ContainsFold predicate on the "public_dns" field.

func PublicDNSEQ

func PublicDNSEQ(v string) predicate.Stack

PublicDNSEQ applies the EQ predicate on the "public_dns" field.

func PublicDNSEqualFold

func PublicDNSEqualFold(v string) predicate.Stack

PublicDNSEqualFold applies the EqualFold predicate on the "public_dns" field.

func PublicDNSGT

func PublicDNSGT(v string) predicate.Stack

PublicDNSGT applies the GT predicate on the "public_dns" field.

func PublicDNSGTE

func PublicDNSGTE(v string) predicate.Stack

PublicDNSGTE applies the GTE predicate on the "public_dns" field.

func PublicDNSHasPrefix

func PublicDNSHasPrefix(v string) predicate.Stack

PublicDNSHasPrefix applies the HasPrefix predicate on the "public_dns" field.

func PublicDNSHasSuffix

func PublicDNSHasSuffix(v string) predicate.Stack

PublicDNSHasSuffix applies the HasSuffix predicate on the "public_dns" field.

func PublicDNSIn

func PublicDNSIn(vs ...string) predicate.Stack

PublicDNSIn applies the In predicate on the "public_dns" field.

func PublicDNSIsNil

func PublicDNSIsNil() predicate.Stack

PublicDNSIsNil applies the IsNil predicate on the "public_dns" field.

func PublicDNSLT

func PublicDNSLT(v string) predicate.Stack

PublicDNSLT applies the LT predicate on the "public_dns" field.

func PublicDNSLTE

func PublicDNSLTE(v string) predicate.Stack

PublicDNSLTE applies the LTE predicate on the "public_dns" field.

func PublicDNSNEQ

func PublicDNSNEQ(v string) predicate.Stack

PublicDNSNEQ applies the NEQ predicate on the "public_dns" field.

func PublicDNSNotIn

func PublicDNSNotIn(vs ...string) predicate.Stack

PublicDNSNotIn applies the NotIn predicate on the "public_dns" field.

func PublicDNSNotNil

func PublicDNSNotNil() predicate.Stack

PublicDNSNotNil applies the NotNil predicate on the "public_dns" field.

func PublicIP

func PublicIP(v string) predicate.Stack

PublicIP applies equality check predicate on the "public_ip" field. It's identical to PublicIPEQ.

func PublicIPContains

func PublicIPContains(v string) predicate.Stack

PublicIPContains applies the Contains predicate on the "public_ip" field.

func PublicIPContainsFold

func PublicIPContainsFold(v string) predicate.Stack

PublicIPContainsFold applies the ContainsFold predicate on the "public_ip" field.

func PublicIPEQ

func PublicIPEQ(v string) predicate.Stack

PublicIPEQ applies the EQ predicate on the "public_ip" field.

func PublicIPEqualFold

func PublicIPEqualFold(v string) predicate.Stack

PublicIPEqualFold applies the EqualFold predicate on the "public_ip" field.

func PublicIPGT

func PublicIPGT(v string) predicate.Stack

PublicIPGT applies the GT predicate on the "public_ip" field.

func PublicIPGTE

func PublicIPGTE(v string) predicate.Stack

PublicIPGTE applies the GTE predicate on the "public_ip" field.

func PublicIPHasPrefix

func PublicIPHasPrefix(v string) predicate.Stack

PublicIPHasPrefix applies the HasPrefix predicate on the "public_ip" field.

func PublicIPHasSuffix

func PublicIPHasSuffix(v string) predicate.Stack

PublicIPHasSuffix applies the HasSuffix predicate on the "public_ip" field.

func PublicIPIn

func PublicIPIn(vs ...string) predicate.Stack

PublicIPIn applies the In predicate on the "public_ip" field.

func PublicIPLT

func PublicIPLT(v string) predicate.Stack

PublicIPLT applies the LT predicate on the "public_ip" field.

func PublicIPLTE

func PublicIPLTE(v string) predicate.Stack

PublicIPLTE applies the LTE predicate on the "public_ip" field.

func PublicIPNEQ

func PublicIPNEQ(v string) predicate.Stack

PublicIPNEQ applies the NEQ predicate on the "public_ip" field.

func PublicIPNotIn

func PublicIPNotIn(vs ...string) predicate.Stack

PublicIPNotIn applies the NotIn predicate on the "public_ip" field.

func SecurityGroup

func SecurityGroup(v string) predicate.Stack

SecurityGroup applies equality check predicate on the "security_group" field. It's identical to SecurityGroupEQ.

func SecurityGroupContains

func SecurityGroupContains(v string) predicate.Stack

SecurityGroupContains applies the Contains predicate on the "security_group" field.

func SecurityGroupContainsFold

func SecurityGroupContainsFold(v string) predicate.Stack

SecurityGroupContainsFold applies the ContainsFold predicate on the "security_group" field.

func SecurityGroupEQ

func SecurityGroupEQ(v string) predicate.Stack

SecurityGroupEQ applies the EQ predicate on the "security_group" field.

func SecurityGroupEqualFold

func SecurityGroupEqualFold(v string) predicate.Stack

SecurityGroupEqualFold applies the EqualFold predicate on the "security_group" field.

func SecurityGroupGT

func SecurityGroupGT(v string) predicate.Stack

SecurityGroupGT applies the GT predicate on the "security_group" field.

func SecurityGroupGTE

func SecurityGroupGTE(v string) predicate.Stack

SecurityGroupGTE applies the GTE predicate on the "security_group" field.

func SecurityGroupHasPrefix

func SecurityGroupHasPrefix(v string) predicate.Stack

SecurityGroupHasPrefix applies the HasPrefix predicate on the "security_group" field.

func SecurityGroupHasSuffix

func SecurityGroupHasSuffix(v string) predicate.Stack

SecurityGroupHasSuffix applies the HasSuffix predicate on the "security_group" field.

func SecurityGroupIn

func SecurityGroupIn(vs ...string) predicate.Stack

SecurityGroupIn applies the In predicate on the "security_group" field.

func SecurityGroupLT

func SecurityGroupLT(v string) predicate.Stack

SecurityGroupLT applies the LT predicate on the "security_group" field.

func SecurityGroupLTE

func SecurityGroupLTE(v string) predicate.Stack

SecurityGroupLTE applies the LTE predicate on the "security_group" field.

func SecurityGroupNEQ

func SecurityGroupNEQ(v string) predicate.Stack

SecurityGroupNEQ applies the NEQ predicate on the "security_group" field.

func SecurityGroupNotIn

func SecurityGroupNotIn(vs ...string) predicate.Stack

SecurityGroupNotIn applies the NotIn predicate on the "security_group" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Stack

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Stack

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Stack

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Stack

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Stack

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Stack

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Stack

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

func UpdatedAtNotIn

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

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func Username

func Username(v string) predicate.Stack

Username applies equality check predicate on the "username" field. It's identical to UsernameEQ.

func UsernameContains

func UsernameContains(v string) predicate.Stack

UsernameContains applies the Contains predicate on the "username" field.

func UsernameContainsFold

func UsernameContainsFold(v string) predicate.Stack

UsernameContainsFold applies the ContainsFold predicate on the "username" field.

func UsernameEQ

func UsernameEQ(v string) predicate.Stack

UsernameEQ applies the EQ predicate on the "username" field.

func UsernameEqualFold

func UsernameEqualFold(v string) predicate.Stack

UsernameEqualFold applies the EqualFold predicate on the "username" field.

func UsernameGT

func UsernameGT(v string) predicate.Stack

UsernameGT applies the GT predicate on the "username" field.

func UsernameGTE

func UsernameGTE(v string) predicate.Stack

UsernameGTE applies the GTE predicate on the "username" field.

func UsernameHasPrefix

func UsernameHasPrefix(v string) predicate.Stack

UsernameHasPrefix applies the HasPrefix predicate on the "username" field.

func UsernameHasSuffix

func UsernameHasSuffix(v string) predicate.Stack

UsernameHasSuffix applies the HasSuffix predicate on the "username" field.

func UsernameIn

func UsernameIn(vs ...string) predicate.Stack

UsernameIn applies the In predicate on the "username" field.

func UsernameLT

func UsernameLT(v string) predicate.Stack

UsernameLT applies the LT predicate on the "username" field.

func UsernameLTE

func UsernameLTE(v string) predicate.Stack

UsernameLTE applies the LTE predicate on the "username" field.

func UsernameNEQ

func UsernameNEQ(v string) predicate.Stack

UsernameNEQ applies the NEQ predicate on the "username" field.

func UsernameNotIn

func UsernameNotIn(vs ...string) predicate.Stack

UsernameNotIn applies the NotIn predicate on the "username" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

func VpcID

func VpcID(v string) predicate.Stack

VpcID applies equality check predicate on the "vpc_id" field. It's identical to VpcIDEQ.

func VpcIDContains

func VpcIDContains(v string) predicate.Stack

VpcIDContains applies the Contains predicate on the "vpc_id" field.

func VpcIDContainsFold

func VpcIDContainsFold(v string) predicate.Stack

VpcIDContainsFold applies the ContainsFold predicate on the "vpc_id" field.

func VpcIDEQ

func VpcIDEQ(v string) predicate.Stack

VpcIDEQ applies the EQ predicate on the "vpc_id" field.

func VpcIDEqualFold

func VpcIDEqualFold(v string) predicate.Stack

VpcIDEqualFold applies the EqualFold predicate on the "vpc_id" field.

func VpcIDGT

func VpcIDGT(v string) predicate.Stack

VpcIDGT applies the GT predicate on the "vpc_id" field.

func VpcIDGTE

func VpcIDGTE(v string) predicate.Stack

VpcIDGTE applies the GTE predicate on the "vpc_id" field.

func VpcIDHasPrefix

func VpcIDHasPrefix(v string) predicate.Stack

VpcIDHasPrefix applies the HasPrefix predicate on the "vpc_id" field.

func VpcIDHasSuffix

func VpcIDHasSuffix(v string) predicate.Stack

VpcIDHasSuffix applies the HasSuffix predicate on the "vpc_id" field.

func VpcIDIn

func VpcIDIn(vs ...string) predicate.Stack

VpcIDIn applies the In predicate on the "vpc_id" field.

func VpcIDLT

func VpcIDLT(v string) predicate.Stack

VpcIDLT applies the LT predicate on the "vpc_id" field.

func VpcIDLTE

func VpcIDLTE(v string) predicate.Stack

VpcIDLTE applies the LTE predicate on the "vpc_id" field.

func VpcIDNEQ

func VpcIDNEQ(v string) predicate.Stack

VpcIDNEQ applies the NEQ predicate on the "vpc_id" field.

func VpcIDNotIn

func VpcIDNotIn(vs ...string) predicate.Stack

VpcIDNotIn applies the NotIn predicate on the "vpc_id" field.

Types

This section is empty.

Jump to

Keyboard shortcuts

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