addonassociation

package
v1.0.21 Latest Latest
Warning

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

Go to latest
Published: Aug 13, 2025 License: AGPL-3.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the addonassociation type in the database.
	Label = "addon_association"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldTenantID holds the string denoting the tenant_id field in the database.
	FieldTenantID = "tenant_id"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldCreatedBy holds the string denoting the created_by field in the database.
	FieldCreatedBy = "created_by"
	// FieldUpdatedBy holds the string denoting the updated_by field in the database.
	FieldUpdatedBy = "updated_by"
	// FieldEnvironmentID holds the string denoting the environment_id field in the database.
	FieldEnvironmentID = "environment_id"
	// FieldEntityID holds the string denoting the entity_id field in the database.
	FieldEntityID = "entity_id"
	// FieldEntityType holds the string denoting the entity_type field in the database.
	FieldEntityType = "entity_type"
	// FieldAddonID holds the string denoting the addon_id field in the database.
	FieldAddonID = "addon_id"
	// FieldStartDate holds the string denoting the start_date field in the database.
	FieldStartDate = "start_date"
	// FieldEndDate holds the string denoting the end_date field in the database.
	FieldEndDate = "end_date"
	// FieldAddonStatus holds the string denoting the addon_status field in the database.
	FieldAddonStatus = "addon_status"
	// FieldCancellationReason holds the string denoting the cancellation_reason field in the database.
	FieldCancellationReason = "cancellation_reason"
	// FieldCancelledAt holds the string denoting the cancelled_at field in the database.
	FieldCancelledAt = "cancelled_at"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// Table holds the table name of the addonassociation in the database.
	Table = "addon_associations"
)

Variables

View Source
var (
	// TenantIDValidator is a validator for the "tenant_id" field. It is called by the builders before save.
	TenantIDValidator func(string) error
	// DefaultStatus holds the default value on creation for the "status" field.
	DefaultStatus string
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() time.Time
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() time.Time
	// DefaultEnvironmentID holds the default value on creation for the "environment_id" field.
	DefaultEnvironmentID string
	// EntityIDValidator is a validator for the "entity_id" field. It is called by the builders before save.
	EntityIDValidator func(string) error
	// EntityTypeValidator is a validator for the "entity_type" field. It is called by the builders before save.
	EntityTypeValidator func(string) error
	// AddonIDValidator is a validator for the "addon_id" field. It is called by the builders before save.
	AddonIDValidator func(string) error
	// DefaultStartDate holds the default value on creation for the "start_date" field.
	DefaultStartDate func() time.Time
	// DefaultAddonStatus holds the default value on creation for the "addon_status" field.
	DefaultAddonStatus string
	// AddonStatusValidator is a validator for the "addon_status" field. It is called by the builders before save.
	AddonStatusValidator func(string) error
)

Columns holds all SQL columns for addonassociation fields.

Functions

func AddonID

AddonID applies equality check predicate on the "addon_id" field. It's identical to AddonIDEQ.

func AddonIDContains

func AddonIDContains(v string) predicate.AddonAssociation

AddonIDContains applies the Contains predicate on the "addon_id" field.

func AddonIDContainsFold

func AddonIDContainsFold(v string) predicate.AddonAssociation

AddonIDContainsFold applies the ContainsFold predicate on the "addon_id" field.

func AddonIDEQ

func AddonIDEQ(v string) predicate.AddonAssociation

AddonIDEQ applies the EQ predicate on the "addon_id" field.

func AddonIDEqualFold

func AddonIDEqualFold(v string) predicate.AddonAssociation

AddonIDEqualFold applies the EqualFold predicate on the "addon_id" field.

func AddonIDGT

func AddonIDGT(v string) predicate.AddonAssociation

AddonIDGT applies the GT predicate on the "addon_id" field.

func AddonIDGTE

func AddonIDGTE(v string) predicate.AddonAssociation

AddonIDGTE applies the GTE predicate on the "addon_id" field.

func AddonIDHasPrefix

func AddonIDHasPrefix(v string) predicate.AddonAssociation

AddonIDHasPrefix applies the HasPrefix predicate on the "addon_id" field.

func AddonIDHasSuffix

func AddonIDHasSuffix(v string) predicate.AddonAssociation

AddonIDHasSuffix applies the HasSuffix predicate on the "addon_id" field.

func AddonIDIn

func AddonIDIn(vs ...string) predicate.AddonAssociation

AddonIDIn applies the In predicate on the "addon_id" field.

func AddonIDLT

func AddonIDLT(v string) predicate.AddonAssociation

AddonIDLT applies the LT predicate on the "addon_id" field.

func AddonIDLTE

func AddonIDLTE(v string) predicate.AddonAssociation

AddonIDLTE applies the LTE predicate on the "addon_id" field.

func AddonIDNEQ

func AddonIDNEQ(v string) predicate.AddonAssociation

AddonIDNEQ applies the NEQ predicate on the "addon_id" field.

func AddonIDNotIn

func AddonIDNotIn(vs ...string) predicate.AddonAssociation

AddonIDNotIn applies the NotIn predicate on the "addon_id" field.

func AddonStatus

func AddonStatus(v string) predicate.AddonAssociation

AddonStatus applies equality check predicate on the "addon_status" field. It's identical to AddonStatusEQ.

func AddonStatusContains

func AddonStatusContains(v string) predicate.AddonAssociation

AddonStatusContains applies the Contains predicate on the "addon_status" field.

func AddonStatusContainsFold

func AddonStatusContainsFold(v string) predicate.AddonAssociation

AddonStatusContainsFold applies the ContainsFold predicate on the "addon_status" field.

func AddonStatusEQ

func AddonStatusEQ(v string) predicate.AddonAssociation

AddonStatusEQ applies the EQ predicate on the "addon_status" field.

func AddonStatusEqualFold

func AddonStatusEqualFold(v string) predicate.AddonAssociation

AddonStatusEqualFold applies the EqualFold predicate on the "addon_status" field.

func AddonStatusGT

func AddonStatusGT(v string) predicate.AddonAssociation

AddonStatusGT applies the GT predicate on the "addon_status" field.

func AddonStatusGTE

func AddonStatusGTE(v string) predicate.AddonAssociation

AddonStatusGTE applies the GTE predicate on the "addon_status" field.

func AddonStatusHasPrefix

func AddonStatusHasPrefix(v string) predicate.AddonAssociation

AddonStatusHasPrefix applies the HasPrefix predicate on the "addon_status" field.

func AddonStatusHasSuffix

func AddonStatusHasSuffix(v string) predicate.AddonAssociation

AddonStatusHasSuffix applies the HasSuffix predicate on the "addon_status" field.

func AddonStatusIn

func AddonStatusIn(vs ...string) predicate.AddonAssociation

AddonStatusIn applies the In predicate on the "addon_status" field.

func AddonStatusLT

func AddonStatusLT(v string) predicate.AddonAssociation

AddonStatusLT applies the LT predicate on the "addon_status" field.

func AddonStatusLTE

func AddonStatusLTE(v string) predicate.AddonAssociation

AddonStatusLTE applies the LTE predicate on the "addon_status" field.

func AddonStatusNEQ

func AddonStatusNEQ(v string) predicate.AddonAssociation

AddonStatusNEQ applies the NEQ predicate on the "addon_status" field.

func AddonStatusNotIn

func AddonStatusNotIn(vs ...string) predicate.AddonAssociation

AddonStatusNotIn applies the NotIn predicate on the "addon_status" field.

func And

And groups predicates with the AND operator between them.

func CancellationReason

func CancellationReason(v string) predicate.AddonAssociation

CancellationReason applies equality check predicate on the "cancellation_reason" field. It's identical to CancellationReasonEQ.

func CancellationReasonContains

func CancellationReasonContains(v string) predicate.AddonAssociation

CancellationReasonContains applies the Contains predicate on the "cancellation_reason" field.

func CancellationReasonContainsFold

func CancellationReasonContainsFold(v string) predicate.AddonAssociation

CancellationReasonContainsFold applies the ContainsFold predicate on the "cancellation_reason" field.

func CancellationReasonEQ

func CancellationReasonEQ(v string) predicate.AddonAssociation

CancellationReasonEQ applies the EQ predicate on the "cancellation_reason" field.

func CancellationReasonEqualFold

func CancellationReasonEqualFold(v string) predicate.AddonAssociation

CancellationReasonEqualFold applies the EqualFold predicate on the "cancellation_reason" field.

func CancellationReasonGT

func CancellationReasonGT(v string) predicate.AddonAssociation

CancellationReasonGT applies the GT predicate on the "cancellation_reason" field.

func CancellationReasonGTE

func CancellationReasonGTE(v string) predicate.AddonAssociation

CancellationReasonGTE applies the GTE predicate on the "cancellation_reason" field.

func CancellationReasonHasPrefix

func CancellationReasonHasPrefix(v string) predicate.AddonAssociation

CancellationReasonHasPrefix applies the HasPrefix predicate on the "cancellation_reason" field.

func CancellationReasonHasSuffix

func CancellationReasonHasSuffix(v string) predicate.AddonAssociation

CancellationReasonHasSuffix applies the HasSuffix predicate on the "cancellation_reason" field.

func CancellationReasonIn

func CancellationReasonIn(vs ...string) predicate.AddonAssociation

CancellationReasonIn applies the In predicate on the "cancellation_reason" field.

func CancellationReasonIsNil

func CancellationReasonIsNil() predicate.AddonAssociation

CancellationReasonIsNil applies the IsNil predicate on the "cancellation_reason" field.

func CancellationReasonLT

func CancellationReasonLT(v string) predicate.AddonAssociation

CancellationReasonLT applies the LT predicate on the "cancellation_reason" field.

func CancellationReasonLTE

func CancellationReasonLTE(v string) predicate.AddonAssociation

CancellationReasonLTE applies the LTE predicate on the "cancellation_reason" field.

func CancellationReasonNEQ

func CancellationReasonNEQ(v string) predicate.AddonAssociation

CancellationReasonNEQ applies the NEQ predicate on the "cancellation_reason" field.

func CancellationReasonNotIn

func CancellationReasonNotIn(vs ...string) predicate.AddonAssociation

CancellationReasonNotIn applies the NotIn predicate on the "cancellation_reason" field.

func CancellationReasonNotNil

func CancellationReasonNotNil() predicate.AddonAssociation

CancellationReasonNotNil applies the NotNil predicate on the "cancellation_reason" field.

func CancelledAt

func CancelledAt(v time.Time) predicate.AddonAssociation

CancelledAt applies equality check predicate on the "cancelled_at" field. It's identical to CancelledAtEQ.

func CancelledAtEQ

func CancelledAtEQ(v time.Time) predicate.AddonAssociation

CancelledAtEQ applies the EQ predicate on the "cancelled_at" field.

func CancelledAtGT

func CancelledAtGT(v time.Time) predicate.AddonAssociation

CancelledAtGT applies the GT predicate on the "cancelled_at" field.

func CancelledAtGTE

func CancelledAtGTE(v time.Time) predicate.AddonAssociation

CancelledAtGTE applies the GTE predicate on the "cancelled_at" field.

func CancelledAtIn

func CancelledAtIn(vs ...time.Time) predicate.AddonAssociation

CancelledAtIn applies the In predicate on the "cancelled_at" field.

func CancelledAtIsNil

func CancelledAtIsNil() predicate.AddonAssociation

CancelledAtIsNil applies the IsNil predicate on the "cancelled_at" field.

func CancelledAtLT

func CancelledAtLT(v time.Time) predicate.AddonAssociation

CancelledAtLT applies the LT predicate on the "cancelled_at" field.

func CancelledAtLTE

func CancelledAtLTE(v time.Time) predicate.AddonAssociation

CancelledAtLTE applies the LTE predicate on the "cancelled_at" field.

func CancelledAtNEQ

func CancelledAtNEQ(v time.Time) predicate.AddonAssociation

CancelledAtNEQ applies the NEQ predicate on the "cancelled_at" field.

func CancelledAtNotIn

func CancelledAtNotIn(vs ...time.Time) predicate.AddonAssociation

CancelledAtNotIn applies the NotIn predicate on the "cancelled_at" field.

func CancelledAtNotNil

func CancelledAtNotNil() predicate.AddonAssociation

CancelledAtNotNil applies the NotNil predicate on the "cancelled_at" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.AddonAssociation

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.AddonAssociation

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.AddonAssociation

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.AddonAssociation

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.AddonAssociation

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.AddonAssociation

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.AddonAssociation

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

func CreatedAtNotIn

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

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

func CreatedBy

func CreatedBy(v string) predicate.AddonAssociation

CreatedBy applies equality check predicate on the "created_by" field. It's identical to CreatedByEQ.

func CreatedByContains

func CreatedByContains(v string) predicate.AddonAssociation

CreatedByContains applies the Contains predicate on the "created_by" field.

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.AddonAssociation

CreatedByContainsFold applies the ContainsFold predicate on the "created_by" field.

func CreatedByEQ

func CreatedByEQ(v string) predicate.AddonAssociation

CreatedByEQ applies the EQ predicate on the "created_by" field.

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.AddonAssociation

CreatedByEqualFold applies the EqualFold predicate on the "created_by" field.

func CreatedByGT

func CreatedByGT(v string) predicate.AddonAssociation

CreatedByGT applies the GT predicate on the "created_by" field.

func CreatedByGTE

func CreatedByGTE(v string) predicate.AddonAssociation

CreatedByGTE applies the GTE predicate on the "created_by" field.

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.AddonAssociation

CreatedByHasPrefix applies the HasPrefix predicate on the "created_by" field.

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.AddonAssociation

CreatedByHasSuffix applies the HasSuffix predicate on the "created_by" field.

func CreatedByIn

func CreatedByIn(vs ...string) predicate.AddonAssociation

CreatedByIn applies the In predicate on the "created_by" field.

func CreatedByIsNil

func CreatedByIsNil() predicate.AddonAssociation

CreatedByIsNil applies the IsNil predicate on the "created_by" field.

func CreatedByLT

func CreatedByLT(v string) predicate.AddonAssociation

CreatedByLT applies the LT predicate on the "created_by" field.

func CreatedByLTE

func CreatedByLTE(v string) predicate.AddonAssociation

CreatedByLTE applies the LTE predicate on the "created_by" field.

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.AddonAssociation

CreatedByNEQ applies the NEQ predicate on the "created_by" field.

func CreatedByNotIn

func CreatedByNotIn(vs ...string) predicate.AddonAssociation

CreatedByNotIn applies the NotIn predicate on the "created_by" field.

func CreatedByNotNil

func CreatedByNotNil() predicate.AddonAssociation

CreatedByNotNil applies the NotNil predicate on the "created_by" field.

func EndDate

EndDate applies equality check predicate on the "end_date" field. It's identical to EndDateEQ.

func EndDateEQ

func EndDateEQ(v time.Time) predicate.AddonAssociation

EndDateEQ applies the EQ predicate on the "end_date" field.

func EndDateGT

func EndDateGT(v time.Time) predicate.AddonAssociation

EndDateGT applies the GT predicate on the "end_date" field.

func EndDateGTE

func EndDateGTE(v time.Time) predicate.AddonAssociation

EndDateGTE applies the GTE predicate on the "end_date" field.

func EndDateIn

func EndDateIn(vs ...time.Time) predicate.AddonAssociation

EndDateIn applies the In predicate on the "end_date" field.

func EndDateIsNil

func EndDateIsNil() predicate.AddonAssociation

EndDateIsNil applies the IsNil predicate on the "end_date" field.

func EndDateLT

func EndDateLT(v time.Time) predicate.AddonAssociation

EndDateLT applies the LT predicate on the "end_date" field.

func EndDateLTE

func EndDateLTE(v time.Time) predicate.AddonAssociation

EndDateLTE applies the LTE predicate on the "end_date" field.

func EndDateNEQ

func EndDateNEQ(v time.Time) predicate.AddonAssociation

EndDateNEQ applies the NEQ predicate on the "end_date" field.

func EndDateNotIn

func EndDateNotIn(vs ...time.Time) predicate.AddonAssociation

EndDateNotIn applies the NotIn predicate on the "end_date" field.

func EndDateNotNil

func EndDateNotNil() predicate.AddonAssociation

EndDateNotNil applies the NotNil predicate on the "end_date" field.

func EntityID

func EntityID(v string) predicate.AddonAssociation

EntityID applies equality check predicate on the "entity_id" field. It's identical to EntityIDEQ.

func EntityIDContains

func EntityIDContains(v string) predicate.AddonAssociation

EntityIDContains applies the Contains predicate on the "entity_id" field.

func EntityIDContainsFold

func EntityIDContainsFold(v string) predicate.AddonAssociation

EntityIDContainsFold applies the ContainsFold predicate on the "entity_id" field.

func EntityIDEQ

func EntityIDEQ(v string) predicate.AddonAssociation

EntityIDEQ applies the EQ predicate on the "entity_id" field.

func EntityIDEqualFold

func EntityIDEqualFold(v string) predicate.AddonAssociation

EntityIDEqualFold applies the EqualFold predicate on the "entity_id" field.

func EntityIDGT

func EntityIDGT(v string) predicate.AddonAssociation

EntityIDGT applies the GT predicate on the "entity_id" field.

func EntityIDGTE

func EntityIDGTE(v string) predicate.AddonAssociation

EntityIDGTE applies the GTE predicate on the "entity_id" field.

func EntityIDHasPrefix

func EntityIDHasPrefix(v string) predicate.AddonAssociation

EntityIDHasPrefix applies the HasPrefix predicate on the "entity_id" field.

func EntityIDHasSuffix

func EntityIDHasSuffix(v string) predicate.AddonAssociation

EntityIDHasSuffix applies the HasSuffix predicate on the "entity_id" field.

func EntityIDIn

func EntityIDIn(vs ...string) predicate.AddonAssociation

EntityIDIn applies the In predicate on the "entity_id" field.

func EntityIDLT

func EntityIDLT(v string) predicate.AddonAssociation

EntityIDLT applies the LT predicate on the "entity_id" field.

func EntityIDLTE

func EntityIDLTE(v string) predicate.AddonAssociation

EntityIDLTE applies the LTE predicate on the "entity_id" field.

func EntityIDNEQ

func EntityIDNEQ(v string) predicate.AddonAssociation

EntityIDNEQ applies the NEQ predicate on the "entity_id" field.

func EntityIDNotIn

func EntityIDNotIn(vs ...string) predicate.AddonAssociation

EntityIDNotIn applies the NotIn predicate on the "entity_id" field.

func EntityType

func EntityType(v string) predicate.AddonAssociation

EntityType applies equality check predicate on the "entity_type" field. It's identical to EntityTypeEQ.

func EntityTypeContains

func EntityTypeContains(v string) predicate.AddonAssociation

EntityTypeContains applies the Contains predicate on the "entity_type" field.

func EntityTypeContainsFold

func EntityTypeContainsFold(v string) predicate.AddonAssociation

EntityTypeContainsFold applies the ContainsFold predicate on the "entity_type" field.

func EntityTypeEQ

func EntityTypeEQ(v string) predicate.AddonAssociation

EntityTypeEQ applies the EQ predicate on the "entity_type" field.

func EntityTypeEqualFold

func EntityTypeEqualFold(v string) predicate.AddonAssociation

EntityTypeEqualFold applies the EqualFold predicate on the "entity_type" field.

func EntityTypeGT

func EntityTypeGT(v string) predicate.AddonAssociation

EntityTypeGT applies the GT predicate on the "entity_type" field.

func EntityTypeGTE

func EntityTypeGTE(v string) predicate.AddonAssociation

EntityTypeGTE applies the GTE predicate on the "entity_type" field.

func EntityTypeHasPrefix

func EntityTypeHasPrefix(v string) predicate.AddonAssociation

EntityTypeHasPrefix applies the HasPrefix predicate on the "entity_type" field.

func EntityTypeHasSuffix

func EntityTypeHasSuffix(v string) predicate.AddonAssociation

EntityTypeHasSuffix applies the HasSuffix predicate on the "entity_type" field.

func EntityTypeIn

func EntityTypeIn(vs ...string) predicate.AddonAssociation

EntityTypeIn applies the In predicate on the "entity_type" field.

func EntityTypeLT

func EntityTypeLT(v string) predicate.AddonAssociation

EntityTypeLT applies the LT predicate on the "entity_type" field.

func EntityTypeLTE

func EntityTypeLTE(v string) predicate.AddonAssociation

EntityTypeLTE applies the LTE predicate on the "entity_type" field.

func EntityTypeNEQ

func EntityTypeNEQ(v string) predicate.AddonAssociation

EntityTypeNEQ applies the NEQ predicate on the "entity_type" field.

func EntityTypeNotIn

func EntityTypeNotIn(vs ...string) predicate.AddonAssociation

EntityTypeNotIn applies the NotIn predicate on the "entity_type" field.

func EnvironmentID

func EnvironmentID(v string) predicate.AddonAssociation

EnvironmentID applies equality check predicate on the "environment_id" field. It's identical to EnvironmentIDEQ.

func EnvironmentIDContains

func EnvironmentIDContains(v string) predicate.AddonAssociation

EnvironmentIDContains applies the Contains predicate on the "environment_id" field.

func EnvironmentIDContainsFold

func EnvironmentIDContainsFold(v string) predicate.AddonAssociation

EnvironmentIDContainsFold applies the ContainsFold predicate on the "environment_id" field.

func EnvironmentIDEQ

func EnvironmentIDEQ(v string) predicate.AddonAssociation

EnvironmentIDEQ applies the EQ predicate on the "environment_id" field.

func EnvironmentIDEqualFold

func EnvironmentIDEqualFold(v string) predicate.AddonAssociation

EnvironmentIDEqualFold applies the EqualFold predicate on the "environment_id" field.

func EnvironmentIDGT

func EnvironmentIDGT(v string) predicate.AddonAssociation

EnvironmentIDGT applies the GT predicate on the "environment_id" field.

func EnvironmentIDGTE

func EnvironmentIDGTE(v string) predicate.AddonAssociation

EnvironmentIDGTE applies the GTE predicate on the "environment_id" field.

func EnvironmentIDHasPrefix

func EnvironmentIDHasPrefix(v string) predicate.AddonAssociation

EnvironmentIDHasPrefix applies the HasPrefix predicate on the "environment_id" field.

func EnvironmentIDHasSuffix

func EnvironmentIDHasSuffix(v string) predicate.AddonAssociation

EnvironmentIDHasSuffix applies the HasSuffix predicate on the "environment_id" field.

func EnvironmentIDIn

func EnvironmentIDIn(vs ...string) predicate.AddonAssociation

EnvironmentIDIn applies the In predicate on the "environment_id" field.

func EnvironmentIDIsNil

func EnvironmentIDIsNil() predicate.AddonAssociation

EnvironmentIDIsNil applies the IsNil predicate on the "environment_id" field.

func EnvironmentIDLT

func EnvironmentIDLT(v string) predicate.AddonAssociation

EnvironmentIDLT applies the LT predicate on the "environment_id" field.

func EnvironmentIDLTE

func EnvironmentIDLTE(v string) predicate.AddonAssociation

EnvironmentIDLTE applies the LTE predicate on the "environment_id" field.

func EnvironmentIDNEQ

func EnvironmentIDNEQ(v string) predicate.AddonAssociation

EnvironmentIDNEQ applies the NEQ predicate on the "environment_id" field.

func EnvironmentIDNotIn

func EnvironmentIDNotIn(vs ...string) predicate.AddonAssociation

EnvironmentIDNotIn applies the NotIn predicate on the "environment_id" field.

func EnvironmentIDNotNil

func EnvironmentIDNotNil() predicate.AddonAssociation

EnvironmentIDNotNil applies the NotNil predicate on the "environment_id" field.

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.AddonAssociation

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.AddonAssociation

IDEqualFold applies the EqualFold 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 ...string) predicate.AddonAssociation

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 ...string) predicate.AddonAssociation

IDNotIn applies the NotIn predicate on the ID field.

func MetadataIsNil

func MetadataIsNil() predicate.AddonAssociation

MetadataIsNil applies the IsNil predicate on the "metadata" field.

func MetadataNotNil

func MetadataNotNil() predicate.AddonAssociation

MetadataNotNil applies the NotNil predicate on the "metadata" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func StartDate

func StartDate(v time.Time) predicate.AddonAssociation

StartDate applies equality check predicate on the "start_date" field. It's identical to StartDateEQ.

func StartDateEQ

func StartDateEQ(v time.Time) predicate.AddonAssociation

StartDateEQ applies the EQ predicate on the "start_date" field.

func StartDateGT

func StartDateGT(v time.Time) predicate.AddonAssociation

StartDateGT applies the GT predicate on the "start_date" field.

func StartDateGTE

func StartDateGTE(v time.Time) predicate.AddonAssociation

StartDateGTE applies the GTE predicate on the "start_date" field.

func StartDateIn

func StartDateIn(vs ...time.Time) predicate.AddonAssociation

StartDateIn applies the In predicate on the "start_date" field.

func StartDateIsNil

func StartDateIsNil() predicate.AddonAssociation

StartDateIsNil applies the IsNil predicate on the "start_date" field.

func StartDateLT

func StartDateLT(v time.Time) predicate.AddonAssociation

StartDateLT applies the LT predicate on the "start_date" field.

func StartDateLTE

func StartDateLTE(v time.Time) predicate.AddonAssociation

StartDateLTE applies the LTE predicate on the "start_date" field.

func StartDateNEQ

func StartDateNEQ(v time.Time) predicate.AddonAssociation

StartDateNEQ applies the NEQ predicate on the "start_date" field.

func StartDateNotIn

func StartDateNotIn(vs ...time.Time) predicate.AddonAssociation

StartDateNotIn applies the NotIn predicate on the "start_date" field.

func StartDateNotNil

func StartDateNotNil() predicate.AddonAssociation

StartDateNotNil applies the NotNil predicate on the "start_date" field.

func Status

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

func StatusContains

func StatusContains(v string) predicate.AddonAssociation

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

func StatusContainsFold

func StatusContainsFold(v string) predicate.AddonAssociation

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

func StatusEQ

func StatusEQ(v string) predicate.AddonAssociation

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

func StatusEqualFold

func StatusEqualFold(v string) predicate.AddonAssociation

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

func StatusGT

func StatusGT(v string) predicate.AddonAssociation

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

func StatusGTE

func StatusGTE(v string) predicate.AddonAssociation

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

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.AddonAssociation

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

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.AddonAssociation

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

func StatusIn

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

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

func StatusLT

func StatusLT(v string) predicate.AddonAssociation

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

func StatusLTE

func StatusLTE(v string) predicate.AddonAssociation

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

func StatusNEQ

func StatusNEQ(v string) predicate.AddonAssociation

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

func StatusNotIn

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

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

func TenantID

func TenantID(v string) predicate.AddonAssociation

TenantID applies equality check predicate on the "tenant_id" field. It's identical to TenantIDEQ.

func TenantIDContains

func TenantIDContains(v string) predicate.AddonAssociation

TenantIDContains applies the Contains predicate on the "tenant_id" field.

func TenantIDContainsFold

func TenantIDContainsFold(v string) predicate.AddonAssociation

TenantIDContainsFold applies the ContainsFold predicate on the "tenant_id" field.

func TenantIDEQ

func TenantIDEQ(v string) predicate.AddonAssociation

TenantIDEQ applies the EQ predicate on the "tenant_id" field.

func TenantIDEqualFold

func TenantIDEqualFold(v string) predicate.AddonAssociation

TenantIDEqualFold applies the EqualFold predicate on the "tenant_id" field.

func TenantIDGT

func TenantIDGT(v string) predicate.AddonAssociation

TenantIDGT applies the GT predicate on the "tenant_id" field.

func TenantIDGTE

func TenantIDGTE(v string) predicate.AddonAssociation

TenantIDGTE applies the GTE predicate on the "tenant_id" field.

func TenantIDHasPrefix

func TenantIDHasPrefix(v string) predicate.AddonAssociation

TenantIDHasPrefix applies the HasPrefix predicate on the "tenant_id" field.

func TenantIDHasSuffix

func TenantIDHasSuffix(v string) predicate.AddonAssociation

TenantIDHasSuffix applies the HasSuffix predicate on the "tenant_id" field.

func TenantIDIn

func TenantIDIn(vs ...string) predicate.AddonAssociation

TenantIDIn applies the In predicate on the "tenant_id" field.

func TenantIDLT

func TenantIDLT(v string) predicate.AddonAssociation

TenantIDLT applies the LT predicate on the "tenant_id" field.

func TenantIDLTE

func TenantIDLTE(v string) predicate.AddonAssociation

TenantIDLTE applies the LTE predicate on the "tenant_id" field.

func TenantIDNEQ

func TenantIDNEQ(v string) predicate.AddonAssociation

TenantIDNEQ applies the NEQ predicate on the "tenant_id" field.

func TenantIDNotIn

func TenantIDNotIn(vs ...string) predicate.AddonAssociation

TenantIDNotIn applies the NotIn predicate on the "tenant_id" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.AddonAssociation

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.AddonAssociation

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.AddonAssociation

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.AddonAssociation

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.AddonAssociation

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.AddonAssociation

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.AddonAssociation

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

func UpdatedAtNotIn

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

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func UpdatedBy

func UpdatedBy(v string) predicate.AddonAssociation

UpdatedBy applies equality check predicate on the "updated_by" field. It's identical to UpdatedByEQ.

func UpdatedByContains

func UpdatedByContains(v string) predicate.AddonAssociation

UpdatedByContains applies the Contains predicate on the "updated_by" field.

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.AddonAssociation

UpdatedByContainsFold applies the ContainsFold predicate on the "updated_by" field.

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.AddonAssociation

UpdatedByEQ applies the EQ predicate on the "updated_by" field.

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.AddonAssociation

UpdatedByEqualFold applies the EqualFold predicate on the "updated_by" field.

func UpdatedByGT

func UpdatedByGT(v string) predicate.AddonAssociation

UpdatedByGT applies the GT predicate on the "updated_by" field.

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.AddonAssociation

UpdatedByGTE applies the GTE predicate on the "updated_by" field.

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.AddonAssociation

UpdatedByHasPrefix applies the HasPrefix predicate on the "updated_by" field.

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.AddonAssociation

UpdatedByHasSuffix applies the HasSuffix predicate on the "updated_by" field.

func UpdatedByIn

func UpdatedByIn(vs ...string) predicate.AddonAssociation

UpdatedByIn applies the In predicate on the "updated_by" field.

func UpdatedByIsNil

func UpdatedByIsNil() predicate.AddonAssociation

UpdatedByIsNil applies the IsNil predicate on the "updated_by" field.

func UpdatedByLT

func UpdatedByLT(v string) predicate.AddonAssociation

UpdatedByLT applies the LT predicate on the "updated_by" field.

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.AddonAssociation

UpdatedByLTE applies the LTE predicate on the "updated_by" field.

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.AddonAssociation

UpdatedByNEQ applies the NEQ predicate on the "updated_by" field.

func UpdatedByNotIn

func UpdatedByNotIn(vs ...string) predicate.AddonAssociation

UpdatedByNotIn applies the NotIn predicate on the "updated_by" field.

func UpdatedByNotNil

func UpdatedByNotNil() predicate.AddonAssociation

UpdatedByNotNil applies the NotNil predicate on the "updated_by" 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 AddonAssociation queries.

func ByAddonID

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

ByAddonID orders the results by the addon_id field.

func ByAddonStatus

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

ByAddonStatus orders the results by the addon_status field.

func ByCancellationReason

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

ByCancellationReason orders the results by the cancellation_reason field.

func ByCancelledAt

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

ByCancelledAt orders the results by the cancelled_at field.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByCreatedBy

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

ByCreatedBy orders the results by the created_by field.

func ByEndDate

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

ByEndDate orders the results by the end_date field.

func ByEntityID

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

ByEntityID orders the results by the entity_id field.

func ByEntityType

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

ByEntityType orders the results by the entity_type field.

func ByEnvironmentID

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

ByEnvironmentID orders the results by the environment_id field.

func ByID

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

ByID orders the results by the id field.

func ByStartDate

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

ByStartDate orders the results by the start_date field.

func ByStatus

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

ByStatus orders the results by the status field.

func ByTenantID

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

ByTenantID orders the results by the tenant_id field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByUpdatedBy

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

ByUpdatedBy orders the results by the updated_by field.

Jump to

Keyboard shortcuts

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