deploymentprofile

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 deploymentprofile type in the database.
	Label = "deployment_profile"
	// 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"
	// EdgeProfiles holds the string denoting the profiles edge name in mutations.
	EdgeProfiles = "profiles"
	// EdgeDeploymentPackageFk holds the string denoting the deployment_package_fk edge name in mutations.
	EdgeDeploymentPackageFk = "deployment_package_fk"
	// Table holds the table name of the deploymentprofile in the database.
	Table = "deployment_profiles"
	// ProfilesTable is the table that holds the profiles relation/edge. The primary key declared below.
	ProfilesTable = "deployment_profile_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"
	// DeploymentPackageFkTable is the table that holds the deployment_package_fk relation/edge.
	DeploymentPackageFkTable = "deployment_profiles"
	// 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"
	// DeploymentPackageFkColumn is the table column denoting the deployment_package_fk relation/edge.
	DeploymentPackageFkColumn = "deployment_package_deployment_profiles"
)

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
)

Columns holds all SQL columns for deploymentprofile fields.

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

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

View Source
var (
	// ProfilesPrimaryKey and ProfilesColumn2 are the table columns denoting the
	// primary key for the profiles relation (M2M).
	ProfilesPrimaryKey = []string{"deployment_profile_id", "profile_id"}
)

Functions

func And

And groups predicates with the AND operator between them.

func CreateTime

func CreateTime(v time.Time) predicate.DeploymentProfile

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

func CreateTimeEQ

func CreateTimeEQ(v time.Time) predicate.DeploymentProfile

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

func CreateTimeGT

func CreateTimeGT(v time.Time) predicate.DeploymentProfile

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

func CreateTimeGTE

func CreateTimeGTE(v time.Time) predicate.DeploymentProfile

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

func CreateTimeIn

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

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

func CreateTimeLT

func CreateTimeLT(v time.Time) predicate.DeploymentProfile

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

func CreateTimeLTE

func CreateTimeLTE(v time.Time) predicate.DeploymentProfile

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

func CreateTimeNEQ

func CreateTimeNEQ(v time.Time) predicate.DeploymentProfile

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

func CreateTimeNotIn

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

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

func Description

func Description(v string) predicate.DeploymentProfile

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

func DescriptionContains

func DescriptionContains(v string) predicate.DeploymentProfile

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

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.DeploymentProfile

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

func DescriptionEQ

func DescriptionEQ(v string) predicate.DeploymentProfile

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

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.DeploymentProfile

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

func DescriptionGT

func DescriptionGT(v string) predicate.DeploymentProfile

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

func DescriptionGTE

func DescriptionGTE(v string) predicate.DeploymentProfile

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

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.DeploymentProfile

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

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.DeploymentProfile

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

func DescriptionIn

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

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

func DescriptionIsNil

func DescriptionIsNil() predicate.DeploymentProfile

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

func DescriptionLT

func DescriptionLT(v string) predicate.DeploymentProfile

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

func DescriptionLTE

func DescriptionLTE(v string) predicate.DeploymentProfile

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

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.DeploymentProfile

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

func DescriptionNotIn

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

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

func DescriptionNotNil

func DescriptionNotNil() predicate.DeploymentProfile

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

func DisplayName

func DisplayName(v string) predicate.DeploymentProfile

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

func DisplayNameContains

func DisplayNameContains(v string) predicate.DeploymentProfile

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

func DisplayNameContainsFold

func DisplayNameContainsFold(v string) predicate.DeploymentProfile

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

func DisplayNameEQ

func DisplayNameEQ(v string) predicate.DeploymentProfile

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

func DisplayNameEqualFold

func DisplayNameEqualFold(v string) predicate.DeploymentProfile

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

func DisplayNameGT

func DisplayNameGT(v string) predicate.DeploymentProfile

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

func DisplayNameGTE

func DisplayNameGTE(v string) predicate.DeploymentProfile

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

func DisplayNameHasPrefix

func DisplayNameHasPrefix(v string) predicate.DeploymentProfile

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

func DisplayNameHasSuffix

func DisplayNameHasSuffix(v string) predicate.DeploymentProfile

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

func DisplayNameIn

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

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

func DisplayNameIsNil

func DisplayNameIsNil() predicate.DeploymentProfile

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

func DisplayNameLT

func DisplayNameLT(v string) predicate.DeploymentProfile

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

func DisplayNameLTE

func DisplayNameLTE(v string) predicate.DeploymentProfile

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

func DisplayNameLc

func DisplayNameLc(v string) predicate.DeploymentProfile

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

func DisplayNameLcContains

func DisplayNameLcContains(v string) predicate.DeploymentProfile

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

func DisplayNameLcContainsFold

func DisplayNameLcContainsFold(v string) predicate.DeploymentProfile

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

func DisplayNameLcEQ

func DisplayNameLcEQ(v string) predicate.DeploymentProfile

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

func DisplayNameLcEqualFold

func DisplayNameLcEqualFold(v string) predicate.DeploymentProfile

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

func DisplayNameLcGT

func DisplayNameLcGT(v string) predicate.DeploymentProfile

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

func DisplayNameLcGTE

func DisplayNameLcGTE(v string) predicate.DeploymentProfile

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

func DisplayNameLcHasPrefix

func DisplayNameLcHasPrefix(v string) predicate.DeploymentProfile

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

func DisplayNameLcHasSuffix

func DisplayNameLcHasSuffix(v string) predicate.DeploymentProfile

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

func DisplayNameLcIn

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

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

func DisplayNameLcIsNil

func DisplayNameLcIsNil() predicate.DeploymentProfile

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

func DisplayNameLcLT

func DisplayNameLcLT(v string) predicate.DeploymentProfile

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

func DisplayNameLcLTE

func DisplayNameLcLTE(v string) predicate.DeploymentProfile

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

func DisplayNameLcNEQ

func DisplayNameLcNEQ(v string) predicate.DeploymentProfile

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

func DisplayNameLcNotIn

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

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

func DisplayNameLcNotNil

func DisplayNameLcNotNil() predicate.DeploymentProfile

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

func DisplayNameNEQ

func DisplayNameNEQ(v string) predicate.DeploymentProfile

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

func DisplayNameNotIn

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

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

func DisplayNameNotNil

func DisplayNameNotNil() predicate.DeploymentProfile

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

func HasDeploymentPackageFk

func HasDeploymentPackageFk() predicate.DeploymentProfile

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

func HasDeploymentPackageFkWith

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

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

func HasProfiles

func HasProfiles() predicate.DeploymentProfile

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

func HasProfilesWith

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

HasProfilesWith applies the HasEdge predicate on the "profiles" 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.DeploymentProfile

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

IDNotIn applies the NotIn predicate on the ID field.

func Name

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

func NameContains

func NameContains(v string) predicate.DeploymentProfile

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

func NameContainsFold

func NameContainsFold(v string) predicate.DeploymentProfile

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

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

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.DeploymentProfile

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

func NameIn

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

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

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 UpdateTime

func UpdateTime(v time.Time) predicate.DeploymentProfile

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

func UpdateTimeEQ

func UpdateTimeEQ(v time.Time) predicate.DeploymentProfile

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

func UpdateTimeGT

func UpdateTimeGT(v time.Time) predicate.DeploymentProfile

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

func UpdateTimeGTE

func UpdateTimeGTE(v time.Time) predicate.DeploymentProfile

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

func UpdateTimeIn

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

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

func UpdateTimeLT

func UpdateTimeLT(v time.Time) predicate.DeploymentProfile

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

func UpdateTimeLTE

func UpdateTimeLTE(v time.Time) predicate.DeploymentProfile

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

func UpdateTimeNEQ

func UpdateTimeNEQ(v time.Time) predicate.DeploymentProfile

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

func UpdateTimeNotIn

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

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

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the DeploymentProfile queries.

func ByCreateTime

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

ByCreateTime orders the results by the create_time field.

func ByDeploymentPackageFkField

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

ByDeploymentPackageFkField orders the results by deployment_package_fk field.

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 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 ByUpdateTime

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

ByUpdateTime orders the results by the update_time field.

Jump to

Keyboard shortcuts

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