scheduledtask

package
v1.0.49 Latest Latest
Warning

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

Go to latest
Published: Jan 5, 2026 License: AGPL-3.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the scheduledtask type in the database.
	Label = "scheduled_task"
	// 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"
	// FieldConnectionID holds the string denoting the connection_id field in the database.
	FieldConnectionID = "connection_id"
	// FieldEntityType holds the string denoting the entity_type field in the database.
	FieldEntityType = "entity_type"
	// FieldInterval holds the string denoting the interval field in the database.
	FieldInterval = "interval"
	// FieldEnabled holds the string denoting the enabled field in the database.
	FieldEnabled = "enabled"
	// FieldJobConfig holds the string denoting the job_config field in the database.
	FieldJobConfig = "job_config"
	// FieldTemporalScheduleID holds the string denoting the temporal_schedule_id field in the database.
	FieldTemporalScheduleID = "temporal_schedule_id"
	// Table holds the table name of the scheduledtask in the database.
	Table = "scheduled_tasks"
)

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
	// ConnectionIDValidator is a validator for the "connection_id" field. It is called by the builders before save.
	ConnectionIDValidator func(string) error
	// EntityTypeValidator is a validator for the "entity_type" field. It is called by the builders before save.
	EntityTypeValidator func(string) error
	// IntervalValidator is a validator for the "interval" field. It is called by the builders before save.
	IntervalValidator func(string) error
	// DefaultEnabled holds the default value on creation for the "enabled" field.
	DefaultEnabled bool
)

Columns holds all SQL columns for scheduledtask fields.

Functions

func And

And groups predicates with the AND operator between them.

func ConnectionID

func ConnectionID(v string) predicate.ScheduledTask

ConnectionID applies equality check predicate on the "connection_id" field. It's identical to ConnectionIDEQ.

func ConnectionIDContains

func ConnectionIDContains(v string) predicate.ScheduledTask

ConnectionIDContains applies the Contains predicate on the "connection_id" field.

func ConnectionIDContainsFold

func ConnectionIDContainsFold(v string) predicate.ScheduledTask

ConnectionIDContainsFold applies the ContainsFold predicate on the "connection_id" field.

func ConnectionIDEQ

func ConnectionIDEQ(v string) predicate.ScheduledTask

ConnectionIDEQ applies the EQ predicate on the "connection_id" field.

func ConnectionIDEqualFold

func ConnectionIDEqualFold(v string) predicate.ScheduledTask

ConnectionIDEqualFold applies the EqualFold predicate on the "connection_id" field.

func ConnectionIDGT

func ConnectionIDGT(v string) predicate.ScheduledTask

ConnectionIDGT applies the GT predicate on the "connection_id" field.

func ConnectionIDGTE

func ConnectionIDGTE(v string) predicate.ScheduledTask

ConnectionIDGTE applies the GTE predicate on the "connection_id" field.

func ConnectionIDHasPrefix

func ConnectionIDHasPrefix(v string) predicate.ScheduledTask

ConnectionIDHasPrefix applies the HasPrefix predicate on the "connection_id" field.

func ConnectionIDHasSuffix

func ConnectionIDHasSuffix(v string) predicate.ScheduledTask

ConnectionIDHasSuffix applies the HasSuffix predicate on the "connection_id" field.

func ConnectionIDIn

func ConnectionIDIn(vs ...string) predicate.ScheduledTask

ConnectionIDIn applies the In predicate on the "connection_id" field.

func ConnectionIDLT

func ConnectionIDLT(v string) predicate.ScheduledTask

ConnectionIDLT applies the LT predicate on the "connection_id" field.

func ConnectionIDLTE

func ConnectionIDLTE(v string) predicate.ScheduledTask

ConnectionIDLTE applies the LTE predicate on the "connection_id" field.

func ConnectionIDNEQ

func ConnectionIDNEQ(v string) predicate.ScheduledTask

ConnectionIDNEQ applies the NEQ predicate on the "connection_id" field.

func ConnectionIDNotIn

func ConnectionIDNotIn(vs ...string) predicate.ScheduledTask

ConnectionIDNotIn applies the NotIn predicate on the "connection_id" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.ScheduledTask

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.ScheduledTask

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.ScheduledTask

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.ScheduledTask

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.ScheduledTask

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.ScheduledTask

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.ScheduledTask

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

func CreatedAtNotIn

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

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

func CreatedBy

func CreatedBy(v string) predicate.ScheduledTask

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

func CreatedByContains

func CreatedByContains(v string) predicate.ScheduledTask

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.ScheduledTask

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.ScheduledTask

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.ScheduledTask

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

func CreatedByGT

func CreatedByGT(v string) predicate.ScheduledTask

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.ScheduledTask

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.ScheduledTask

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.ScheduledTask

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.ScheduledTask

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

func CreatedByLT

func CreatedByLT(v string) predicate.ScheduledTask

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.ScheduledTask

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.ScheduledTask

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.ScheduledTask

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

func Enabled

func Enabled(v bool) predicate.ScheduledTask

Enabled applies equality check predicate on the "enabled" field. It's identical to EnabledEQ.

func EnabledEQ

func EnabledEQ(v bool) predicate.ScheduledTask

EnabledEQ applies the EQ predicate on the "enabled" field.

func EnabledNEQ

func EnabledNEQ(v bool) predicate.ScheduledTask

EnabledNEQ applies the NEQ predicate on the "enabled" field.

func EntityType

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

func EntityTypeContains

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

func EntityTypeContainsFold

func EntityTypeContainsFold(v types.ScheduledTaskEntityType) predicate.ScheduledTask

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

func EntityTypeEQ

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

func EntityTypeEqualFold

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

func EntityTypeGT

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

func EntityTypeGTE

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

func EntityTypeHasPrefix

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

func EntityTypeHasSuffix

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

func EntityTypeIn

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

func EntityTypeLT

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

func EntityTypeLTE

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

func EntityTypeNEQ

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

func EntityTypeNotIn

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

func EnvironmentID

func EnvironmentID(v string) predicate.ScheduledTask

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

func EnvironmentIDContains

func EnvironmentIDContains(v string) predicate.ScheduledTask

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

func EnvironmentIDContainsFold

func EnvironmentIDContainsFold(v string) predicate.ScheduledTask

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

func EnvironmentIDEQ

func EnvironmentIDEQ(v string) predicate.ScheduledTask

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

func EnvironmentIDEqualFold

func EnvironmentIDEqualFold(v string) predicate.ScheduledTask

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

func EnvironmentIDGT

func EnvironmentIDGT(v string) predicate.ScheduledTask

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

func EnvironmentIDGTE

func EnvironmentIDGTE(v string) predicate.ScheduledTask

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

func EnvironmentIDHasPrefix

func EnvironmentIDHasPrefix(v string) predicate.ScheduledTask

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

func EnvironmentIDHasSuffix

func EnvironmentIDHasSuffix(v string) predicate.ScheduledTask

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

func EnvironmentIDIn

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

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

func EnvironmentIDIsNil

func EnvironmentIDIsNil() predicate.ScheduledTask

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

func EnvironmentIDLT

func EnvironmentIDLT(v string) predicate.ScheduledTask

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

func EnvironmentIDLTE

func EnvironmentIDLTE(v string) predicate.ScheduledTask

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

func EnvironmentIDNEQ

func EnvironmentIDNEQ(v string) predicate.ScheduledTask

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

func EnvironmentIDNotIn

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

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

func EnvironmentIDNotNil

func EnvironmentIDNotNil() predicate.ScheduledTask

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

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

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.ScheduledTask

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...string) predicate.ScheduledTask

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.ScheduledTask

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.ScheduledTask

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.ScheduledTask

IDNotIn applies the NotIn predicate on the ID field.

func Interval

Interval applies equality check predicate on the "interval" field. It's identical to IntervalEQ.

func IntervalContains

IntervalContains applies the Contains predicate on the "interval" field.

func IntervalContainsFold

func IntervalContainsFold(v types.ScheduledTaskInterval) predicate.ScheduledTask

IntervalContainsFold applies the ContainsFold predicate on the "interval" field.

func IntervalEQ

IntervalEQ applies the EQ predicate on the "interval" field.

func IntervalEqualFold

IntervalEqualFold applies the EqualFold predicate on the "interval" field.

func IntervalGT

IntervalGT applies the GT predicate on the "interval" field.

func IntervalGTE

IntervalGTE applies the GTE predicate on the "interval" field.

func IntervalHasPrefix

IntervalHasPrefix applies the HasPrefix predicate on the "interval" field.

func IntervalHasSuffix

IntervalHasSuffix applies the HasSuffix predicate on the "interval" field.

func IntervalIn

IntervalIn applies the In predicate on the "interval" field.

func IntervalLT

IntervalLT applies the LT predicate on the "interval" field.

func IntervalLTE

IntervalLTE applies the LTE predicate on the "interval" field.

func IntervalNEQ

IntervalNEQ applies the NEQ predicate on the "interval" field.

func IntervalNotIn

IntervalNotIn applies the NotIn predicate on the "interval" field.

func JobConfigIsNil

func JobConfigIsNil() predicate.ScheduledTask

JobConfigIsNil applies the IsNil predicate on the "job_config" field.

func JobConfigNotNil

func JobConfigNotNil() predicate.ScheduledTask

JobConfigNotNil applies the NotNil predicate on the "job_config" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func Status

func Status(v string) predicate.ScheduledTask

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

func StatusContains

func StatusContains(v string) predicate.ScheduledTask

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

func StatusContainsFold

func StatusContainsFold(v string) predicate.ScheduledTask

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

func StatusEQ

func StatusEQ(v string) predicate.ScheduledTask

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

func StatusEqualFold

func StatusEqualFold(v string) predicate.ScheduledTask

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

func StatusGT

func StatusGT(v string) predicate.ScheduledTask

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

func StatusGTE

func StatusGTE(v string) predicate.ScheduledTask

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

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.ScheduledTask

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

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.ScheduledTask

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

func StatusIn

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

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

func StatusLT

func StatusLT(v string) predicate.ScheduledTask

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

func StatusLTE

func StatusLTE(v string) predicate.ScheduledTask

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

func StatusNEQ

func StatusNEQ(v string) predicate.ScheduledTask

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

func StatusNotIn

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

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

func TemporalScheduleID

func TemporalScheduleID(v string) predicate.ScheduledTask

TemporalScheduleID applies equality check predicate on the "temporal_schedule_id" field. It's identical to TemporalScheduleIDEQ.

func TemporalScheduleIDContains

func TemporalScheduleIDContains(v string) predicate.ScheduledTask

TemporalScheduleIDContains applies the Contains predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDContainsFold

func TemporalScheduleIDContainsFold(v string) predicate.ScheduledTask

TemporalScheduleIDContainsFold applies the ContainsFold predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDEQ

func TemporalScheduleIDEQ(v string) predicate.ScheduledTask

TemporalScheduleIDEQ applies the EQ predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDEqualFold

func TemporalScheduleIDEqualFold(v string) predicate.ScheduledTask

TemporalScheduleIDEqualFold applies the EqualFold predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDGT

func TemporalScheduleIDGT(v string) predicate.ScheduledTask

TemporalScheduleIDGT applies the GT predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDGTE

func TemporalScheduleIDGTE(v string) predicate.ScheduledTask

TemporalScheduleIDGTE applies the GTE predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDHasPrefix

func TemporalScheduleIDHasPrefix(v string) predicate.ScheduledTask

TemporalScheduleIDHasPrefix applies the HasPrefix predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDHasSuffix

func TemporalScheduleIDHasSuffix(v string) predicate.ScheduledTask

TemporalScheduleIDHasSuffix applies the HasSuffix predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDIn

func TemporalScheduleIDIn(vs ...string) predicate.ScheduledTask

TemporalScheduleIDIn applies the In predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDIsNil

func TemporalScheduleIDIsNil() predicate.ScheduledTask

TemporalScheduleIDIsNil applies the IsNil predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDLT

func TemporalScheduleIDLT(v string) predicate.ScheduledTask

TemporalScheduleIDLT applies the LT predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDLTE

func TemporalScheduleIDLTE(v string) predicate.ScheduledTask

TemporalScheduleIDLTE applies the LTE predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDNEQ

func TemporalScheduleIDNEQ(v string) predicate.ScheduledTask

TemporalScheduleIDNEQ applies the NEQ predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDNotIn

func TemporalScheduleIDNotIn(vs ...string) predicate.ScheduledTask

TemporalScheduleIDNotIn applies the NotIn predicate on the "temporal_schedule_id" field.

func TemporalScheduleIDNotNil

func TemporalScheduleIDNotNil() predicate.ScheduledTask

TemporalScheduleIDNotNil applies the NotNil predicate on the "temporal_schedule_id" field.

func TenantID

func TenantID(v string) predicate.ScheduledTask

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

func TenantIDContains

func TenantIDContains(v string) predicate.ScheduledTask

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

func TenantIDContainsFold

func TenantIDContainsFold(v string) predicate.ScheduledTask

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

func TenantIDEQ

func TenantIDEQ(v string) predicate.ScheduledTask

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

func TenantIDEqualFold

func TenantIDEqualFold(v string) predicate.ScheduledTask

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

func TenantIDGT

func TenantIDGT(v string) predicate.ScheduledTask

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

func TenantIDGTE

func TenantIDGTE(v string) predicate.ScheduledTask

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

func TenantIDHasPrefix

func TenantIDHasPrefix(v string) predicate.ScheduledTask

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

func TenantIDHasSuffix

func TenantIDHasSuffix(v string) predicate.ScheduledTask

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

func TenantIDIn

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

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

func TenantIDLT

func TenantIDLT(v string) predicate.ScheduledTask

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

func TenantIDLTE

func TenantIDLTE(v string) predicate.ScheduledTask

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

func TenantIDNEQ

func TenantIDNEQ(v string) predicate.ScheduledTask

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

func TenantIDNotIn

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

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

func UpdatedAt

func UpdatedAt(v time.Time) predicate.ScheduledTask

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.ScheduledTask

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.ScheduledTask

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.ScheduledTask

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.ScheduledTask

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.ScheduledTask

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.ScheduledTask

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

func UpdatedAtNotIn

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

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

func UpdatedBy

func UpdatedBy(v string) predicate.ScheduledTask

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.ScheduledTask

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.ScheduledTask

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.ScheduledTask

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.ScheduledTask

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.ScheduledTask

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.ScheduledTask

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.ScheduledTask

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.ScheduledTask

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.ScheduledTask

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.ScheduledTask

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.ScheduledTask

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.ScheduledTask

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.ScheduledTask

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 ScheduledTask queries.

func ByConnectionID

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

ByConnectionID orders the results by the connection_id 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 ByEnabled

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

ByEnabled orders the results by the enabled 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 ByInterval

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

ByInterval orders the results by the interval field.

func ByStatus

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

ByStatus orders the results by the status field.

func ByTemporalScheduleID

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

ByTemporalScheduleID orders the results by the temporal_schedule_id 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