deploymentpackage

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 deploymentpackage type in the database.
	Label = "deployment_package"
	// 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"
	// FieldIsDeployed holds the string denoting the is_deployed field in the database.
	FieldIsDeployed = "is_deployed"
	// FieldIsVisible holds the string denoting the is_visible field in the database.
	FieldIsVisible = "is_visible"
	// FieldAllowsMultipleDeployments holds the string denoting the allows_multiple_deployments field in the database.
	FieldAllowsMultipleDeployments = "allows_multiple_deployments"
	// FieldKind holds the string denoting the kind field in the database.
	FieldKind = "kind"
	// EdgeDeploymentProfiles holds the string denoting the deployment_profiles edge name in mutations.
	EdgeDeploymentProfiles = "deployment_profiles"
	// EdgeApplications holds the string denoting the applications edge name in mutations.
	EdgeApplications = "applications"
	// EdgeIcon holds the string denoting the icon edge name in mutations.
	EdgeIcon = "icon"
	// EdgeThumbnail holds the string denoting the thumbnail edge name in mutations.
	EdgeThumbnail = "thumbnail"
	// EdgeDefaultProfile holds the string denoting the default_profile edge name in mutations.
	EdgeDefaultProfile = "default_profile"
	// EdgeApplicationDependencies holds the string denoting the application_dependencies edge name in mutations.
	EdgeApplicationDependencies = "application_dependencies"
	// EdgeApplicationNamespaces holds the string denoting the application_namespaces edge name in mutations.
	EdgeApplicationNamespaces = "application_namespaces"
	// EdgeNamespaces holds the string denoting the namespaces edge name in mutations.
	EdgeNamespaces = "namespaces"
	// EdgeExtensions holds the string denoting the extensions edge name in mutations.
	EdgeExtensions = "extensions"
	// EdgeArtifacts holds the string denoting the artifacts edge name in mutations.
	EdgeArtifacts = "artifacts"
	// Table holds the table name of the deploymentpackage in the database.
	Table = "deployment_packages"
	// DeploymentProfilesTable is the table that holds the deployment_profiles relation/edge.
	DeploymentProfilesTable = "deployment_profiles"
	// DeploymentProfilesInverseTable is the table name for the DeploymentProfile entity.
	// It exists in this package in order to avoid circular dependency with the "deploymentprofile" package.
	DeploymentProfilesInverseTable = "deployment_profiles"
	// DeploymentProfilesColumn is the table column denoting the deployment_profiles relation/edge.
	DeploymentProfilesColumn = "deployment_package_deployment_profiles"
	// ApplicationsTable is the table that holds the applications relation/edge. The primary key declared below.
	ApplicationsTable = "deployment_package_applications"
	// ApplicationsInverseTable is the table name for the Application entity.
	// It exists in this package in order to avoid circular dependency with the "application" package.
	ApplicationsInverseTable = "applications"
	// IconTable is the table that holds the icon relation/edge. The primary key declared below.
	IconTable = "deployment_package_icon"
	// IconInverseTable is the table name for the Artifact entity.
	// It exists in this package in order to avoid circular dependency with the "artifact" package.
	IconInverseTable = "artifacts"
	// ThumbnailTable is the table that holds the thumbnail relation/edge. The primary key declared below.
	ThumbnailTable = "deployment_package_thumbnail"
	// ThumbnailInverseTable is the table name for the Artifact entity.
	// It exists in this package in order to avoid circular dependency with the "artifact" package.
	ThumbnailInverseTable = "artifacts"
	// DefaultProfileTable is the table that holds the default_profile relation/edge.
	DefaultProfileTable = "deployment_packages"
	// DefaultProfileInverseTable is the table name for the DeploymentProfile entity.
	// It exists in this package in order to avoid circular dependency with the "deploymentprofile" package.
	DefaultProfileInverseTable = "deployment_profiles"
	// DefaultProfileColumn is the table column denoting the default_profile relation/edge.
	DefaultProfileColumn = "deployment_package_default_profile"
	// ApplicationDependenciesTable is the table that holds the application_dependencies relation/edge.
	ApplicationDependenciesTable = "application_dependencies"
	// ApplicationDependenciesInverseTable is the table name for the ApplicationDependency entity.
	// It exists in this package in order to avoid circular dependency with the "applicationdependency" package.
	ApplicationDependenciesInverseTable = "application_dependencies"
	// ApplicationDependenciesColumn is the table column denoting the application_dependencies relation/edge.
	ApplicationDependenciesColumn = "deployment_package_application_dependencies"
	// ApplicationNamespacesTable is the table that holds the application_namespaces relation/edge.
	ApplicationNamespacesTable = "application_namespaces"
	// ApplicationNamespacesInverseTable is the table name for the ApplicationNamespace entity.
	// It exists in this package in order to avoid circular dependency with the "applicationnamespace" package.
	ApplicationNamespacesInverseTable = "application_namespaces"
	// ApplicationNamespacesColumn is the table column denoting the application_namespaces relation/edge.
	ApplicationNamespacesColumn = "deployment_package_application_namespaces"
	// NamespacesTable is the table that holds the namespaces relation/edge.
	NamespacesTable = "namespaces"
	// NamespacesInverseTable is the table name for the Namespace entity.
	// It exists in this package in order to avoid circular dependency with the "namespace" package.
	NamespacesInverseTable = "namespaces"
	// NamespacesColumn is the table column denoting the namespaces relation/edge.
	NamespacesColumn = "deployment_package_namespaces"
	// ExtensionsTable is the table that holds the extensions relation/edge.
	ExtensionsTable = "extensions"
	// ExtensionsInverseTable is the table name for the Extension entity.
	// It exists in this package in order to avoid circular dependency with the "extension" package.
	ExtensionsInverseTable = "extensions"
	// ExtensionsColumn is the table column denoting the extensions relation/edge.
	ExtensionsColumn = "deployment_package_extensions"
	// ArtifactsTable is the table that holds the artifacts relation/edge.
	ArtifactsTable = "artifact_references"
	// ArtifactsInverseTable is the table name for the ArtifactReference entity.
	// It exists in this package in order to avoid circular dependency with the "artifactreference" package.
	ArtifactsInverseTable = "artifact_references"
	// ArtifactsColumn is the table column denoting the artifacts relation/edge.
	ArtifactsColumn = "deployment_package_artifacts"
)

Variables

View Source
var (
	// ApplicationsPrimaryKey and ApplicationsColumn2 are the table columns denoting the
	// primary key for the applications relation (M2M).
	ApplicationsPrimaryKey = []string{"deployment_package_id", "application_id"}
	// IconPrimaryKey and IconColumn2 are the table columns denoting the
	// primary key for the icon relation (M2M).
	IconPrimaryKey = []string{"deployment_package_id", "artifact_id"}
	// ThumbnailPrimaryKey and ThumbnailColumn2 are the table columns denoting the
	// primary key for the thumbnail relation (M2M).
	ThumbnailPrimaryKey = []string{"deployment_package_id", "artifact_id"}
)
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 deploymentpackage fields.

View Source
var ForeignKeys = []string{
	"deployment_package_default_profile",
}

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

Functions

func AllowsMultipleDeployments

func AllowsMultipleDeployments(v bool) predicate.DeploymentPackage

AllowsMultipleDeployments applies equality check predicate on the "allows_multiple_deployments" field. It's identical to AllowsMultipleDeploymentsEQ.

func AllowsMultipleDeploymentsEQ

func AllowsMultipleDeploymentsEQ(v bool) predicate.DeploymentPackage

AllowsMultipleDeploymentsEQ applies the EQ predicate on the "allows_multiple_deployments" field.

func AllowsMultipleDeploymentsIsNil

func AllowsMultipleDeploymentsIsNil() predicate.DeploymentPackage

AllowsMultipleDeploymentsIsNil applies the IsNil predicate on the "allows_multiple_deployments" field.

func AllowsMultipleDeploymentsNEQ

func AllowsMultipleDeploymentsNEQ(v bool) predicate.DeploymentPackage

AllowsMultipleDeploymentsNEQ applies the NEQ predicate on the "allows_multiple_deployments" field.

func AllowsMultipleDeploymentsNotNil

func AllowsMultipleDeploymentsNotNil() predicate.DeploymentPackage

AllowsMultipleDeploymentsNotNil applies the NotNil predicate on the "allows_multiple_deployments" field.

func And

And groups predicates with the AND operator between them.

func CreateTime

func CreateTime(v time.Time) predicate.DeploymentPackage

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

func CreateTimeEQ

func CreateTimeEQ(v time.Time) predicate.DeploymentPackage

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

func CreateTimeGT

func CreateTimeGT(v time.Time) predicate.DeploymentPackage

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

func CreateTimeGTE

func CreateTimeGTE(v time.Time) predicate.DeploymentPackage

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

func CreateTimeIn

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

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

func CreateTimeLT

func CreateTimeLT(v time.Time) predicate.DeploymentPackage

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

func CreateTimeLTE

func CreateTimeLTE(v time.Time) predicate.DeploymentPackage

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

func CreateTimeNEQ

func CreateTimeNEQ(v time.Time) predicate.DeploymentPackage

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

func CreateTimeNotIn

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

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

func Description

func Description(v string) predicate.DeploymentPackage

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

func DescriptionContains

func DescriptionContains(v string) predicate.DeploymentPackage

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

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.DeploymentPackage

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

func DescriptionEQ

func DescriptionEQ(v string) predicate.DeploymentPackage

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

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.DeploymentPackage

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

func DescriptionGT

func DescriptionGT(v string) predicate.DeploymentPackage

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

func DescriptionGTE

func DescriptionGTE(v string) predicate.DeploymentPackage

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

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.DeploymentPackage

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

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.DeploymentPackage

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

func DescriptionIn

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

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

func DescriptionIsNil

func DescriptionIsNil() predicate.DeploymentPackage

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

func DescriptionLT

func DescriptionLT(v string) predicate.DeploymentPackage

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

func DescriptionLTE

func DescriptionLTE(v string) predicate.DeploymentPackage

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

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.DeploymentPackage

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

func DescriptionNotIn

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

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

func DescriptionNotNil

func DescriptionNotNil() predicate.DeploymentPackage

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

func DisplayName

func DisplayName(v string) predicate.DeploymentPackage

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

func DisplayNameContains

func DisplayNameContains(v string) predicate.DeploymentPackage

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

func DisplayNameContainsFold

func DisplayNameContainsFold(v string) predicate.DeploymentPackage

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

func DisplayNameEQ

func DisplayNameEQ(v string) predicate.DeploymentPackage

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

func DisplayNameEqualFold

func DisplayNameEqualFold(v string) predicate.DeploymentPackage

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

func DisplayNameGT

func DisplayNameGT(v string) predicate.DeploymentPackage

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

func DisplayNameGTE

func DisplayNameGTE(v string) predicate.DeploymentPackage

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

func DisplayNameHasPrefix

func DisplayNameHasPrefix(v string) predicate.DeploymentPackage

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

func DisplayNameHasSuffix

func DisplayNameHasSuffix(v string) predicate.DeploymentPackage

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

func DisplayNameIn

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

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

func DisplayNameIsNil

func DisplayNameIsNil() predicate.DeploymentPackage

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

func DisplayNameLT

func DisplayNameLT(v string) predicate.DeploymentPackage

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

func DisplayNameLTE

func DisplayNameLTE(v string) predicate.DeploymentPackage

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

func DisplayNameLc

func DisplayNameLc(v string) predicate.DeploymentPackage

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

func DisplayNameLcContains

func DisplayNameLcContains(v string) predicate.DeploymentPackage

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

func DisplayNameLcContainsFold

func DisplayNameLcContainsFold(v string) predicate.DeploymentPackage

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

func DisplayNameLcEQ

func DisplayNameLcEQ(v string) predicate.DeploymentPackage

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

func DisplayNameLcEqualFold

func DisplayNameLcEqualFold(v string) predicate.DeploymentPackage

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

func DisplayNameLcGT

func DisplayNameLcGT(v string) predicate.DeploymentPackage

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

func DisplayNameLcGTE

func DisplayNameLcGTE(v string) predicate.DeploymentPackage

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

func DisplayNameLcHasPrefix

func DisplayNameLcHasPrefix(v string) predicate.DeploymentPackage

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

func DisplayNameLcHasSuffix

func DisplayNameLcHasSuffix(v string) predicate.DeploymentPackage

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

func DisplayNameLcIn

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

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

func DisplayNameLcIsNil

func DisplayNameLcIsNil() predicate.DeploymentPackage

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

func DisplayNameLcLT

func DisplayNameLcLT(v string) predicate.DeploymentPackage

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

func DisplayNameLcLTE

func DisplayNameLcLTE(v string) predicate.DeploymentPackage

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

func DisplayNameLcNEQ

func DisplayNameLcNEQ(v string) predicate.DeploymentPackage

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

func DisplayNameLcNotIn

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

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

func DisplayNameLcNotNil

func DisplayNameLcNotNil() predicate.DeploymentPackage

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

func DisplayNameNEQ

func DisplayNameNEQ(v string) predicate.DeploymentPackage

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

func DisplayNameNotIn

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

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

func DisplayNameNotNil

func DisplayNameNotNil() predicate.DeploymentPackage

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

func HasApplicationDependencies

func HasApplicationDependencies() predicate.DeploymentPackage

HasApplicationDependencies applies the HasEdge predicate on the "application_dependencies" edge.

func HasApplicationDependenciesWith

func HasApplicationDependenciesWith(preds ...predicate.ApplicationDependency) predicate.DeploymentPackage

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

func HasApplicationNamespaces

func HasApplicationNamespaces() predicate.DeploymentPackage

HasApplicationNamespaces applies the HasEdge predicate on the "application_namespaces" edge.

func HasApplicationNamespacesWith

func HasApplicationNamespacesWith(preds ...predicate.ApplicationNamespace) predicate.DeploymentPackage

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

func HasApplications

func HasApplications() predicate.DeploymentPackage

HasApplications applies the HasEdge predicate on the "applications" edge.

func HasApplicationsWith

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

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

func HasArtifacts

func HasArtifacts() predicate.DeploymentPackage

HasArtifacts applies the HasEdge predicate on the "artifacts" edge.

func HasArtifactsWith

func HasArtifactsWith(preds ...predicate.ArtifactReference) predicate.DeploymentPackage

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

func HasDefaultProfile

func HasDefaultProfile() predicate.DeploymentPackage

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

func HasDefaultProfileWith

func HasDefaultProfileWith(preds ...predicate.DeploymentProfile) predicate.DeploymentPackage

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

func HasDeploymentProfiles

func HasDeploymentProfiles() predicate.DeploymentPackage

HasDeploymentProfiles applies the HasEdge predicate on the "deployment_profiles" edge.

func HasDeploymentProfilesWith

func HasDeploymentProfilesWith(preds ...predicate.DeploymentProfile) predicate.DeploymentPackage

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

func HasExtensions

func HasExtensions() predicate.DeploymentPackage

HasExtensions applies the HasEdge predicate on the "extensions" edge.

func HasExtensionsWith

func HasExtensionsWith(preds ...predicate.Extension) predicate.DeploymentPackage

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

func HasIcon

func HasIcon() predicate.DeploymentPackage

HasIcon applies the HasEdge predicate on the "icon" edge.

func HasIconWith

func HasIconWith(preds ...predicate.Artifact) predicate.DeploymentPackage

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

func HasNamespaces

func HasNamespaces() predicate.DeploymentPackage

HasNamespaces applies the HasEdge predicate on the "namespaces" edge.

func HasNamespacesWith

func HasNamespacesWith(preds ...predicate.Namespace) predicate.DeploymentPackage

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

func HasThumbnail

func HasThumbnail() predicate.DeploymentPackage

HasThumbnail applies the HasEdge predicate on the "thumbnail" edge.

func HasThumbnailWith

func HasThumbnailWith(preds ...predicate.Artifact) predicate.DeploymentPackage

HasThumbnailWith applies the HasEdge predicate on the "thumbnail" 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

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func IsDeployed

func IsDeployed(v bool) predicate.DeploymentPackage

IsDeployed applies equality check predicate on the "is_deployed" field. It's identical to IsDeployedEQ.

func IsDeployedEQ

func IsDeployedEQ(v bool) predicate.DeploymentPackage

IsDeployedEQ applies the EQ predicate on the "is_deployed" field.

func IsDeployedIsNil

func IsDeployedIsNil() predicate.DeploymentPackage

IsDeployedIsNil applies the IsNil predicate on the "is_deployed" field.

func IsDeployedNEQ

func IsDeployedNEQ(v bool) predicate.DeploymentPackage

IsDeployedNEQ applies the NEQ predicate on the "is_deployed" field.

func IsDeployedNotNil

func IsDeployedNotNil() predicate.DeploymentPackage

IsDeployedNotNil applies the NotNil predicate on the "is_deployed" field.

func IsVisible

func IsVisible(v bool) predicate.DeploymentPackage

IsVisible applies equality check predicate on the "is_visible" field. It's identical to IsVisibleEQ.

func IsVisibleEQ

func IsVisibleEQ(v bool) predicate.DeploymentPackage

IsVisibleEQ applies the EQ predicate on the "is_visible" field.

func IsVisibleIsNil

func IsVisibleIsNil() predicate.DeploymentPackage

IsVisibleIsNil applies the IsNil predicate on the "is_visible" field.

func IsVisibleNEQ

func IsVisibleNEQ(v bool) predicate.DeploymentPackage

IsVisibleNEQ applies the NEQ predicate on the "is_visible" field.

func IsVisibleNotNil

func IsVisibleNotNil() predicate.DeploymentPackage

IsVisibleNotNil applies the NotNil predicate on the "is_visible" field.

func Kind

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

func KindContains

func KindContains(v string) predicate.DeploymentPackage

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

func KindContainsFold

func KindContainsFold(v string) predicate.DeploymentPackage

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

func KindEQ

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

func KindEqualFold

func KindEqualFold(v string) predicate.DeploymentPackage

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

func KindGT

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

func KindGTE

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

func KindHasPrefix

func KindHasPrefix(v string) predicate.DeploymentPackage

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

func KindHasSuffix

func KindHasSuffix(v string) predicate.DeploymentPackage

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

func KindIn

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

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

func KindIsNil

func KindIsNil() predicate.DeploymentPackage

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

func KindLT

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

func KindLTE

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

func KindNEQ

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

func KindNotIn

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

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

func KindNotNil

func KindNotNil() predicate.DeploymentPackage

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.DeploymentPackage

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

func NameContainsFold

func NameContainsFold(v string) predicate.DeploymentPackage

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

func NameEQ

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

func NameEqualFold

func NameEqualFold(v string) predicate.DeploymentPackage

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

func NameGT

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

func NameGTE

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.DeploymentPackage

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.DeploymentPackage

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

func NameIn

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

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

func NameLT

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

func NameLTE

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

func NameNEQ

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

func NameNotIn

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

NameNotIn applies the NotIn predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func ProjectUUID

func ProjectUUID(v string) predicate.DeploymentPackage

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

func ProjectUUIDContains

func ProjectUUIDContains(v string) predicate.DeploymentPackage

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

func ProjectUUIDContainsFold

func ProjectUUIDContainsFold(v string) predicate.DeploymentPackage

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

func ProjectUUIDEQ

func ProjectUUIDEQ(v string) predicate.DeploymentPackage

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

func ProjectUUIDEqualFold

func ProjectUUIDEqualFold(v string) predicate.DeploymentPackage

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

func ProjectUUIDGT

func ProjectUUIDGT(v string) predicate.DeploymentPackage

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

func ProjectUUIDGTE

func ProjectUUIDGTE(v string) predicate.DeploymentPackage

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

func ProjectUUIDHasPrefix

func ProjectUUIDHasPrefix(v string) predicate.DeploymentPackage

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

func ProjectUUIDHasSuffix

func ProjectUUIDHasSuffix(v string) predicate.DeploymentPackage

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

func ProjectUUIDIn

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

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

func ProjectUUIDLT

func ProjectUUIDLT(v string) predicate.DeploymentPackage

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

func ProjectUUIDLTE

func ProjectUUIDLTE(v string) predicate.DeploymentPackage

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

func ProjectUUIDNEQ

func ProjectUUIDNEQ(v string) predicate.DeploymentPackage

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

func ProjectUUIDNotIn

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

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

func UpdateTime

func UpdateTime(v time.Time) predicate.DeploymentPackage

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

func UpdateTimeEQ

func UpdateTimeEQ(v time.Time) predicate.DeploymentPackage

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

func UpdateTimeGT

func UpdateTimeGT(v time.Time) predicate.DeploymentPackage

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

func UpdateTimeGTE

func UpdateTimeGTE(v time.Time) predicate.DeploymentPackage

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

func UpdateTimeIn

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

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

func UpdateTimeLT

func UpdateTimeLT(v time.Time) predicate.DeploymentPackage

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

func UpdateTimeLTE

func UpdateTimeLTE(v time.Time) predicate.DeploymentPackage

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

func UpdateTimeNEQ

func UpdateTimeNEQ(v time.Time) predicate.DeploymentPackage

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

func UpdateTimeNotIn

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

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

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

func VersionContains

func VersionContains(v string) predicate.DeploymentPackage

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

func VersionContainsFold

func VersionContainsFold(v string) predicate.DeploymentPackage

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

func VersionEQ

func VersionEQ(v string) predicate.DeploymentPackage

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

func VersionEqualFold

func VersionEqualFold(v string) predicate.DeploymentPackage

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

func VersionGT

func VersionGT(v string) predicate.DeploymentPackage

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

func VersionGTE

func VersionGTE(v string) predicate.DeploymentPackage

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

func VersionHasPrefix

func VersionHasPrefix(v string) predicate.DeploymentPackage

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

func VersionHasSuffix

func VersionHasSuffix(v string) predicate.DeploymentPackage

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

func VersionIn

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

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

func VersionLT

func VersionLT(v string) predicate.DeploymentPackage

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

func VersionLTE

func VersionLTE(v string) predicate.DeploymentPackage

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

func VersionNEQ

func VersionNEQ(v string) predicate.DeploymentPackage

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

func VersionNotIn

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

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

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the DeploymentPackage queries.

func ByAllowsMultipleDeployments

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

ByAllowsMultipleDeployments orders the results by the allows_multiple_deployments field.

func ByApplicationDependencies

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

ByApplicationDependencies orders the results by application_dependencies terms.

func ByApplicationDependenciesCount

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

ByApplicationDependenciesCount orders the results by application_dependencies count.

func ByApplicationNamespaces

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

ByApplicationNamespaces orders the results by application_namespaces terms.

func ByApplicationNamespacesCount

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

ByApplicationNamespacesCount orders the results by application_namespaces count.

func ByApplications

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

ByApplications orders the results by applications terms.

func ByApplicationsCount

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

ByApplicationsCount orders the results by applications count.

func ByArtifacts

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

ByArtifacts orders the results by artifacts terms.

func ByArtifactsCount

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

ByArtifactsCount orders the results by artifacts count.

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 ByDeploymentProfiles

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

ByDeploymentProfiles orders the results by deployment_profiles terms.

func ByDeploymentProfilesCount

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

ByDeploymentProfilesCount orders the results by deployment_profiles 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 ByExtensions

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

ByExtensions orders the results by extensions terms.

func ByExtensionsCount

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

ByExtensionsCount orders the results by extensions count.

func ByID

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

ByID orders the results by the id field.

func ByIcon

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

ByIcon orders the results by icon terms.

func ByIconCount

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

ByIconCount orders the results by icon count.

func ByIsDeployed

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

ByIsDeployed orders the results by the is_deployed field.

func ByIsVisible

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

ByIsVisible orders the results by the is_visible 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 ByNamespaces

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

ByNamespaces orders the results by namespaces terms.

func ByNamespacesCount

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

ByNamespacesCount orders the results by namespaces count.

func ByProjectUUID

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

ByProjectUUID orders the results by the project_uuid field.

func ByThumbnail

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

ByThumbnail orders the results by thumbnail terms.

func ByThumbnailCount

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

ByThumbnailCount orders the results by thumbnail count.

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