flowdeployment

package
v0.0.0-...-19e0465 Latest Latest
Warning

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

Go to latest
Published: May 12, 2022 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the flowdeployment type in the database.
	Label = "flow_deployment"
	// 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"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldFlowDefinitionID holds the string denoting the flow_definition_id field in the database.
	FieldFlowDefinitionID = "flow_definition_id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldModel holds the string denoting the model field in the database.
	FieldModel = "model"
	// FieldRemark holds the string denoting the remark field in the database.
	FieldRemark = "remark"
	// EdgeFlowDefinition holds the string denoting the flow_definition edge name in mutations.
	EdgeFlowDefinition = "flow_definition"
	// EdgeFlowInstances holds the string denoting the flow_instances edge name in mutations.
	EdgeFlowInstances = "flow_instances"
	// Table holds the table name of the flowdeployment in the database.
	Table = "flow_deployments"
	// FlowDefinitionTable is the table that holds the flow_definition relation/edge.
	FlowDefinitionTable = "flow_deployments"
	// FlowDefinitionInverseTable is the table name for the FlowDefinition entity.
	// It exists in this package in order to avoid circular dependency with the "flowdefinition" package.
	FlowDefinitionInverseTable = "flow_definitions"
	// FlowDefinitionColumn is the table column denoting the flow_definition relation/edge.
	FlowDefinitionColumn = "flow_definition_id"
	// FlowInstancesTable is the table that holds the flow_instances relation/edge.
	FlowInstancesTable = "flow_instances"
	// FlowInstancesInverseTable is the table name for the FlowInstance entity.
	// It exists in this package in order to avoid circular dependency with the "flowinstance" package.
	FlowInstancesInverseTable = "flow_instances"
	// FlowInstancesColumn is the table column denoting the flow_instances relation/edge.
	FlowInstancesColumn = "flow_deployment_id"
)

Variables

View Source
var (
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() int64
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() int64
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() int64
	// DefaultDeletedAt holds the default value on creation for the "deleted_at" field.
	DefaultDeletedAt int64
	// FlowDefinitionIDValidator is a validator for the "flow_definition_id" field. It is called by the builders before save.
	FlowDefinitionIDValidator func(string) error
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultStatus holds the default value on creation for the "status" field.
	DefaultStatus int8
	// DefaultRemark holds the default value on creation for the "remark" field.
	DefaultRemark string
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() string
	// IDValidator is a validator for the "id" field. It is called by the builders before save.
	IDValidator func(string) error
)

Columns holds all SQL columns for flowdeployment fields.

Functions

func And

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v int64) predicate.FlowDeployment

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

func CreatedAtEQ

func CreatedAtEQ(v int64) predicate.FlowDeployment

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

func CreatedAtGT

func CreatedAtGT(v int64) predicate.FlowDeployment

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

func CreatedAtGTE

func CreatedAtGTE(v int64) predicate.FlowDeployment

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

func CreatedAtIn

func CreatedAtIn(vs ...int64) predicate.FlowDeployment

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

func CreatedAtLT

func CreatedAtLT(v int64) predicate.FlowDeployment

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

func CreatedAtLTE

func CreatedAtLTE(v int64) predicate.FlowDeployment

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

func CreatedAtNEQ

func CreatedAtNEQ(v int64) predicate.FlowDeployment

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

func CreatedAtNotIn

func CreatedAtNotIn(vs ...int64) predicate.FlowDeployment

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

func DeletedAt

func DeletedAt(v int64) predicate.FlowDeployment

DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.

func DeletedAtEQ

func DeletedAtEQ(v int64) predicate.FlowDeployment

DeletedAtEQ applies the EQ predicate on the "deleted_at" field.

func DeletedAtGT

func DeletedAtGT(v int64) predicate.FlowDeployment

DeletedAtGT applies the GT predicate on the "deleted_at" field.

func DeletedAtGTE

func DeletedAtGTE(v int64) predicate.FlowDeployment

DeletedAtGTE applies the GTE predicate on the "deleted_at" field.

func DeletedAtIn

func DeletedAtIn(vs ...int64) predicate.FlowDeployment

DeletedAtIn applies the In predicate on the "deleted_at" field.

func DeletedAtIsNil

func DeletedAtIsNil() predicate.FlowDeployment

DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.

func DeletedAtLT

func DeletedAtLT(v int64) predicate.FlowDeployment

DeletedAtLT applies the LT predicate on the "deleted_at" field.

func DeletedAtLTE

func DeletedAtLTE(v int64) predicate.FlowDeployment

DeletedAtLTE applies the LTE predicate on the "deleted_at" field.

func DeletedAtNEQ

func DeletedAtNEQ(v int64) predicate.FlowDeployment

DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.

func DeletedAtNotIn

func DeletedAtNotIn(vs ...int64) predicate.FlowDeployment

DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.

func DeletedAtNotNil

func DeletedAtNotNil() predicate.FlowDeployment

DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.

func FlowDefinitionID

func FlowDefinitionID(v string) predicate.FlowDeployment

FlowDefinitionID applies equality check predicate on the "flow_definition_id" field. It's identical to FlowDefinitionIDEQ.

func FlowDefinitionIDContains

func FlowDefinitionIDContains(v string) predicate.FlowDeployment

FlowDefinitionIDContains applies the Contains predicate on the "flow_definition_id" field.

func FlowDefinitionIDContainsFold

func FlowDefinitionIDContainsFold(v string) predicate.FlowDeployment

FlowDefinitionIDContainsFold applies the ContainsFold predicate on the "flow_definition_id" field.

func FlowDefinitionIDEQ

func FlowDefinitionIDEQ(v string) predicate.FlowDeployment

FlowDefinitionIDEQ applies the EQ predicate on the "flow_definition_id" field.

func FlowDefinitionIDEqualFold

func FlowDefinitionIDEqualFold(v string) predicate.FlowDeployment

FlowDefinitionIDEqualFold applies the EqualFold predicate on the "flow_definition_id" field.

func FlowDefinitionIDGT

func FlowDefinitionIDGT(v string) predicate.FlowDeployment

FlowDefinitionIDGT applies the GT predicate on the "flow_definition_id" field.

func FlowDefinitionIDGTE

func FlowDefinitionIDGTE(v string) predicate.FlowDeployment

FlowDefinitionIDGTE applies the GTE predicate on the "flow_definition_id" field.

func FlowDefinitionIDHasPrefix

func FlowDefinitionIDHasPrefix(v string) predicate.FlowDeployment

FlowDefinitionIDHasPrefix applies the HasPrefix predicate on the "flow_definition_id" field.

func FlowDefinitionIDHasSuffix

func FlowDefinitionIDHasSuffix(v string) predicate.FlowDeployment

FlowDefinitionIDHasSuffix applies the HasSuffix predicate on the "flow_definition_id" field.

func FlowDefinitionIDIn

func FlowDefinitionIDIn(vs ...string) predicate.FlowDeployment

FlowDefinitionIDIn applies the In predicate on the "flow_definition_id" field.

func FlowDefinitionIDLT

func FlowDefinitionIDLT(v string) predicate.FlowDeployment

FlowDefinitionIDLT applies the LT predicate on the "flow_definition_id" field.

func FlowDefinitionIDLTE

func FlowDefinitionIDLTE(v string) predicate.FlowDeployment

FlowDefinitionIDLTE applies the LTE predicate on the "flow_definition_id" field.

func FlowDefinitionIDNEQ

func FlowDefinitionIDNEQ(v string) predicate.FlowDeployment

FlowDefinitionIDNEQ applies the NEQ predicate on the "flow_definition_id" field.

func FlowDefinitionIDNotIn

func FlowDefinitionIDNotIn(vs ...string) predicate.FlowDeployment

FlowDefinitionIDNotIn applies the NotIn predicate on the "flow_definition_id" field.

func HasFlowDefinition

func HasFlowDefinition() predicate.FlowDeployment

HasFlowDefinition applies the HasEdge predicate on the "flow_definition" edge.

func HasFlowDefinitionWith

func HasFlowDefinitionWith(preds ...predicate.FlowDefinition) predicate.FlowDeployment

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

func HasFlowInstances

func HasFlowInstances() predicate.FlowDeployment

HasFlowInstances applies the HasEdge predicate on the "flow_instances" edge.

func HasFlowInstancesWith

func HasFlowInstancesWith(preds ...predicate.FlowInstance) predicate.FlowDeployment

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

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 ...string) predicate.FlowDeployment

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 ...string) predicate.FlowDeployment

IDNotIn applies the NotIn predicate on the ID field.

func Name

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

func NameContains

func NameContains(v string) predicate.FlowDeployment

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

func NameContainsFold

func NameContainsFold(v string) predicate.FlowDeployment

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

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

func NameGT

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

func NameGTE

func NameGTE(v string) predicate.FlowDeployment

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.FlowDeployment

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.FlowDeployment

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

func NameIn

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

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

func NameLT

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

func NameLTE

func NameLTE(v string) predicate.FlowDeployment

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

func NameNEQ

func NameNEQ(v string) predicate.FlowDeployment

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

func NameNotIn

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

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 Remark

Remark applies equality check predicate on the "remark" field. It's identical to RemarkEQ.

func RemarkContains

func RemarkContains(v string) predicate.FlowDeployment

RemarkContains applies the Contains predicate on the "remark" field.

func RemarkContainsFold

func RemarkContainsFold(v string) predicate.FlowDeployment

RemarkContainsFold applies the ContainsFold predicate on the "remark" field.

func RemarkEQ

func RemarkEQ(v string) predicate.FlowDeployment

RemarkEQ applies the EQ predicate on the "remark" field.

func RemarkEqualFold

func RemarkEqualFold(v string) predicate.FlowDeployment

RemarkEqualFold applies the EqualFold predicate on the "remark" field.

func RemarkGT

func RemarkGT(v string) predicate.FlowDeployment

RemarkGT applies the GT predicate on the "remark" field.

func RemarkGTE

func RemarkGTE(v string) predicate.FlowDeployment

RemarkGTE applies the GTE predicate on the "remark" field.

func RemarkHasPrefix

func RemarkHasPrefix(v string) predicate.FlowDeployment

RemarkHasPrefix applies the HasPrefix predicate on the "remark" field.

func RemarkHasSuffix

func RemarkHasSuffix(v string) predicate.FlowDeployment

RemarkHasSuffix applies the HasSuffix predicate on the "remark" field.

func RemarkIn

func RemarkIn(vs ...string) predicate.FlowDeployment

RemarkIn applies the In predicate on the "remark" field.

func RemarkIsNil

func RemarkIsNil() predicate.FlowDeployment

RemarkIsNil applies the IsNil predicate on the "remark" field.

func RemarkLT

func RemarkLT(v string) predicate.FlowDeployment

RemarkLT applies the LT predicate on the "remark" field.

func RemarkLTE

func RemarkLTE(v string) predicate.FlowDeployment

RemarkLTE applies the LTE predicate on the "remark" field.

func RemarkNEQ

func RemarkNEQ(v string) predicate.FlowDeployment

RemarkNEQ applies the NEQ predicate on the "remark" field.

func RemarkNotIn

func RemarkNotIn(vs ...string) predicate.FlowDeployment

RemarkNotIn applies the NotIn predicate on the "remark" field.

func RemarkNotNil

func RemarkNotNil() predicate.FlowDeployment

RemarkNotNil applies the NotNil predicate on the "remark" field.

func Status

func Status(v int8) predicate.FlowDeployment

Status applies equality check predicate on the "status" field. It's identical to StatusEQ.

func StatusEQ

func StatusEQ(v int8) predicate.FlowDeployment

StatusEQ applies the EQ predicate on the "status" field.

func StatusGT

func StatusGT(v int8) predicate.FlowDeployment

StatusGT applies the GT predicate on the "status" field.

func StatusGTE

func StatusGTE(v int8) predicate.FlowDeployment

StatusGTE applies the GTE predicate on the "status" field.

func StatusIn

func StatusIn(vs ...int8) predicate.FlowDeployment

StatusIn applies the In predicate on the "status" field.

func StatusLT

func StatusLT(v int8) predicate.FlowDeployment

StatusLT applies the LT predicate on the "status" field.

func StatusLTE

func StatusLTE(v int8) predicate.FlowDeployment

StatusLTE applies the LTE predicate on the "status" field.

func StatusNEQ

func StatusNEQ(v int8) predicate.FlowDeployment

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn

func StatusNotIn(vs ...int8) predicate.FlowDeployment

StatusNotIn applies the NotIn predicate on the "status" field.

func UpdatedAt

func UpdatedAt(v int64) predicate.FlowDeployment

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

func UpdatedAtEQ

func UpdatedAtEQ(v int64) predicate.FlowDeployment

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

func UpdatedAtGT

func UpdatedAtGT(v int64) predicate.FlowDeployment

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

func UpdatedAtGTE

func UpdatedAtGTE(v int64) predicate.FlowDeployment

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

func UpdatedAtIn

func UpdatedAtIn(vs ...int64) predicate.FlowDeployment

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

func UpdatedAtLT

func UpdatedAtLT(v int64) predicate.FlowDeployment

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

func UpdatedAtLTE

func UpdatedAtLTE(v int64) predicate.FlowDeployment

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v int64) predicate.FlowDeployment

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

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...int64) predicate.FlowDeployment

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

This section is empty.

Jump to

Keyboard shortcuts

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