deploymentstatus

package
v1.1.0 Latest Latest
Warning

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

Go to latest
Published: May 27, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the deploymentstatus type in the database.
	Label = "deployment_status"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldLogURL holds the string denoting the log_url field in the database.
	FieldLogURL = "log_url"
	// 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"
	// FieldDeploymentID holds the string denoting the deployment_id field in the database.
	FieldDeploymentID = "deployment_id"
	// FieldRepoID holds the string denoting the repo_id field in the database.
	FieldRepoID = "repo_id"
	// EdgeDeployment holds the string denoting the deployment edge name in mutations.
	EdgeDeployment = "deployment"
	// EdgeRepo holds the string denoting the repo edge name in mutations.
	EdgeRepo = "repo"
	// EdgeEvent holds the string denoting the event edge name in mutations.
	EdgeEvent = "event"
	// Table holds the table name of the deploymentstatus in the database.
	Table = "deployment_status"
	// DeploymentTable is the table that holds the deployment relation/edge.
	DeploymentTable = "deployment_status"
	// DeploymentInverseTable is the table name for the Deployment entity.
	// It exists in this package in order to avoid circular dependency with the "deployment" package.
	DeploymentInverseTable = "deployments"
	// DeploymentColumn is the table column denoting the deployment relation/edge.
	DeploymentColumn = "deployment_id"
	// RepoTable is the table that holds the repo relation/edge.
	RepoTable = "deployment_status"
	// RepoInverseTable is the table name for the Repo entity.
	// It exists in this package in order to avoid circular dependency with the "repo" package.
	RepoInverseTable = "repos"
	// RepoColumn is the table column denoting the repo relation/edge.
	RepoColumn = "repo_id"
	// EventTable is the table that holds the event relation/edge.
	EventTable = "events"
	// EventInverseTable is the table name for the Event entity.
	// It exists in this package in order to avoid circular dependency with the "event" package.
	EventInverseTable = "events"
	// EventColumn is the table column denoting the event relation/edge.
	EventColumn = "deployment_status_id"
)

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
)

Columns holds all SQL columns for deploymentstatus fields.

Functions

func And

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.DeploymentStatus

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.DeploymentStatus

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.DeploymentStatus

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.DeploymentStatus

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

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.DeploymentStatus

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.DeploymentStatus

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.DeploymentStatus

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.DeploymentStatus

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

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.DeploymentStatus

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

func DeploymentID

func DeploymentID(v int) predicate.DeploymentStatus

DeploymentID applies equality check predicate on the "deployment_id" field. It's identical to DeploymentIDEQ.

func DeploymentIDEQ

func DeploymentIDEQ(v int) predicate.DeploymentStatus

DeploymentIDEQ applies the EQ predicate on the "deployment_id" field.

func DeploymentIDIn

func DeploymentIDIn(vs ...int) predicate.DeploymentStatus

DeploymentIDIn applies the In predicate on the "deployment_id" field.

func DeploymentIDNEQ

func DeploymentIDNEQ(v int) predicate.DeploymentStatus

DeploymentIDNEQ applies the NEQ predicate on the "deployment_id" field.

func DeploymentIDNotIn

func DeploymentIDNotIn(vs ...int) predicate.DeploymentStatus

DeploymentIDNotIn applies the NotIn predicate on the "deployment_id" field.

func Description

func Description(v string) predicate.DeploymentStatus

Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.

func DescriptionContains

func DescriptionContains(v string) predicate.DeploymentStatus

DescriptionContains applies the Contains predicate on the "description" field.

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.DeploymentStatus

DescriptionContainsFold applies the ContainsFold predicate on the "description" field.

func DescriptionEQ

func DescriptionEQ(v string) predicate.DeploymentStatus

DescriptionEQ applies the EQ predicate on the "description" field.

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.DeploymentStatus

DescriptionEqualFold applies the EqualFold predicate on the "description" field.

func DescriptionGT

func DescriptionGT(v string) predicate.DeploymentStatus

DescriptionGT applies the GT predicate on the "description" field.

func DescriptionGTE

func DescriptionGTE(v string) predicate.DeploymentStatus

DescriptionGTE applies the GTE predicate on the "description" field.

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.DeploymentStatus

DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.DeploymentStatus

DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.

func DescriptionIn

func DescriptionIn(vs ...string) predicate.DeploymentStatus

DescriptionIn applies the In predicate on the "description" field.

func DescriptionIsNil

func DescriptionIsNil() predicate.DeploymentStatus

DescriptionIsNil applies the IsNil predicate on the "description" field.

func DescriptionLT

func DescriptionLT(v string) predicate.DeploymentStatus

DescriptionLT applies the LT predicate on the "description" field.

func DescriptionLTE

func DescriptionLTE(v string) predicate.DeploymentStatus

DescriptionLTE applies the LTE predicate on the "description" field.

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.DeploymentStatus

DescriptionNEQ applies the NEQ predicate on the "description" field.

func DescriptionNotIn

func DescriptionNotIn(vs ...string) predicate.DeploymentStatus

DescriptionNotIn applies the NotIn predicate on the "description" field.

func DescriptionNotNil

func DescriptionNotNil() predicate.DeploymentStatus

DescriptionNotNil applies the NotNil predicate on the "description" field.

func HasDeployment

func HasDeployment() predicate.DeploymentStatus

HasDeployment applies the HasEdge predicate on the "deployment" edge.

func HasDeploymentWith

func HasDeploymentWith(preds ...predicate.Deployment) predicate.DeploymentStatus

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

func HasEvent

func HasEvent() predicate.DeploymentStatus

HasEvent applies the HasEdge predicate on the "event" edge.

func HasEventWith

func HasEventWith(preds ...predicate.Event) predicate.DeploymentStatus

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

func HasRepo

func HasRepo() predicate.DeploymentStatus

HasRepo applies the HasEdge predicate on the "repo" edge.

func HasRepoWith

func HasRepoWith(preds ...predicate.Repo) predicate.DeploymentStatus

HasRepoWith applies the HasEdge predicate on the "repo" 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

func IDGTE(id int) predicate.DeploymentStatus

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.DeploymentStatus

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.DeploymentStatus

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.DeploymentStatus

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.DeploymentStatus

IDNotIn applies the NotIn predicate on the ID field.

func LogURL

LogURL applies equality check predicate on the "log_url" field. It's identical to LogURLEQ.

func LogURLContains

func LogURLContains(v string) predicate.DeploymentStatus

LogURLContains applies the Contains predicate on the "log_url" field.

func LogURLContainsFold

func LogURLContainsFold(v string) predicate.DeploymentStatus

LogURLContainsFold applies the ContainsFold predicate on the "log_url" field.

func LogURLEQ

func LogURLEQ(v string) predicate.DeploymentStatus

LogURLEQ applies the EQ predicate on the "log_url" field.

func LogURLEqualFold

func LogURLEqualFold(v string) predicate.DeploymentStatus

LogURLEqualFold applies the EqualFold predicate on the "log_url" field.

func LogURLGT

func LogURLGT(v string) predicate.DeploymentStatus

LogURLGT applies the GT predicate on the "log_url" field.

func LogURLGTE

func LogURLGTE(v string) predicate.DeploymentStatus

LogURLGTE applies the GTE predicate on the "log_url" field.

func LogURLHasPrefix

func LogURLHasPrefix(v string) predicate.DeploymentStatus

LogURLHasPrefix applies the HasPrefix predicate on the "log_url" field.

func LogURLHasSuffix

func LogURLHasSuffix(v string) predicate.DeploymentStatus

LogURLHasSuffix applies the HasSuffix predicate on the "log_url" field.

func LogURLIn

func LogURLIn(vs ...string) predicate.DeploymentStatus

LogURLIn applies the In predicate on the "log_url" field.

func LogURLIsNil

func LogURLIsNil() predicate.DeploymentStatus

LogURLIsNil applies the IsNil predicate on the "log_url" field.

func LogURLLT

func LogURLLT(v string) predicate.DeploymentStatus

LogURLLT applies the LT predicate on the "log_url" field.

func LogURLLTE

func LogURLLTE(v string) predicate.DeploymentStatus

LogURLLTE applies the LTE predicate on the "log_url" field.

func LogURLNEQ

func LogURLNEQ(v string) predicate.DeploymentStatus

LogURLNEQ applies the NEQ predicate on the "log_url" field.

func LogURLNotIn

func LogURLNotIn(vs ...string) predicate.DeploymentStatus

LogURLNotIn applies the NotIn predicate on the "log_url" field.

func LogURLNotNil

func LogURLNotNil() predicate.DeploymentStatus

LogURLNotNil applies the NotNil predicate on the "log_url" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func RepoID

RepoID applies equality check predicate on the "repo_id" field. It's identical to RepoIDEQ.

func RepoIDEQ

func RepoIDEQ(v int64) predicate.DeploymentStatus

RepoIDEQ applies the EQ predicate on the "repo_id" field.

func RepoIDIn

func RepoIDIn(vs ...int64) predicate.DeploymentStatus

RepoIDIn applies the In predicate on the "repo_id" field.

func RepoIDIsNil

func RepoIDIsNil() predicate.DeploymentStatus

RepoIDIsNil applies the IsNil predicate on the "repo_id" field.

func RepoIDNEQ

func RepoIDNEQ(v int64) predicate.DeploymentStatus

RepoIDNEQ applies the NEQ predicate on the "repo_id" field.

func RepoIDNotIn

func RepoIDNotIn(vs ...int64) predicate.DeploymentStatus

RepoIDNotIn applies the NotIn predicate on the "repo_id" field.

func RepoIDNotNil

func RepoIDNotNil() predicate.DeploymentStatus

RepoIDNotNil applies the NotNil predicate on the "repo_id" field.

func Status

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

func StatusContains

func StatusContains(v string) predicate.DeploymentStatus

StatusContains applies the Contains predicate on the "status" field.

func StatusContainsFold

func StatusContainsFold(v string) predicate.DeploymentStatus

StatusContainsFold applies the ContainsFold predicate on the "status" field.

func StatusEQ

func StatusEQ(v string) predicate.DeploymentStatus

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

func StatusEqualFold

func StatusEqualFold(v string) predicate.DeploymentStatus

StatusEqualFold applies the EqualFold predicate on the "status" field.

func StatusGT

func StatusGT(v string) predicate.DeploymentStatus

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

func StatusGTE

func StatusGTE(v string) predicate.DeploymentStatus

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

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.DeploymentStatus

StatusHasPrefix applies the HasPrefix predicate on the "status" field.

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.DeploymentStatus

StatusHasSuffix applies the HasSuffix predicate on the "status" field.

func StatusIn

func StatusIn(vs ...string) predicate.DeploymentStatus

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

func StatusLT

func StatusLT(v string) predicate.DeploymentStatus

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

func StatusLTE

func StatusLTE(v string) predicate.DeploymentStatus

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

func StatusNEQ

func StatusNEQ(v string) predicate.DeploymentStatus

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

func StatusNotIn

func StatusNotIn(vs ...string) predicate.DeploymentStatus

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

func UpdatedAt

func UpdatedAt(v time.Time) predicate.DeploymentStatus

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.DeploymentStatus

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.DeploymentStatus

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.DeploymentStatus

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

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.DeploymentStatus

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.DeploymentStatus

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.DeploymentStatus

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.DeploymentStatus

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

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.DeploymentStatus

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