Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Environment) predicate.Environment
- func AnnotationsIsNil() predicate.Environment
- func AnnotationsNotNil() predicate.Environment
- func CreateTime(v time.Time) predicate.Environment
- func CreateTimeEQ(v time.Time) predicate.Environment
- func CreateTimeGT(v time.Time) predicate.Environment
- func CreateTimeGTE(v time.Time) predicate.Environment
- func CreateTimeIn(vs ...time.Time) predicate.Environment
- func CreateTimeLT(v time.Time) predicate.Environment
- func CreateTimeLTE(v time.Time) predicate.Environment
- func CreateTimeNEQ(v time.Time) predicate.Environment
- func CreateTimeNotIn(vs ...time.Time) predicate.Environment
- func Description(v string) predicate.Environment
- func DescriptionContains(v string) predicate.Environment
- func DescriptionContainsFold(v string) predicate.Environment
- func DescriptionEQ(v string) predicate.Environment
- func DescriptionEqualFold(v string) predicate.Environment
- func DescriptionGT(v string) predicate.Environment
- func DescriptionGTE(v string) predicate.Environment
- func DescriptionHasPrefix(v string) predicate.Environment
- func DescriptionHasSuffix(v string) predicate.Environment
- func DescriptionIn(vs ...string) predicate.Environment
- func DescriptionIsNil() predicate.Environment
- func DescriptionLT(v string) predicate.Environment
- func DescriptionLTE(v string) predicate.Environment
- func DescriptionNEQ(v string) predicate.Environment
- func DescriptionNotIn(vs ...string) predicate.Environment
- func DescriptionNotNil() predicate.Environment
- func HasConnectors() predicate.Environment
- func HasConnectorsWith(preds ...predicate.EnvironmentConnectorRelationship) predicate.Environment
- func HasProject() predicate.Environment
- func HasProjectWith(preds ...predicate.Project) predicate.Environment
- func HasServiceResources() predicate.Environment
- func HasServiceResourcesWith(preds ...predicate.ServiceResource) predicate.Environment
- func HasServiceRevisions() predicate.Environment
- func HasServiceRevisionsWith(preds ...predicate.ServiceRevision) predicate.Environment
- func HasServices() predicate.Environment
- func HasServicesWith(preds ...predicate.Service) predicate.Environment
- func HasVariables() predicate.Environment
- func HasVariablesWith(preds ...predicate.Variable) predicate.Environment
- func ID(id object.ID) predicate.Environment
- func IDEQ(id object.ID) predicate.Environment
- func IDGT(id object.ID) predicate.Environment
- func IDGTE(id object.ID) predicate.Environment
- func IDIn(ids ...object.ID) predicate.Environment
- func IDLT(id object.ID) predicate.Environment
- func IDLTE(id object.ID) predicate.Environment
- func IDNEQ(id object.ID) predicate.Environment
- func IDNotIn(ids ...object.ID) predicate.Environment
- func LabelsIsNil() predicate.Environment
- func LabelsNotNil() predicate.Environment
- func Name(v string) predicate.Environment
- func NameContains(v string) predicate.Environment
- func NameContainsFold(v string) predicate.Environment
- func NameEQ(v string) predicate.Environment
- func NameEqualFold(v string) predicate.Environment
- func NameGT(v string) predicate.Environment
- func NameGTE(v string) predicate.Environment
- func NameHasPrefix(v string) predicate.Environment
- func NameHasSuffix(v string) predicate.Environment
- func NameIn(vs ...string) predicate.Environment
- func NameLT(v string) predicate.Environment
- func NameLTE(v string) predicate.Environment
- func NameNEQ(v string) predicate.Environment
- func NameNotIn(vs ...string) predicate.Environment
- func Not(p predicate.Environment) predicate.Environment
- func Or(predicates ...predicate.Environment) predicate.Environment
- func ProjectID(v object.ID) predicate.Environment
- func ProjectIDContains(v object.ID) predicate.Environment
- func ProjectIDContainsFold(v object.ID) predicate.Environment
- func ProjectIDEQ(v object.ID) predicate.Environment
- func ProjectIDEqualFold(v object.ID) predicate.Environment
- func ProjectIDGT(v object.ID) predicate.Environment
- func ProjectIDGTE(v object.ID) predicate.Environment
- func ProjectIDHasPrefix(v object.ID) predicate.Environment
- func ProjectIDHasSuffix(v object.ID) predicate.Environment
- func ProjectIDIn(vs ...object.ID) predicate.Environment
- func ProjectIDLT(v object.ID) predicate.Environment
- func ProjectIDLTE(v object.ID) predicate.Environment
- func ProjectIDNEQ(v object.ID) predicate.Environment
- func ProjectIDNotIn(vs ...object.ID) predicate.Environment
- func UpdateTime(v time.Time) predicate.Environment
- func UpdateTimeEQ(v time.Time) predicate.Environment
- func UpdateTimeGT(v time.Time) predicate.Environment
- func UpdateTimeGTE(v time.Time) predicate.Environment
- func UpdateTimeIn(vs ...time.Time) predicate.Environment
- func UpdateTimeLT(v time.Time) predicate.Environment
- func UpdateTimeLTE(v time.Time) predicate.Environment
- func UpdateTimeNEQ(v time.Time) predicate.Environment
- func UpdateTimeNotIn(vs ...time.Time) predicate.Environment
- func ValidColumn(column string) bool
- func WithoutFields(ignores ...string) []string
- type OrderOption
- func ByConnectors(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByConnectorsCount(opts ...sql.OrderTermOption) OrderOption
- func ByCreateTime(opts ...sql.OrderTermOption) OrderOption
- func ByDescription(opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByName(opts ...sql.OrderTermOption) OrderOption
- func ByProjectField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByProjectID(opts ...sql.OrderTermOption) OrderOption
- func ByServiceResources(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByServiceResourcesCount(opts ...sql.OrderTermOption) OrderOption
- func ByServiceRevisions(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByServiceRevisionsCount(opts ...sql.OrderTermOption) OrderOption
- func ByServices(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByServicesCount(opts ...sql.OrderTermOption) OrderOption
- func ByUpdateTime(opts ...sql.OrderTermOption) OrderOption
- func ByVariables(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByVariablesCount(opts ...sql.OrderTermOption) OrderOption
Constants ¶
const ( // Label holds the string label denoting the environment type in the database. Label = "environment" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldDescription holds the string denoting the description field in the database. FieldDescription = "description" // FieldLabels holds the string denoting the labels field in the database. FieldLabels = "labels" // FieldAnnotations holds the string denoting the annotations field in the database. FieldAnnotations = "annotations" // FieldCreateTime holds the string denoting the create_time field in the database. FieldCreateTime = "create_time" // FieldUpdateTime holds the string denoting the update_time field in the database. FieldUpdateTime = "update_time" // FieldProjectID holds the string denoting the project_id field in the database. FieldProjectID = "project_id" // EdgeProject holds the string denoting the project edge name in mutations. EdgeProject = "project" // EdgeConnectors holds the string denoting the connectors edge name in mutations. EdgeConnectors = "connectors" // EdgeServices holds the string denoting the services edge name in mutations. EdgeServices = "services" // EdgeServiceRevisions holds the string denoting the service_revisions edge name in mutations. EdgeServiceRevisions = "service_revisions" // EdgeServiceResources holds the string denoting the service_resources edge name in mutations. EdgeServiceResources = "service_resources" // EdgeVariables holds the string denoting the variables edge name in mutations. EdgeVariables = "variables" // Table holds the table name of the environment in the database. Table = "environments" // ProjectTable is the table that holds the project relation/edge. ProjectTable = "environments" // ProjectInverseTable is the table name for the Project entity. // It exists in this package in order to avoid circular dependency with the "project" package. ProjectInverseTable = "projects" // ProjectColumn is the table column denoting the project relation/edge. ProjectColumn = "project_id" // ConnectorsTable is the table that holds the connectors relation/edge. ConnectorsTable = "environment_connector_relationships" // ConnectorsInverseTable is the table name for the EnvironmentConnectorRelationship entity. // It exists in this package in order to avoid circular dependency with the "environmentconnectorrelationship" package. ConnectorsInverseTable = "environment_connector_relationships" // ConnectorsColumn is the table column denoting the connectors relation/edge. ConnectorsColumn = "environment_id" // ServicesTable is the table that holds the services relation/edge. ServicesTable = "services" // ServicesInverseTable is the table name for the Service entity. // It exists in this package in order to avoid circular dependency with the "service" package. ServicesInverseTable = "services" // ServicesColumn is the table column denoting the services relation/edge. ServicesColumn = "environment_id" // ServiceRevisionsTable is the table that holds the service_revisions relation/edge. ServiceRevisionsTable = "service_revisions" // ServiceRevisionsInverseTable is the table name for the ServiceRevision entity. // It exists in this package in order to avoid circular dependency with the "servicerevision" package. ServiceRevisionsInverseTable = "service_revisions" // ServiceRevisionsColumn is the table column denoting the service_revisions relation/edge. ServiceRevisionsColumn = "environment_id" // ServiceResourcesTable is the table that holds the service_resources relation/edge. ServiceResourcesTable = "service_resources" // ServiceResourcesInverseTable is the table name for the ServiceResource entity. // It exists in this package in order to avoid circular dependency with the "serviceresource" package. ServiceResourcesInverseTable = "service_resources" // ServiceResourcesColumn is the table column denoting the service_resources relation/edge. ServiceResourcesColumn = "environment_id" // VariablesTable is the table that holds the variables relation/edge. VariablesTable = "variables" // VariablesInverseTable is the table name for the Variable entity. // It exists in this package in order to avoid circular dependency with the "variable" package. VariablesInverseTable = "variables" // VariablesColumn is the table column denoting the variables relation/edge. VariablesColumn = "environment_id" )
Variables ¶
var ( Hooks [1]ent.Hook Interceptors [1]ent.Interceptor // NameValidator is a validator for the "name" field. It is called by the builders before save. NameValidator func(string) error // DefaultLabels holds the default value on creation for the "labels" field. DefaultLabels map[string]string // DefaultAnnotations holds the default value on creation for the "annotations" field. DefaultAnnotations map[string]string // DefaultCreateTime holds the default value on creation for the "create_time" field. DefaultCreateTime func() time.Time // DefaultUpdateTime holds the default value on creation for the "update_time" field. DefaultUpdateTime func() time.Time // UpdateDefaultUpdateTime holds the default value on update for the "update_time" field. UpdateDefaultUpdateTime func() time.Time // ProjectIDValidator is a validator for the "project_id" field. It is called by the builders before save. ProjectIDValidator func(string) error )
Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:
import _ "github.com/seal-io/walrus/pkg/dao/model/runtime"
var Columns = []string{ FieldID, FieldName, FieldDescription, FieldLabels, FieldAnnotations, FieldCreateTime, FieldUpdateTime, FieldProjectID, }
Columns holds all SQL columns for environment fields.
Functions ¶
func And ¶
func And(predicates ...predicate.Environment) predicate.Environment
And groups predicates with the AND operator between them.
func AnnotationsIsNil ¶
func AnnotationsIsNil() predicate.Environment
AnnotationsIsNil applies the IsNil predicate on the "annotations" field.
func AnnotationsNotNil ¶
func AnnotationsNotNil() predicate.Environment
AnnotationsNotNil applies the NotNil predicate on the "annotations" field.
func CreateTime ¶
func CreateTime(v time.Time) predicate.Environment
CreateTime applies equality check predicate on the "create_time" field. It's identical to CreateTimeEQ.
func CreateTimeEQ ¶
func CreateTimeEQ(v time.Time) predicate.Environment
CreateTimeEQ applies the EQ predicate on the "create_time" field.
func CreateTimeGT ¶
func CreateTimeGT(v time.Time) predicate.Environment
CreateTimeGT applies the GT predicate on the "create_time" field.
func CreateTimeGTE ¶
func CreateTimeGTE(v time.Time) predicate.Environment
CreateTimeGTE applies the GTE predicate on the "create_time" field.
func CreateTimeIn ¶
func CreateTimeIn(vs ...time.Time) predicate.Environment
CreateTimeIn applies the In predicate on the "create_time" field.
func CreateTimeLT ¶
func CreateTimeLT(v time.Time) predicate.Environment
CreateTimeLT applies the LT predicate on the "create_time" field.
func CreateTimeLTE ¶
func CreateTimeLTE(v time.Time) predicate.Environment
CreateTimeLTE applies the LTE predicate on the "create_time" field.
func CreateTimeNEQ ¶
func CreateTimeNEQ(v time.Time) predicate.Environment
CreateTimeNEQ applies the NEQ predicate on the "create_time" field.
func CreateTimeNotIn ¶
func CreateTimeNotIn(vs ...time.Time) predicate.Environment
CreateTimeNotIn applies the NotIn predicate on the "create_time" field.
func Description ¶
func Description(v string) predicate.Environment
Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.
func DescriptionContains ¶
func DescriptionContains(v string) predicate.Environment
DescriptionContains applies the Contains predicate on the "description" field.
func DescriptionContainsFold ¶
func DescriptionContainsFold(v string) predicate.Environment
DescriptionContainsFold applies the ContainsFold predicate on the "description" field.
func DescriptionEQ ¶
func DescriptionEQ(v string) predicate.Environment
DescriptionEQ applies the EQ predicate on the "description" field.
func DescriptionEqualFold ¶
func DescriptionEqualFold(v string) predicate.Environment
DescriptionEqualFold applies the EqualFold predicate on the "description" field.
func DescriptionGT ¶
func DescriptionGT(v string) predicate.Environment
DescriptionGT applies the GT predicate on the "description" field.
func DescriptionGTE ¶
func DescriptionGTE(v string) predicate.Environment
DescriptionGTE applies the GTE predicate on the "description" field.
func DescriptionHasPrefix ¶
func DescriptionHasPrefix(v string) predicate.Environment
DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.
func DescriptionHasSuffix ¶
func DescriptionHasSuffix(v string) predicate.Environment
DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.
func DescriptionIn ¶
func DescriptionIn(vs ...string) predicate.Environment
DescriptionIn applies the In predicate on the "description" field.
func DescriptionIsNil ¶
func DescriptionIsNil() predicate.Environment
DescriptionIsNil applies the IsNil predicate on the "description" field.
func DescriptionLT ¶
func DescriptionLT(v string) predicate.Environment
DescriptionLT applies the LT predicate on the "description" field.
func DescriptionLTE ¶
func DescriptionLTE(v string) predicate.Environment
DescriptionLTE applies the LTE predicate on the "description" field.
func DescriptionNEQ ¶
func DescriptionNEQ(v string) predicate.Environment
DescriptionNEQ applies the NEQ predicate on the "description" field.
func DescriptionNotIn ¶
func DescriptionNotIn(vs ...string) predicate.Environment
DescriptionNotIn applies the NotIn predicate on the "description" field.
func DescriptionNotNil ¶
func DescriptionNotNil() predicate.Environment
DescriptionNotNil applies the NotNil predicate on the "description" field.
func HasConnectors ¶
func HasConnectors() predicate.Environment
HasConnectors applies the HasEdge predicate on the "connectors" edge.
func HasConnectorsWith ¶
func HasConnectorsWith(preds ...predicate.EnvironmentConnectorRelationship) predicate.Environment
HasConnectorsWith applies the HasEdge predicate on the "connectors" edge with a given conditions (other predicates).
func HasProject ¶
func HasProject() predicate.Environment
HasProject applies the HasEdge predicate on the "project" edge.
func HasProjectWith ¶
func HasProjectWith(preds ...predicate.Project) predicate.Environment
HasProjectWith applies the HasEdge predicate on the "project" edge with a given conditions (other predicates).
func HasServiceResources ¶
func HasServiceResources() predicate.Environment
HasServiceResources applies the HasEdge predicate on the "service_resources" edge.
func HasServiceResourcesWith ¶
func HasServiceResourcesWith(preds ...predicate.ServiceResource) predicate.Environment
HasServiceResourcesWith applies the HasEdge predicate on the "service_resources" edge with a given conditions (other predicates).
func HasServiceRevisions ¶
func HasServiceRevisions() predicate.Environment
HasServiceRevisions applies the HasEdge predicate on the "service_revisions" edge.
func HasServiceRevisionsWith ¶
func HasServiceRevisionsWith(preds ...predicate.ServiceRevision) predicate.Environment
HasServiceRevisionsWith applies the HasEdge predicate on the "service_revisions" edge with a given conditions (other predicates).
func HasServices ¶
func HasServices() predicate.Environment
HasServices applies the HasEdge predicate on the "services" edge.
func HasServicesWith ¶
func HasServicesWith(preds ...predicate.Service) predicate.Environment
HasServicesWith applies the HasEdge predicate on the "services" edge with a given conditions (other predicates).
func HasVariables ¶
func HasVariables() predicate.Environment
HasVariables applies the HasEdge predicate on the "variables" edge.
func HasVariablesWith ¶
func HasVariablesWith(preds ...predicate.Variable) predicate.Environment
HasVariablesWith applies the HasEdge predicate on the "variables" edge with a given conditions (other predicates).
func IDEQ ¶
func IDEQ(id object.ID) predicate.Environment
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id object.ID) predicate.Environment
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id object.ID) predicate.Environment
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...object.ID) predicate.Environment
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id object.ID) predicate.Environment
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id object.ID) predicate.Environment
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id object.ID) predicate.Environment
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...object.ID) predicate.Environment
IDNotIn applies the NotIn predicate on the ID field.
func LabelsIsNil ¶
func LabelsIsNil() predicate.Environment
LabelsIsNil applies the IsNil predicate on the "labels" field.
func LabelsNotNil ¶
func LabelsNotNil() predicate.Environment
LabelsNotNil applies the NotNil predicate on the "labels" field.
func Name ¶
func Name(v string) predicate.Environment
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.Environment
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.Environment
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.Environment
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.Environment
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.Environment
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.Environment
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.Environment
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.Environment
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.Environment
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.Environment
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.Environment
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.Environment
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.Environment
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.Environment) predicate.Environment
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.Environment) predicate.Environment
Or groups predicates with the OR operator between them.
func ProjectID ¶
func ProjectID(v object.ID) predicate.Environment
ProjectID applies equality check predicate on the "project_id" field. It's identical to ProjectIDEQ.
func ProjectIDContains ¶
func ProjectIDContains(v object.ID) predicate.Environment
ProjectIDContains applies the Contains predicate on the "project_id" field.
func ProjectIDContainsFold ¶
func ProjectIDContainsFold(v object.ID) predicate.Environment
ProjectIDContainsFold applies the ContainsFold predicate on the "project_id" field.
func ProjectIDEQ ¶
func ProjectIDEQ(v object.ID) predicate.Environment
ProjectIDEQ applies the EQ predicate on the "project_id" field.
func ProjectIDEqualFold ¶
func ProjectIDEqualFold(v object.ID) predicate.Environment
ProjectIDEqualFold applies the EqualFold predicate on the "project_id" field.
func ProjectIDGT ¶
func ProjectIDGT(v object.ID) predicate.Environment
ProjectIDGT applies the GT predicate on the "project_id" field.
func ProjectIDGTE ¶
func ProjectIDGTE(v object.ID) predicate.Environment
ProjectIDGTE applies the GTE predicate on the "project_id" field.
func ProjectIDHasPrefix ¶
func ProjectIDHasPrefix(v object.ID) predicate.Environment
ProjectIDHasPrefix applies the HasPrefix predicate on the "project_id" field.
func ProjectIDHasSuffix ¶
func ProjectIDHasSuffix(v object.ID) predicate.Environment
ProjectIDHasSuffix applies the HasSuffix predicate on the "project_id" field.
func ProjectIDIn ¶
func ProjectIDIn(vs ...object.ID) predicate.Environment
ProjectIDIn applies the In predicate on the "project_id" field.
func ProjectIDLT ¶
func ProjectIDLT(v object.ID) predicate.Environment
ProjectIDLT applies the LT predicate on the "project_id" field.
func ProjectIDLTE ¶
func ProjectIDLTE(v object.ID) predicate.Environment
ProjectIDLTE applies the LTE predicate on the "project_id" field.
func ProjectIDNEQ ¶
func ProjectIDNEQ(v object.ID) predicate.Environment
ProjectIDNEQ applies the NEQ predicate on the "project_id" field.
func ProjectIDNotIn ¶
func ProjectIDNotIn(vs ...object.ID) predicate.Environment
ProjectIDNotIn applies the NotIn predicate on the "project_id" field.
func UpdateTime ¶
func UpdateTime(v time.Time) predicate.Environment
UpdateTime applies equality check predicate on the "update_time" field. It's identical to UpdateTimeEQ.
func UpdateTimeEQ ¶
func UpdateTimeEQ(v time.Time) predicate.Environment
UpdateTimeEQ applies the EQ predicate on the "update_time" field.
func UpdateTimeGT ¶
func UpdateTimeGT(v time.Time) predicate.Environment
UpdateTimeGT applies the GT predicate on the "update_time" field.
func UpdateTimeGTE ¶
func UpdateTimeGTE(v time.Time) predicate.Environment
UpdateTimeGTE applies the GTE predicate on the "update_time" field.
func UpdateTimeIn ¶
func UpdateTimeIn(vs ...time.Time) predicate.Environment
UpdateTimeIn applies the In predicate on the "update_time" field.
func UpdateTimeLT ¶
func UpdateTimeLT(v time.Time) predicate.Environment
UpdateTimeLT applies the LT predicate on the "update_time" field.
func UpdateTimeLTE ¶
func UpdateTimeLTE(v time.Time) predicate.Environment
UpdateTimeLTE applies the LTE predicate on the "update_time" field.
func UpdateTimeNEQ ¶
func UpdateTimeNEQ(v time.Time) predicate.Environment
UpdateTimeNEQ applies the NEQ predicate on the "update_time" field.
func UpdateTimeNotIn ¶
func UpdateTimeNotIn(vs ...time.Time) predicate.Environment
UpdateTimeNotIn applies the NotIn predicate on the "update_time" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
func WithoutFields ¶
WithoutFields returns the fields ignored the given list.
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the Environment queries.
func ByConnectors ¶
func ByConnectors(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByConnectors orders the results by connectors terms.
func ByConnectorsCount ¶
func ByConnectorsCount(opts ...sql.OrderTermOption) OrderOption
ByConnectorsCount orders the results by connectors count.
func ByCreateTime ¶
func ByCreateTime(opts ...sql.OrderTermOption) OrderOption
ByCreateTime orders the results by the create_time field.
func ByDescription ¶
func ByDescription(opts ...sql.OrderTermOption) OrderOption
ByDescription orders the results by the description field.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByName ¶
func ByName(opts ...sql.OrderTermOption) OrderOption
ByName orders the results by the name field.
func ByProjectField ¶
func ByProjectField(field string, opts ...sql.OrderTermOption) OrderOption
ByProjectField orders the results by project field.
func ByProjectID ¶
func ByProjectID(opts ...sql.OrderTermOption) OrderOption
ByProjectID orders the results by the project_id field.
func ByServiceResources ¶
func ByServiceResources(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByServiceResources orders the results by service_resources terms.
func ByServiceResourcesCount ¶
func ByServiceResourcesCount(opts ...sql.OrderTermOption) OrderOption
ByServiceResourcesCount orders the results by service_resources count.
func ByServiceRevisions ¶
func ByServiceRevisions(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByServiceRevisions orders the results by service_revisions terms.
func ByServiceRevisionsCount ¶
func ByServiceRevisionsCount(opts ...sql.OrderTermOption) OrderOption
ByServiceRevisionsCount orders the results by service_revisions count.
func ByServices ¶
func ByServices(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByServices orders the results by services terms.
func ByServicesCount ¶
func ByServicesCount(opts ...sql.OrderTermOption) OrderOption
ByServicesCount orders the results by services count.
func ByUpdateTime ¶
func ByUpdateTime(opts ...sql.OrderTermOption) OrderOption
ByUpdateTime orders the results by the update_time field.
func ByVariables ¶
func ByVariables(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByVariables orders the results by variables terms.
func ByVariablesCount ¶
func ByVariablesCount(opts ...sql.OrderTermOption) OrderOption
ByVariablesCount orders the results by variables count.