Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Deployment) predicate.Deployment
- func CreatedAt(v time.Time) predicate.Deployment
- func CreatedAtEQ(v time.Time) predicate.Deployment
- func CreatedAtGT(v time.Time) predicate.Deployment
- func CreatedAtGTE(v time.Time) predicate.Deployment
- func CreatedAtIn(vs ...time.Time) predicate.Deployment
- func CreatedAtLT(v time.Time) predicate.Deployment
- func CreatedAtLTE(v time.Time) predicate.Deployment
- func CreatedAtNEQ(v time.Time) predicate.Deployment
- func CreatedAtNotIn(vs ...time.Time) predicate.Deployment
- func Description(v string) predicate.Deployment
- func DescriptionContains(v string) predicate.Deployment
- func DescriptionContainsFold(v string) predicate.Deployment
- func DescriptionEQ(v string) predicate.Deployment
- func DescriptionEqualFold(v string) predicate.Deployment
- func DescriptionGT(v string) predicate.Deployment
- func DescriptionGTE(v string) predicate.Deployment
- func DescriptionHasPrefix(v string) predicate.Deployment
- func DescriptionHasSuffix(v string) predicate.Deployment
- func DescriptionIn(vs ...string) predicate.Deployment
- func DescriptionLT(v string) predicate.Deployment
- func DescriptionLTE(v string) predicate.Deployment
- func DescriptionNEQ(v string) predicate.Deployment
- func DescriptionNotIn(vs ...string) predicate.Deployment
- func ExpiresAt(v time.Time) predicate.Deployment
- func ExpiresAtEQ(v time.Time) predicate.Deployment
- func ExpiresAtGT(v time.Time) predicate.Deployment
- func ExpiresAtGTE(v time.Time) predicate.Deployment
- func ExpiresAtIn(vs ...time.Time) predicate.Deployment
- func ExpiresAtLT(v time.Time) predicate.Deployment
- func ExpiresAtLTE(v time.Time) predicate.Deployment
- func ExpiresAtNEQ(v time.Time) predicate.Deployment
- func ExpiresAtNotIn(vs ...time.Time) predicate.Deployment
- func HasBlueprint() predicate.Deployment
- func HasBlueprintWith(preds ...predicate.Blueprint) predicate.Deployment
- func HasDeploymentNodes() predicate.Deployment
- func HasDeploymentNodesWith(preds ...predicate.DeploymentNode) predicate.Deployment
- func HasProject() predicate.Deployment
- func HasProjectWith(preds ...predicate.Project) predicate.Deployment
- func HasRequester() predicate.Deployment
- func HasRequesterWith(preds ...predicate.User) predicate.Deployment
- func ID(id uuid.UUID) predicate.Deployment
- func IDEQ(id uuid.UUID) predicate.Deployment
- func IDGT(id uuid.UUID) predicate.Deployment
- func IDGTE(id uuid.UUID) predicate.Deployment
- func IDIn(ids ...uuid.UUID) predicate.Deployment
- func IDLT(id uuid.UUID) predicate.Deployment
- func IDLTE(id uuid.UUID) predicate.Deployment
- func IDNEQ(id uuid.UUID) predicate.Deployment
- func IDNotIn(ids ...uuid.UUID) predicate.Deployment
- func LastAccessed(v time.Time) predicate.Deployment
- func LastAccessedEQ(v time.Time) predicate.Deployment
- func LastAccessedGT(v time.Time) predicate.Deployment
- func LastAccessedGTE(v time.Time) predicate.Deployment
- func LastAccessedIn(vs ...time.Time) predicate.Deployment
- func LastAccessedIsNil() predicate.Deployment
- func LastAccessedLT(v time.Time) predicate.Deployment
- func LastAccessedLTE(v time.Time) predicate.Deployment
- func LastAccessedNEQ(v time.Time) predicate.Deployment
- func LastAccessedNotIn(vs ...time.Time) predicate.Deployment
- func LastAccessedNotNil() predicate.Deployment
- func Name(v string) predicate.Deployment
- func NameContains(v string) predicate.Deployment
- func NameContainsFold(v string) predicate.Deployment
- func NameEQ(v string) predicate.Deployment
- func NameEqualFold(v string) predicate.Deployment
- func NameGT(v string) predicate.Deployment
- func NameGTE(v string) predicate.Deployment
- func NameHasPrefix(v string) predicate.Deployment
- func NameHasSuffix(v string) predicate.Deployment
- func NameIn(vs ...string) predicate.Deployment
- func NameLT(v string) predicate.Deployment
- func NameLTE(v string) predicate.Deployment
- func NameNEQ(v string) predicate.Deployment
- func NameNotIn(vs ...string) predicate.Deployment
- func Not(p predicate.Deployment) predicate.Deployment
- func Or(predicates ...predicate.Deployment) predicate.Deployment
- func StateEQ(v State) predicate.Deployment
- func StateIn(vs ...State) predicate.Deployment
- func StateNEQ(v State) predicate.Deployment
- func StateNotIn(vs ...State) predicate.Deployment
- func StateValidator(s State) error
- func UpdatedAt(v time.Time) predicate.Deployment
- func UpdatedAtEQ(v time.Time) predicate.Deployment
- func UpdatedAtGT(v time.Time) predicate.Deployment
- func UpdatedAtGTE(v time.Time) predicate.Deployment
- func UpdatedAtIn(vs ...time.Time) predicate.Deployment
- func UpdatedAtLT(v time.Time) predicate.Deployment
- func UpdatedAtLTE(v time.Time) predicate.Deployment
- func UpdatedAtNEQ(v time.Time) predicate.Deployment
- func UpdatedAtNotIn(vs ...time.Time) predicate.Deployment
- func ValidColumn(column string) bool
- type OrderOption
- func ByBlueprintField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
- func ByDeploymentNodes(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByDeploymentNodesCount(opts ...sql.OrderTermOption) OrderOption
- func ByDescription(opts ...sql.OrderTermOption) OrderOption
- func ByExpiresAt(opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByLastAccessed(opts ...sql.OrderTermOption) OrderOption
- func ByName(opts ...sql.OrderTermOption) OrderOption
- func ByProjectField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByRequesterField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByState(opts ...sql.OrderTermOption) OrderOption
- func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
- type State
Constants ¶
const ( // Label holds the string label denoting the deployment type in the database. Label = "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" // FieldLastAccessed holds the string denoting the last_accessed field in the database. FieldLastAccessed = "last_accessed" // 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" // FieldState holds the string denoting the state field in the database. FieldState = "state" // FieldTemplateVars holds the string denoting the template_vars field in the database. FieldTemplateVars = "template_vars" // FieldExpiresAt holds the string denoting the expires_at field in the database. FieldExpiresAt = "expires_at" // EdgeBlueprint holds the string denoting the blueprint edge name in mutations. EdgeBlueprint = "blueprint" // EdgeDeploymentNodes holds the string denoting the deployment_nodes edge name in mutations. EdgeDeploymentNodes = "deployment_nodes" // EdgeRequester holds the string denoting the requester edge name in mutations. EdgeRequester = "requester" // EdgeProject holds the string denoting the project edge name in mutations. EdgeProject = "project" // Table holds the table name of the deployment in the database. Table = "deployments" // BlueprintTable is the table that holds the blueprint relation/edge. BlueprintTable = "deployments" // BlueprintInverseTable is the table name for the Blueprint entity. // It exists in this package in order to avoid circular dependency with the "blueprint" package. BlueprintInverseTable = "blueprints" // BlueprintColumn is the table column denoting the blueprint relation/edge. BlueprintColumn = "deployment_blueprint" // DeploymentNodesTable is the table that holds the deployment_nodes relation/edge. DeploymentNodesTable = "deployment_nodes" // DeploymentNodesInverseTable is the table name for the DeploymentNode entity. // It exists in this package in order to avoid circular dependency with the "deploymentnode" package. DeploymentNodesInverseTable = "deployment_nodes" // DeploymentNodesColumn is the table column denoting the deployment_nodes relation/edge. DeploymentNodesColumn = "deployment_node_deployment" // RequesterTable is the table that holds the requester relation/edge. RequesterTable = "deployments" // RequesterInverseTable is the table name for the User entity. // It exists in this package in order to avoid circular dependency with the "user" package. RequesterInverseTable = "users" // RequesterColumn is the table column denoting the requester relation/edge. RequesterColumn = "deployment_requester" // ProjectTable is the table that holds the project relation/edge. ProjectTable = "deployments" // 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 = "deployment_project" )
Variables ¶
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 // DefaultLastAccessed holds the default value on creation for the "last_accessed" field. DefaultLastAccessed func() time.Time // DefaultTemplateVars holds the default value on creation for the "template_vars" field. DefaultTemplateVars map[string]string // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID )
var Columns = []string{ FieldID, FieldCreatedAt, FieldUpdatedAt, FieldLastAccessed, FieldName, FieldDescription, FieldState, FieldTemplateVars, FieldExpiresAt, }
Columns holds all SQL columns for deployment fields.
var ForeignKeys = []string{
"deployment_blueprint",
"deployment_requester",
"deployment_project",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "deployments" table and are not defined as standalone fields in the schema.
Functions ¶
func And ¶
func And(predicates ...predicate.Deployment) predicate.Deployment
And groups predicates with the AND operator between them.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.Deployment
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.Deployment
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.Deployment
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.Deployment
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.Deployment
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.Deployment
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.Deployment
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.Deployment
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.Deployment
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func Description ¶
func Description(v string) predicate.Deployment
Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.
func DescriptionContains ¶
func DescriptionContains(v string) predicate.Deployment
DescriptionContains applies the Contains predicate on the "description" field.
func DescriptionContainsFold ¶
func DescriptionContainsFold(v string) predicate.Deployment
DescriptionContainsFold applies the ContainsFold predicate on the "description" field.
func DescriptionEQ ¶
func DescriptionEQ(v string) predicate.Deployment
DescriptionEQ applies the EQ predicate on the "description" field.
func DescriptionEqualFold ¶
func DescriptionEqualFold(v string) predicate.Deployment
DescriptionEqualFold applies the EqualFold predicate on the "description" field.
func DescriptionGT ¶
func DescriptionGT(v string) predicate.Deployment
DescriptionGT applies the GT predicate on the "description" field.
func DescriptionGTE ¶
func DescriptionGTE(v string) predicate.Deployment
DescriptionGTE applies the GTE predicate on the "description" field.
func DescriptionHasPrefix ¶
func DescriptionHasPrefix(v string) predicate.Deployment
DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.
func DescriptionHasSuffix ¶
func DescriptionHasSuffix(v string) predicate.Deployment
DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.
func DescriptionIn ¶
func DescriptionIn(vs ...string) predicate.Deployment
DescriptionIn applies the In predicate on the "description" field.
func DescriptionLT ¶
func DescriptionLT(v string) predicate.Deployment
DescriptionLT applies the LT predicate on the "description" field.
func DescriptionLTE ¶
func DescriptionLTE(v string) predicate.Deployment
DescriptionLTE applies the LTE predicate on the "description" field.
func DescriptionNEQ ¶
func DescriptionNEQ(v string) predicate.Deployment
DescriptionNEQ applies the NEQ predicate on the "description" field.
func DescriptionNotIn ¶
func DescriptionNotIn(vs ...string) predicate.Deployment
DescriptionNotIn applies the NotIn predicate on the "description" field.
func ExpiresAt ¶
func ExpiresAt(v time.Time) predicate.Deployment
ExpiresAt applies equality check predicate on the "expires_at" field. It's identical to ExpiresAtEQ.
func ExpiresAtEQ ¶
func ExpiresAtEQ(v time.Time) predicate.Deployment
ExpiresAtEQ applies the EQ predicate on the "expires_at" field.
func ExpiresAtGT ¶
func ExpiresAtGT(v time.Time) predicate.Deployment
ExpiresAtGT applies the GT predicate on the "expires_at" field.
func ExpiresAtGTE ¶
func ExpiresAtGTE(v time.Time) predicate.Deployment
ExpiresAtGTE applies the GTE predicate on the "expires_at" field.
func ExpiresAtIn ¶
func ExpiresAtIn(vs ...time.Time) predicate.Deployment
ExpiresAtIn applies the In predicate on the "expires_at" field.
func ExpiresAtLT ¶
func ExpiresAtLT(v time.Time) predicate.Deployment
ExpiresAtLT applies the LT predicate on the "expires_at" field.
func ExpiresAtLTE ¶
func ExpiresAtLTE(v time.Time) predicate.Deployment
ExpiresAtLTE applies the LTE predicate on the "expires_at" field.
func ExpiresAtNEQ ¶
func ExpiresAtNEQ(v time.Time) predicate.Deployment
ExpiresAtNEQ applies the NEQ predicate on the "expires_at" field.
func ExpiresAtNotIn ¶
func ExpiresAtNotIn(vs ...time.Time) predicate.Deployment
ExpiresAtNotIn applies the NotIn predicate on the "expires_at" field.
func HasBlueprint ¶
func HasBlueprint() predicate.Deployment
HasBlueprint applies the HasEdge predicate on the "blueprint" edge.
func HasBlueprintWith ¶
func HasBlueprintWith(preds ...predicate.Blueprint) predicate.Deployment
HasBlueprintWith applies the HasEdge predicate on the "blueprint" edge with a given conditions (other predicates).
func HasDeploymentNodes ¶
func HasDeploymentNodes() predicate.Deployment
HasDeploymentNodes applies the HasEdge predicate on the "deployment_nodes" edge.
func HasDeploymentNodesWith ¶
func HasDeploymentNodesWith(preds ...predicate.DeploymentNode) predicate.Deployment
HasDeploymentNodesWith applies the HasEdge predicate on the "deployment_nodes" edge with a given conditions (other predicates).
func HasProject ¶
func HasProject() predicate.Deployment
HasProject applies the HasEdge predicate on the "project" edge.
func HasProjectWith ¶
func HasProjectWith(preds ...predicate.Project) predicate.Deployment
HasProjectWith applies the HasEdge predicate on the "project" edge with a given conditions (other predicates).
func HasRequester ¶
func HasRequester() predicate.Deployment
HasRequester applies the HasEdge predicate on the "requester" edge.
func HasRequesterWith ¶
func HasRequesterWith(preds ...predicate.User) predicate.Deployment
HasRequesterWith applies the HasEdge predicate on the "requester" edge with a given conditions (other predicates).
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.Deployment
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.Deployment
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.Deployment
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.Deployment
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.Deployment
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.Deployment
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.Deployment
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.Deployment
IDNotIn applies the NotIn predicate on the ID field.
func LastAccessed ¶
func LastAccessed(v time.Time) predicate.Deployment
LastAccessed applies equality check predicate on the "last_accessed" field. It's identical to LastAccessedEQ.
func LastAccessedEQ ¶
func LastAccessedEQ(v time.Time) predicate.Deployment
LastAccessedEQ applies the EQ predicate on the "last_accessed" field.
func LastAccessedGT ¶
func LastAccessedGT(v time.Time) predicate.Deployment
LastAccessedGT applies the GT predicate on the "last_accessed" field.
func LastAccessedGTE ¶
func LastAccessedGTE(v time.Time) predicate.Deployment
LastAccessedGTE applies the GTE predicate on the "last_accessed" field.
func LastAccessedIn ¶
func LastAccessedIn(vs ...time.Time) predicate.Deployment
LastAccessedIn applies the In predicate on the "last_accessed" field.
func LastAccessedIsNil ¶
func LastAccessedIsNil() predicate.Deployment
LastAccessedIsNil applies the IsNil predicate on the "last_accessed" field.
func LastAccessedLT ¶
func LastAccessedLT(v time.Time) predicate.Deployment
LastAccessedLT applies the LT predicate on the "last_accessed" field.
func LastAccessedLTE ¶
func LastAccessedLTE(v time.Time) predicate.Deployment
LastAccessedLTE applies the LTE predicate on the "last_accessed" field.
func LastAccessedNEQ ¶
func LastAccessedNEQ(v time.Time) predicate.Deployment
LastAccessedNEQ applies the NEQ predicate on the "last_accessed" field.
func LastAccessedNotIn ¶
func LastAccessedNotIn(vs ...time.Time) predicate.Deployment
LastAccessedNotIn applies the NotIn predicate on the "last_accessed" field.
func LastAccessedNotNil ¶
func LastAccessedNotNil() predicate.Deployment
LastAccessedNotNil applies the NotNil predicate on the "last_accessed" field.
func Name ¶
func Name(v string) predicate.Deployment
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.Deployment
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.Deployment
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.Deployment
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.Deployment
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.Deployment
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.Deployment
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.Deployment
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.Deployment
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.Deployment
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.Deployment
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.Deployment
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.Deployment
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.Deployment
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.Deployment) predicate.Deployment
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.Deployment) predicate.Deployment
Or groups predicates with the OR operator between them.
func StateEQ ¶
func StateEQ(v State) predicate.Deployment
StateEQ applies the EQ predicate on the "state" field.
func StateIn ¶
func StateIn(vs ...State) predicate.Deployment
StateIn applies the In predicate on the "state" field.
func StateNEQ ¶
func StateNEQ(v State) predicate.Deployment
StateNEQ applies the NEQ predicate on the "state" field.
func StateNotIn ¶
func StateNotIn(vs ...State) predicate.Deployment
StateNotIn applies the NotIn predicate on the "state" field.
func StateValidator ¶
StateValidator is a validator for the "state" field enum values. It is called by the builders before save.
func UpdatedAt ¶
func UpdatedAt(v time.Time) predicate.Deployment
UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
func UpdatedAtEQ ¶
func UpdatedAtEQ(v time.Time) predicate.Deployment
UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
func UpdatedAtGT ¶
func UpdatedAtGT(v time.Time) predicate.Deployment
UpdatedAtGT applies the GT predicate on the "updated_at" field.
func UpdatedAtGTE ¶
func UpdatedAtGTE(v time.Time) predicate.Deployment
UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
func UpdatedAtIn ¶
func UpdatedAtIn(vs ...time.Time) predicate.Deployment
UpdatedAtIn applies the In predicate on the "updated_at" field.
func UpdatedAtLT ¶
func UpdatedAtLT(v time.Time) predicate.Deployment
UpdatedAtLT applies the LT predicate on the "updated_at" field.
func UpdatedAtLTE ¶
func UpdatedAtLTE(v time.Time) predicate.Deployment
UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
func UpdatedAtNEQ ¶
func UpdatedAtNEQ(v time.Time) predicate.Deployment
UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
func UpdatedAtNotIn ¶
func UpdatedAtNotIn(vs ...time.Time) predicate.Deployment
UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the Deployment queries.
func ByBlueprintField ¶
func ByBlueprintField(field string, opts ...sql.OrderTermOption) OrderOption
ByBlueprintField orders the results by blueprint field.
func ByCreatedAt ¶
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at field.
func ByDeploymentNodes ¶
func ByDeploymentNodes(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByDeploymentNodes orders the results by deployment_nodes terms.
func ByDeploymentNodesCount ¶
func ByDeploymentNodesCount(opts ...sql.OrderTermOption) OrderOption
ByDeploymentNodesCount orders the results by deployment_nodes count.
func ByDescription ¶
func ByDescription(opts ...sql.OrderTermOption) OrderOption
ByDescription orders the results by the description field.
func ByExpiresAt ¶
func ByExpiresAt(opts ...sql.OrderTermOption) OrderOption
ByExpiresAt orders the results by the expires_at field.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByLastAccessed ¶
func ByLastAccessed(opts ...sql.OrderTermOption) OrderOption
ByLastAccessed orders the results by the last_accessed 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 ByRequesterField ¶
func ByRequesterField(field string, opts ...sql.OrderTermOption) OrderOption
ByRequesterField orders the results by requester field.
func ByState ¶
func ByState(opts ...sql.OrderTermOption) OrderOption
ByState orders the results by the state field.
func ByUpdatedAt ¶
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
ByUpdatedAt orders the results by the updated_at field.
type State ¶
type State string
State defines the type for the "state" enum field.