application

package
v0.17.3 Latest Latest
Warning

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

Go to latest
Published: Apr 7, 2026 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the application type in the database.
	Label = "application"
	// 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"
	// FieldDisplayName holds the string denoting the display_name field in the database.
	FieldDisplayName = "display_name"
	// FieldDisplayNameLc holds the string denoting the display_name_lc field in the database.
	FieldDisplayNameLc = "display_name_lc"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// 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"
	// FieldProjectUUID holds the string denoting the project_uuid field in the database.
	FieldProjectUUID = "project_uuid"
	// FieldVersion holds the string denoting the version field in the database.
	FieldVersion = "version"
	// FieldChartName holds the string denoting the chart_name field in the database.
	FieldChartName = "chart_name"
	// FieldChartVersion holds the string denoting the chart_version field in the database.
	FieldChartVersion = "chart_version"
	// FieldKind holds the string denoting the kind field in the database.
	FieldKind = "kind"
	// EdgeProfiles holds the string denoting the profiles edge name in mutations.
	EdgeProfiles = "profiles"
	// EdgeRegistryFk holds the string denoting the registry_fk edge name in mutations.
	EdgeRegistryFk = "registry_fk"
	// EdgeImageRegistryFk holds the string denoting the image_registry_fk edge name in mutations.
	EdgeImageRegistryFk = "image_registry_fk"
	// EdgeDeploymentPackageFk holds the string denoting the deployment_package_fk edge name in mutations.
	EdgeDeploymentPackageFk = "deployment_package_fk"
	// EdgeDependencySourceFk holds the string denoting the dependency_source_fk edge name in mutations.
	EdgeDependencySourceFk = "dependency_source_fk"
	// EdgeDependencyTargetFk holds the string denoting the dependency_target_fk edge name in mutations.
	EdgeDependencyTargetFk = "dependency_target_fk"
	// EdgeDefaultProfile holds the string denoting the default_profile edge name in mutations.
	EdgeDefaultProfile = "default_profile"
	// EdgeIgnoredResources holds the string denoting the ignored_resources edge name in mutations.
	EdgeIgnoredResources = "ignored_resources"
	// Table holds the table name of the application in the database.
	Table = "applications"
	// ProfilesTable is the table that holds the profiles relation/edge.
	ProfilesTable = "profiles"
	// ProfilesInverseTable is the table name for the Profile entity.
	// It exists in this package in order to avoid circular dependency with the "profile" package.
	ProfilesInverseTable = "profiles"
	// ProfilesColumn is the table column denoting the profiles relation/edge.
	ProfilesColumn = "application_profiles"
	// RegistryFkTable is the table that holds the registry_fk relation/edge.
	RegistryFkTable = "applications"
	// RegistryFkInverseTable is the table name for the Registry entity.
	// It exists in this package in order to avoid circular dependency with the "registry" package.
	RegistryFkInverseTable = "registries"
	// RegistryFkColumn is the table column denoting the registry_fk relation/edge.
	RegistryFkColumn = "registry_applications"
	// ImageRegistryFkTable is the table that holds the image_registry_fk relation/edge.
	ImageRegistryFkTable = "applications"
	// ImageRegistryFkInverseTable is the table name for the Registry entity.
	// It exists in this package in order to avoid circular dependency with the "registry" package.
	ImageRegistryFkInverseTable = "registries"
	// ImageRegistryFkColumn is the table column denoting the image_registry_fk relation/edge.
	ImageRegistryFkColumn = "registry_application_images"
	// DeploymentPackageFkTable is the table that holds the deployment_package_fk relation/edge. The primary key declared below.
	DeploymentPackageFkTable = "deployment_package_applications"
	// DeploymentPackageFkInverseTable is the table name for the DeploymentPackage entity.
	// It exists in this package in order to avoid circular dependency with the "deploymentpackage" package.
	DeploymentPackageFkInverseTable = "deployment_packages"
	// DependencySourceFkTable is the table that holds the dependency_source_fk relation/edge.
	DependencySourceFkTable = "application_dependencies"
	// DependencySourceFkInverseTable is the table name for the ApplicationDependency entity.
	// It exists in this package in order to avoid circular dependency with the "applicationdependency" package.
	DependencySourceFkInverseTable = "application_dependencies"
	// DependencySourceFkColumn is the table column denoting the dependency_source_fk relation/edge.
	DependencySourceFkColumn = "application_dependency_source_fk"
	// DependencyTargetFkTable is the table that holds the dependency_target_fk relation/edge.
	DependencyTargetFkTable = "application_dependencies"
	// DependencyTargetFkInverseTable is the table name for the ApplicationDependency entity.
	// It exists in this package in order to avoid circular dependency with the "applicationdependency" package.
	DependencyTargetFkInverseTable = "application_dependencies"
	// DependencyTargetFkColumn is the table column denoting the dependency_target_fk relation/edge.
	DependencyTargetFkColumn = "application_dependency_target_fk"
	// DefaultProfileTable is the table that holds the default_profile relation/edge.
	DefaultProfileTable = "applications"
	// DefaultProfileInverseTable is the table name for the Profile entity.
	// It exists in this package in order to avoid circular dependency with the "profile" package.
	DefaultProfileInverseTable = "profiles"
	// DefaultProfileColumn is the table column denoting the default_profile relation/edge.
	DefaultProfileColumn = "application_default_profile"
	// IgnoredResourcesTable is the table that holds the ignored_resources relation/edge.
	IgnoredResourcesTable = "ignored_resources"
	// IgnoredResourcesInverseTable is the table name for the IgnoredResource entity.
	// It exists in this package in order to avoid circular dependency with the "ignoredresource" package.
	IgnoredResourcesInverseTable = "ignored_resources"
	// IgnoredResourcesColumn is the table column denoting the ignored_resources relation/edge.
	IgnoredResourcesColumn = "application_ignored_resources"
)

Variables

View Source
var (
	// 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
	// DefaultProjectUUID holds the default value on creation for the "project_uuid" field.
	DefaultProjectUUID string
)

Columns holds all SQL columns for application fields.

View Source
var (
	// DeploymentPackageFkPrimaryKey and DeploymentPackageFkColumn2 are the table columns denoting the
	// primary key for the deployment_package_fk relation (M2M).
	DeploymentPackageFkPrimaryKey = []string{"deployment_package_id", "application_id"}
)
View Source
var ForeignKeys = []string{
	"application_default_profile",
	"registry_applications",
	"registry_application_images",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "applications" table and are not defined as standalone fields in the schema.

Functions

func And

func And(predicates ...predicate.Application) predicate.Application

And groups predicates with the AND operator between them.

func ChartName

func ChartName(v string) predicate.Application

ChartName applies equality check predicate on the "chart_name" field. It's identical to ChartNameEQ.

func ChartNameContains

func ChartNameContains(v string) predicate.Application

ChartNameContains applies the Contains predicate on the "chart_name" field.

func ChartNameContainsFold

func ChartNameContainsFold(v string) predicate.Application

ChartNameContainsFold applies the ContainsFold predicate on the "chart_name" field.

func ChartNameEQ

func ChartNameEQ(v string) predicate.Application

ChartNameEQ applies the EQ predicate on the "chart_name" field.

func ChartNameEqualFold

func ChartNameEqualFold(v string) predicate.Application

ChartNameEqualFold applies the EqualFold predicate on the "chart_name" field.

func ChartNameGT

func ChartNameGT(v string) predicate.Application

ChartNameGT applies the GT predicate on the "chart_name" field.

func ChartNameGTE

func ChartNameGTE(v string) predicate.Application

ChartNameGTE applies the GTE predicate on the "chart_name" field.

func ChartNameHasPrefix

func ChartNameHasPrefix(v string) predicate.Application

ChartNameHasPrefix applies the HasPrefix predicate on the "chart_name" field.

func ChartNameHasSuffix

func ChartNameHasSuffix(v string) predicate.Application

ChartNameHasSuffix applies the HasSuffix predicate on the "chart_name" field.

func ChartNameIn

func ChartNameIn(vs ...string) predicate.Application

ChartNameIn applies the In predicate on the "chart_name" field.

func ChartNameLT

func ChartNameLT(v string) predicate.Application

ChartNameLT applies the LT predicate on the "chart_name" field.

func ChartNameLTE

func ChartNameLTE(v string) predicate.Application

ChartNameLTE applies the LTE predicate on the "chart_name" field.

func ChartNameNEQ

func ChartNameNEQ(v string) predicate.Application

ChartNameNEQ applies the NEQ predicate on the "chart_name" field.

func ChartNameNotIn

func ChartNameNotIn(vs ...string) predicate.Application

ChartNameNotIn applies the NotIn predicate on the "chart_name" field.

func ChartVersion

func ChartVersion(v string) predicate.Application

ChartVersion applies equality check predicate on the "chart_version" field. It's identical to ChartVersionEQ.

func ChartVersionContains

func ChartVersionContains(v string) predicate.Application

ChartVersionContains applies the Contains predicate on the "chart_version" field.

func ChartVersionContainsFold

func ChartVersionContainsFold(v string) predicate.Application

ChartVersionContainsFold applies the ContainsFold predicate on the "chart_version" field.

func ChartVersionEQ

func ChartVersionEQ(v string) predicate.Application

ChartVersionEQ applies the EQ predicate on the "chart_version" field.

func ChartVersionEqualFold

func ChartVersionEqualFold(v string) predicate.Application

ChartVersionEqualFold applies the EqualFold predicate on the "chart_version" field.

func ChartVersionGT

func ChartVersionGT(v string) predicate.Application

ChartVersionGT applies the GT predicate on the "chart_version" field.

func ChartVersionGTE

func ChartVersionGTE(v string) predicate.Application

ChartVersionGTE applies the GTE predicate on the "chart_version" field.

func ChartVersionHasPrefix

func ChartVersionHasPrefix(v string) predicate.Application

ChartVersionHasPrefix applies the HasPrefix predicate on the "chart_version" field.

func ChartVersionHasSuffix

func ChartVersionHasSuffix(v string) predicate.Application

ChartVersionHasSuffix applies the HasSuffix predicate on the "chart_version" field.

func ChartVersionIn

func ChartVersionIn(vs ...string) predicate.Application

ChartVersionIn applies the In predicate on the "chart_version" field.

func ChartVersionLT

func ChartVersionLT(v string) predicate.Application

ChartVersionLT applies the LT predicate on the "chart_version" field.

func ChartVersionLTE

func ChartVersionLTE(v string) predicate.Application

ChartVersionLTE applies the LTE predicate on the "chart_version" field.

func ChartVersionNEQ

func ChartVersionNEQ(v string) predicate.Application

ChartVersionNEQ applies the NEQ predicate on the "chart_version" field.

func ChartVersionNotIn

func ChartVersionNotIn(vs ...string) predicate.Application

ChartVersionNotIn applies the NotIn predicate on the "chart_version" field.

func CreateTime

func CreateTime(v time.Time) predicate.Application

CreateTime applies equality check predicate on the "create_time" field. It's identical to CreateTimeEQ.

func CreateTimeEQ

func CreateTimeEQ(v time.Time) predicate.Application

CreateTimeEQ applies the EQ predicate on the "create_time" field.

func CreateTimeGT

func CreateTimeGT(v time.Time) predicate.Application

CreateTimeGT applies the GT predicate on the "create_time" field.

func CreateTimeGTE

func CreateTimeGTE(v time.Time) predicate.Application

CreateTimeGTE applies the GTE predicate on the "create_time" field.

func CreateTimeIn

func CreateTimeIn(vs ...time.Time) predicate.Application

CreateTimeIn applies the In predicate on the "create_time" field.

func CreateTimeLT

func CreateTimeLT(v time.Time) predicate.Application

CreateTimeLT applies the LT predicate on the "create_time" field.

func CreateTimeLTE

func CreateTimeLTE(v time.Time) predicate.Application

CreateTimeLTE applies the LTE predicate on the "create_time" field.

func CreateTimeNEQ

func CreateTimeNEQ(v time.Time) predicate.Application

CreateTimeNEQ applies the NEQ predicate on the "create_time" field.

func CreateTimeNotIn

func CreateTimeNotIn(vs ...time.Time) predicate.Application

CreateTimeNotIn applies the NotIn predicate on the "create_time" field.

func Description

func Description(v string) predicate.Application

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

func DescriptionContains

func DescriptionContains(v string) predicate.Application

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

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.Application

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

func DescriptionEQ

func DescriptionEQ(v string) predicate.Application

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

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.Application

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

func DescriptionGT

func DescriptionGT(v string) predicate.Application

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

func DescriptionGTE

func DescriptionGTE(v string) predicate.Application

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

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.Application

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

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.Application

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

func DescriptionIn

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

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

func DescriptionIsNil

func DescriptionIsNil() predicate.Application

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

func DescriptionLT

func DescriptionLT(v string) predicate.Application

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

func DescriptionLTE

func DescriptionLTE(v string) predicate.Application

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

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.Application

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

func DescriptionNotIn

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

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

func DescriptionNotNil

func DescriptionNotNil() predicate.Application

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

func DisplayName

func DisplayName(v string) predicate.Application

DisplayName applies equality check predicate on the "display_name" field. It's identical to DisplayNameEQ.

func DisplayNameContains

func DisplayNameContains(v string) predicate.Application

DisplayNameContains applies the Contains predicate on the "display_name" field.

func DisplayNameContainsFold

func DisplayNameContainsFold(v string) predicate.Application

DisplayNameContainsFold applies the ContainsFold predicate on the "display_name" field.

func DisplayNameEQ

func DisplayNameEQ(v string) predicate.Application

DisplayNameEQ applies the EQ predicate on the "display_name" field.

func DisplayNameEqualFold

func DisplayNameEqualFold(v string) predicate.Application

DisplayNameEqualFold applies the EqualFold predicate on the "display_name" field.

func DisplayNameGT

func DisplayNameGT(v string) predicate.Application

DisplayNameGT applies the GT predicate on the "display_name" field.

func DisplayNameGTE

func DisplayNameGTE(v string) predicate.Application

DisplayNameGTE applies the GTE predicate on the "display_name" field.

func DisplayNameHasPrefix

func DisplayNameHasPrefix(v string) predicate.Application

DisplayNameHasPrefix applies the HasPrefix predicate on the "display_name" field.

func DisplayNameHasSuffix

func DisplayNameHasSuffix(v string) predicate.Application

DisplayNameHasSuffix applies the HasSuffix predicate on the "display_name" field.

func DisplayNameIn

func DisplayNameIn(vs ...string) predicate.Application

DisplayNameIn applies the In predicate on the "display_name" field.

func DisplayNameIsNil

func DisplayNameIsNil() predicate.Application

DisplayNameIsNil applies the IsNil predicate on the "display_name" field.

func DisplayNameLT

func DisplayNameLT(v string) predicate.Application

DisplayNameLT applies the LT predicate on the "display_name" field.

func DisplayNameLTE

func DisplayNameLTE(v string) predicate.Application

DisplayNameLTE applies the LTE predicate on the "display_name" field.

func DisplayNameLc

func DisplayNameLc(v string) predicate.Application

DisplayNameLc applies equality check predicate on the "display_name_lc" field. It's identical to DisplayNameLcEQ.

func DisplayNameLcContains

func DisplayNameLcContains(v string) predicate.Application

DisplayNameLcContains applies the Contains predicate on the "display_name_lc" field.

func DisplayNameLcContainsFold

func DisplayNameLcContainsFold(v string) predicate.Application

DisplayNameLcContainsFold applies the ContainsFold predicate on the "display_name_lc" field.

func DisplayNameLcEQ

func DisplayNameLcEQ(v string) predicate.Application

DisplayNameLcEQ applies the EQ predicate on the "display_name_lc" field.

func DisplayNameLcEqualFold

func DisplayNameLcEqualFold(v string) predicate.Application

DisplayNameLcEqualFold applies the EqualFold predicate on the "display_name_lc" field.

func DisplayNameLcGT

func DisplayNameLcGT(v string) predicate.Application

DisplayNameLcGT applies the GT predicate on the "display_name_lc" field.

func DisplayNameLcGTE

func DisplayNameLcGTE(v string) predicate.Application

DisplayNameLcGTE applies the GTE predicate on the "display_name_lc" field.

func DisplayNameLcHasPrefix

func DisplayNameLcHasPrefix(v string) predicate.Application

DisplayNameLcHasPrefix applies the HasPrefix predicate on the "display_name_lc" field.

func DisplayNameLcHasSuffix

func DisplayNameLcHasSuffix(v string) predicate.Application

DisplayNameLcHasSuffix applies the HasSuffix predicate on the "display_name_lc" field.

func DisplayNameLcIn

func DisplayNameLcIn(vs ...string) predicate.Application

DisplayNameLcIn applies the In predicate on the "display_name_lc" field.

func DisplayNameLcIsNil

func DisplayNameLcIsNil() predicate.Application

DisplayNameLcIsNil applies the IsNil predicate on the "display_name_lc" field.

func DisplayNameLcLT

func DisplayNameLcLT(v string) predicate.Application

DisplayNameLcLT applies the LT predicate on the "display_name_lc" field.

func DisplayNameLcLTE

func DisplayNameLcLTE(v string) predicate.Application

DisplayNameLcLTE applies the LTE predicate on the "display_name_lc" field.

func DisplayNameLcNEQ

func DisplayNameLcNEQ(v string) predicate.Application

DisplayNameLcNEQ applies the NEQ predicate on the "display_name_lc" field.

func DisplayNameLcNotIn

func DisplayNameLcNotIn(vs ...string) predicate.Application

DisplayNameLcNotIn applies the NotIn predicate on the "display_name_lc" field.

func DisplayNameLcNotNil

func DisplayNameLcNotNil() predicate.Application

DisplayNameLcNotNil applies the NotNil predicate on the "display_name_lc" field.

func DisplayNameNEQ

func DisplayNameNEQ(v string) predicate.Application

DisplayNameNEQ applies the NEQ predicate on the "display_name" field.

func DisplayNameNotIn

func DisplayNameNotIn(vs ...string) predicate.Application

DisplayNameNotIn applies the NotIn predicate on the "display_name" field.

func DisplayNameNotNil

func DisplayNameNotNil() predicate.Application

DisplayNameNotNil applies the NotNil predicate on the "display_name" field.

func HasDefaultProfile

func HasDefaultProfile() predicate.Application

HasDefaultProfile applies the HasEdge predicate on the "default_profile" edge.

func HasDefaultProfileWith

func HasDefaultProfileWith(preds ...predicate.Profile) predicate.Application

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

func HasDependencySourceFk

func HasDependencySourceFk() predicate.Application

HasDependencySourceFk applies the HasEdge predicate on the "dependency_source_fk" edge.

func HasDependencySourceFkWith

func HasDependencySourceFkWith(preds ...predicate.ApplicationDependency) predicate.Application

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

func HasDependencyTargetFk

func HasDependencyTargetFk() predicate.Application

HasDependencyTargetFk applies the HasEdge predicate on the "dependency_target_fk" edge.

func HasDependencyTargetFkWith

func HasDependencyTargetFkWith(preds ...predicate.ApplicationDependency) predicate.Application

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

func HasDeploymentPackageFk

func HasDeploymentPackageFk() predicate.Application

HasDeploymentPackageFk applies the HasEdge predicate on the "deployment_package_fk" edge.

func HasDeploymentPackageFkWith

func HasDeploymentPackageFkWith(preds ...predicate.DeploymentPackage) predicate.Application

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

func HasIgnoredResources

func HasIgnoredResources() predicate.Application

HasIgnoredResources applies the HasEdge predicate on the "ignored_resources" edge.

func HasIgnoredResourcesWith

func HasIgnoredResourcesWith(preds ...predicate.IgnoredResource) predicate.Application

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

func HasImageRegistryFk

func HasImageRegistryFk() predicate.Application

HasImageRegistryFk applies the HasEdge predicate on the "image_registry_fk" edge.

func HasImageRegistryFkWith

func HasImageRegistryFkWith(preds ...predicate.Registry) predicate.Application

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

func HasProfiles

func HasProfiles() predicate.Application

HasProfiles applies the HasEdge predicate on the "profiles" edge.

func HasProfilesWith

func HasProfilesWith(preds ...predicate.Profile) predicate.Application

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

func HasRegistryFk

func HasRegistryFk() predicate.Application

HasRegistryFk applies the HasEdge predicate on the "registry_fk" edge.

func HasRegistryFkWith

func HasRegistryFkWith(preds ...predicate.Registry) predicate.Application

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

func ID

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uint64) predicate.Application

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uint64) predicate.Application

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uint64) predicate.Application

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uint64) predicate.Application

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uint64) predicate.Application

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uint64) predicate.Application

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uint64) predicate.Application

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uint64) predicate.Application

IDNotIn applies the NotIn predicate on the ID field.

func Kind

Kind applies equality check predicate on the "kind" field. It's identical to KindEQ.

func KindContains

func KindContains(v string) predicate.Application

KindContains applies the Contains predicate on the "kind" field.

func KindContainsFold

func KindContainsFold(v string) predicate.Application

KindContainsFold applies the ContainsFold predicate on the "kind" field.

func KindEQ

func KindEQ(v string) predicate.Application

KindEQ applies the EQ predicate on the "kind" field.

func KindEqualFold

func KindEqualFold(v string) predicate.Application

KindEqualFold applies the EqualFold predicate on the "kind" field.

func KindGT

func KindGT(v string) predicate.Application

KindGT applies the GT predicate on the "kind" field.

func KindGTE

func KindGTE(v string) predicate.Application

KindGTE applies the GTE predicate on the "kind" field.

func KindHasPrefix

func KindHasPrefix(v string) predicate.Application

KindHasPrefix applies the HasPrefix predicate on the "kind" field.

func KindHasSuffix

func KindHasSuffix(v string) predicate.Application

KindHasSuffix applies the HasSuffix predicate on the "kind" field.

func KindIn

func KindIn(vs ...string) predicate.Application

KindIn applies the In predicate on the "kind" field.

func KindIsNil

func KindIsNil() predicate.Application

KindIsNil applies the IsNil predicate on the "kind" field.

func KindLT

func KindLT(v string) predicate.Application

KindLT applies the LT predicate on the "kind" field.

func KindLTE

func KindLTE(v string) predicate.Application

KindLTE applies the LTE predicate on the "kind" field.

func KindNEQ

func KindNEQ(v string) predicate.Application

KindNEQ applies the NEQ predicate on the "kind" field.

func KindNotIn

func KindNotIn(vs ...string) predicate.Application

KindNotIn applies the NotIn predicate on the "kind" field.

func KindNotNil

func KindNotNil() predicate.Application

KindNotNil applies the NotNil predicate on the "kind" field.

func Name

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.Application

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.Application

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.Application

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.Application

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.Application

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.Application

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.Application

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.Application

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.Application

NameIn applies the In predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.Application

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.Application

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.Application

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.Application

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.Application) predicate.Application

Or groups predicates with the OR operator between them.

func ProjectUUID

func ProjectUUID(v string) predicate.Application

ProjectUUID applies equality check predicate on the "project_uuid" field. It's identical to ProjectUUIDEQ.

func ProjectUUIDContains

func ProjectUUIDContains(v string) predicate.Application

ProjectUUIDContains applies the Contains predicate on the "project_uuid" field.

func ProjectUUIDContainsFold

func ProjectUUIDContainsFold(v string) predicate.Application

ProjectUUIDContainsFold applies the ContainsFold predicate on the "project_uuid" field.

func ProjectUUIDEQ

func ProjectUUIDEQ(v string) predicate.Application

ProjectUUIDEQ applies the EQ predicate on the "project_uuid" field.

func ProjectUUIDEqualFold

func ProjectUUIDEqualFold(v string) predicate.Application

ProjectUUIDEqualFold applies the EqualFold predicate on the "project_uuid" field.

func ProjectUUIDGT

func ProjectUUIDGT(v string) predicate.Application

ProjectUUIDGT applies the GT predicate on the "project_uuid" field.

func ProjectUUIDGTE

func ProjectUUIDGTE(v string) predicate.Application

ProjectUUIDGTE applies the GTE predicate on the "project_uuid" field.

func ProjectUUIDHasPrefix

func ProjectUUIDHasPrefix(v string) predicate.Application

ProjectUUIDHasPrefix applies the HasPrefix predicate on the "project_uuid" field.

func ProjectUUIDHasSuffix

func ProjectUUIDHasSuffix(v string) predicate.Application

ProjectUUIDHasSuffix applies the HasSuffix predicate on the "project_uuid" field.

func ProjectUUIDIn

func ProjectUUIDIn(vs ...string) predicate.Application

ProjectUUIDIn applies the In predicate on the "project_uuid" field.

func ProjectUUIDLT

func ProjectUUIDLT(v string) predicate.Application

ProjectUUIDLT applies the LT predicate on the "project_uuid" field.

func ProjectUUIDLTE

func ProjectUUIDLTE(v string) predicate.Application

ProjectUUIDLTE applies the LTE predicate on the "project_uuid" field.

func ProjectUUIDNEQ

func ProjectUUIDNEQ(v string) predicate.Application

ProjectUUIDNEQ applies the NEQ predicate on the "project_uuid" field.

func ProjectUUIDNotIn

func ProjectUUIDNotIn(vs ...string) predicate.Application

ProjectUUIDNotIn applies the NotIn predicate on the "project_uuid" field.

func UpdateTime

func UpdateTime(v time.Time) predicate.Application

UpdateTime applies equality check predicate on the "update_time" field. It's identical to UpdateTimeEQ.

func UpdateTimeEQ

func UpdateTimeEQ(v time.Time) predicate.Application

UpdateTimeEQ applies the EQ predicate on the "update_time" field.

func UpdateTimeGT

func UpdateTimeGT(v time.Time) predicate.Application

UpdateTimeGT applies the GT predicate on the "update_time" field.

func UpdateTimeGTE

func UpdateTimeGTE(v time.Time) predicate.Application

UpdateTimeGTE applies the GTE predicate on the "update_time" field.

func UpdateTimeIn

func UpdateTimeIn(vs ...time.Time) predicate.Application

UpdateTimeIn applies the In predicate on the "update_time" field.

func UpdateTimeLT

func UpdateTimeLT(v time.Time) predicate.Application

UpdateTimeLT applies the LT predicate on the "update_time" field.

func UpdateTimeLTE

func UpdateTimeLTE(v time.Time) predicate.Application

UpdateTimeLTE applies the LTE predicate on the "update_time" field.

func UpdateTimeNEQ

func UpdateTimeNEQ(v time.Time) predicate.Application

UpdateTimeNEQ applies the NEQ predicate on the "update_time" field.

func UpdateTimeNotIn

func UpdateTimeNotIn(vs ...time.Time) predicate.Application

UpdateTimeNotIn applies the NotIn predicate on the "update_time" field.

func ValidColumn

func ValidColumn(column string) bool

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

func Version

func Version(v string) predicate.Application

Version applies equality check predicate on the "version" field. It's identical to VersionEQ.

func VersionContains

func VersionContains(v string) predicate.Application

VersionContains applies the Contains predicate on the "version" field.

func VersionContainsFold

func VersionContainsFold(v string) predicate.Application

VersionContainsFold applies the ContainsFold predicate on the "version" field.

func VersionEQ

func VersionEQ(v string) predicate.Application

VersionEQ applies the EQ predicate on the "version" field.

func VersionEqualFold

func VersionEqualFold(v string) predicate.Application

VersionEqualFold applies the EqualFold predicate on the "version" field.

func VersionGT

func VersionGT(v string) predicate.Application

VersionGT applies the GT predicate on the "version" field.

func VersionGTE

func VersionGTE(v string) predicate.Application

VersionGTE applies the GTE predicate on the "version" field.

func VersionHasPrefix

func VersionHasPrefix(v string) predicate.Application

VersionHasPrefix applies the HasPrefix predicate on the "version" field.

func VersionHasSuffix

func VersionHasSuffix(v string) predicate.Application

VersionHasSuffix applies the HasSuffix predicate on the "version" field.

func VersionIn

func VersionIn(vs ...string) predicate.Application

VersionIn applies the In predicate on the "version" field.

func VersionLT

func VersionLT(v string) predicate.Application

VersionLT applies the LT predicate on the "version" field.

func VersionLTE

func VersionLTE(v string) predicate.Application

VersionLTE applies the LTE predicate on the "version" field.

func VersionNEQ

func VersionNEQ(v string) predicate.Application

VersionNEQ applies the NEQ predicate on the "version" field.

func VersionNotIn

func VersionNotIn(vs ...string) predicate.Application

VersionNotIn applies the NotIn predicate on the "version" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Application queries.

func ByChartName

func ByChartName(opts ...sql.OrderTermOption) OrderOption

ByChartName orders the results by the chart_name field.

func ByChartVersion

func ByChartVersion(opts ...sql.OrderTermOption) OrderOption

ByChartVersion orders the results by the chart_version field.

func ByCreateTime

func ByCreateTime(opts ...sql.OrderTermOption) OrderOption

ByCreateTime orders the results by the create_time field.

func ByDefaultProfileField

func ByDefaultProfileField(field string, opts ...sql.OrderTermOption) OrderOption

ByDefaultProfileField orders the results by default_profile field.

func ByDependencySourceFk

func ByDependencySourceFk(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByDependencySourceFk orders the results by dependency_source_fk terms.

func ByDependencySourceFkCount

func ByDependencySourceFkCount(opts ...sql.OrderTermOption) OrderOption

ByDependencySourceFkCount orders the results by dependency_source_fk count.

func ByDependencyTargetFk

func ByDependencyTargetFk(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByDependencyTargetFk orders the results by dependency_target_fk terms.

func ByDependencyTargetFkCount

func ByDependencyTargetFkCount(opts ...sql.OrderTermOption) OrderOption

ByDependencyTargetFkCount orders the results by dependency_target_fk count.

func ByDeploymentPackageFk

func ByDeploymentPackageFk(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByDeploymentPackageFk orders the results by deployment_package_fk terms.

func ByDeploymentPackageFkCount

func ByDeploymentPackageFkCount(opts ...sql.OrderTermOption) OrderOption

ByDeploymentPackageFkCount orders the results by deployment_package_fk count.

func ByDescription

func ByDescription(opts ...sql.OrderTermOption) OrderOption

ByDescription orders the results by the description field.

func ByDisplayName

func ByDisplayName(opts ...sql.OrderTermOption) OrderOption

ByDisplayName orders the results by the display_name field.

func ByDisplayNameLc

func ByDisplayNameLc(opts ...sql.OrderTermOption) OrderOption

ByDisplayNameLc orders the results by the display_name_lc field.

func ByID

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func ByIgnoredResources

func ByIgnoredResources(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByIgnoredResources orders the results by ignored_resources terms.

func ByIgnoredResourcesCount

func ByIgnoredResourcesCount(opts ...sql.OrderTermOption) OrderOption

ByIgnoredResourcesCount orders the results by ignored_resources count.

func ByImageRegistryFkField

func ByImageRegistryFkField(field string, opts ...sql.OrderTermOption) OrderOption

ByImageRegistryFkField orders the results by image_registry_fk field.

func ByKind

func ByKind(opts ...sql.OrderTermOption) OrderOption

ByKind orders the results by the kind field.

func ByName

func ByName(opts ...sql.OrderTermOption) OrderOption

ByName orders the results by the name field.

func ByProfiles

func ByProfiles(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByProfiles orders the results by profiles terms.

func ByProfilesCount

func ByProfilesCount(opts ...sql.OrderTermOption) OrderOption

ByProfilesCount orders the results by profiles count.

func ByProjectUUID

func ByProjectUUID(opts ...sql.OrderTermOption) OrderOption

ByProjectUUID orders the results by the project_uuid field.

func ByRegistryFkField

func ByRegistryFkField(field string, opts ...sql.OrderTermOption) OrderOption

ByRegistryFkField orders the results by registry_fk field.

func ByUpdateTime

func ByUpdateTime(opts ...sql.OrderTermOption) OrderOption

ByUpdateTime orders the results by the update_time field.

func ByVersion

func ByVersion(opts ...sql.OrderTermOption) OrderOption

ByVersion orders the results by the version field.

Jump to

Keyboard shortcuts

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