deployment

package
v0.0.0-...-e59a564 Latest Latest
Warning

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

Go to latest
Published: Apr 24, 2024 License: GPL-3.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
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

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
	// 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
)

Columns holds all SQL columns for deployment fields.

View Source
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 ID

ID filters vertices based on their ID field.

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

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

func StateValidator(s State) error

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

func ValidColumn(column string) bool

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

Types

type OrderOption

type OrderOption func(*sql.Selector)

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.

const (
	StateAwaiting   State = "awaiting"
	StateInProgress State = "in_progress"
	StateComplete   State = "complete"
	StateFailed     State = "failed"
	StateDestroyed  State = "destroyed"
	StateSuspended  State = "suspended"
)

State values.

func (State) String

func (s State) String() string

Jump to

Keyboard shortcuts

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