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 DescriptionIsNil() 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 DescriptionNotNil() predicate.Deployment
- func HasBlueprint() predicate.Deployment
- func HasBlueprintWith(preds ...predicate.Blueprint) 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 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 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 ByDescription(opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByName(opts ...sql.OrderTermOption) OrderOption
- func ByRequesterField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
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" // 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" // FieldTemplateVars holds the string denoting the template_vars field in the database. FieldTemplateVars = "template_vars" // FieldDeploymentVars holds the string denoting the deployment_vars field in the database. FieldDeploymentVars = "deployment_vars" // FieldDeploymentState holds the string denoting the deployment_state field in the database. FieldDeploymentState = "deployment_state" // EdgeBlueprint holds the string denoting the blueprint edge name in mutations. EdgeBlueprint = "blueprint" // EdgeRequester holds the string denoting the requester edge name in mutations. EdgeRequester = "requester" // 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" // 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" )
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 // DefaultDescription holds the default value on creation for the "description" field. DefaultDescription string // DefaultTemplateVars holds the default value on creation for the "template_vars" field. DefaultTemplateVars map[string]interface{} // DefaultDeploymentVars holds the default value on creation for the "deployment_vars" field. DefaultDeploymentVars map[string]interface{} // DefaultDeploymentState holds the default value on creation for the "deployment_state" field. DefaultDeploymentState map[string]string // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID )
var Columns = []string{ FieldID, FieldCreatedAt, FieldUpdatedAt, FieldName, FieldDescription, FieldTemplateVars, FieldDeploymentVars, FieldDeploymentState, }
Columns holds all SQL columns for deployment fields.
var ForeignKeys = []string{
"deployment_blueprint",
"deployment_requester",
}
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 DescriptionIsNil ¶
func DescriptionIsNil() predicate.Deployment
DescriptionIsNil applies the IsNil 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 DescriptionNotNil ¶
func DescriptionNotNil() predicate.Deployment
DescriptionNotNil applies the NotNil predicate on the "description" 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 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 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 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 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 ByRequesterField ¶
func ByRequesterField(field string, opts ...sql.OrderTermOption) OrderOption
ByRequesterField orders the results by requester field.
func ByUpdatedAt ¶
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
ByUpdatedAt orders the results by the updated_at field.