subscriptionschedule

package
v1.0.60 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the subscriptionschedule type in the database.
	Label = "subscription_schedule"
	// 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"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// FieldSubscriptionID holds the string denoting the subscription_id field in the database.
	FieldSubscriptionID = "subscription_id"
	// FieldScheduleType holds the string denoting the schedule_type field in the database.
	FieldScheduleType = "schedule_type"
	// FieldScheduledAt holds the string denoting the scheduled_at field in the database.
	FieldScheduledAt = "scheduled_at"
	// FieldConfiguration holds the string denoting the configuration field in the database.
	FieldConfiguration = "configuration"
	// FieldExecutedAt holds the string denoting the executed_at field in the database.
	FieldExecutedAt = "executed_at"
	// FieldCancelledAt holds the string denoting the cancelled_at field in the database.
	FieldCancelledAt = "cancelled_at"
	// FieldExecutionResult holds the string denoting the execution_result field in the database.
	FieldExecutionResult = "execution_result"
	// FieldErrorMessage holds the string denoting the error_message field in the database.
	FieldErrorMessage = "error_message"
	// EdgeSubscription holds the string denoting the subscription edge name in mutations.
	EdgeSubscription = "subscription"
	// Table holds the table name of the subscriptionschedule in the database.
	Table = "subscription_schedules"
	// SubscriptionTable is the table that holds the subscription relation/edge.
	SubscriptionTable = "subscription_schedules"
	// SubscriptionInverseTable is the table name for the Subscription entity.
	// It exists in this package in order to avoid circular dependency with the "subscription" package.
	SubscriptionInverseTable = "subscriptions"
	// SubscriptionColumn is the table column denoting the subscription relation/edge.
	SubscriptionColumn = "subscription_id"
)

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
	// SubscriptionIDValidator is a validator for the "subscription_id" field. It is called by the builders before save.
	SubscriptionIDValidator func(string) error
	// ScheduleTypeValidator is a validator for the "schedule_type" field. It is called by the builders before save.
	ScheduleTypeValidator func(string) error
)

Columns holds all SQL columns for subscriptionschedule fields.

Functions

func And

And groups predicates with the AND operator between them.

func CancelledAt added in v1.0.60

func CancelledAt(v time.Time) predicate.SubscriptionSchedule

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

func CancelledAtEQ added in v1.0.60

func CancelledAtEQ(v time.Time) predicate.SubscriptionSchedule

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

func CancelledAtGT added in v1.0.60

func CancelledAtGT(v time.Time) predicate.SubscriptionSchedule

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

func CancelledAtGTE added in v1.0.60

func CancelledAtGTE(v time.Time) predicate.SubscriptionSchedule

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

func CancelledAtIn added in v1.0.60

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

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

func CancelledAtIsNil added in v1.0.60

func CancelledAtIsNil() predicate.SubscriptionSchedule

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

func CancelledAtLT added in v1.0.60

func CancelledAtLT(v time.Time) predicate.SubscriptionSchedule

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

func CancelledAtLTE added in v1.0.60

func CancelledAtLTE(v time.Time) predicate.SubscriptionSchedule

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

func CancelledAtNEQ added in v1.0.60

func CancelledAtNEQ(v time.Time) predicate.SubscriptionSchedule

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

func CancelledAtNotIn added in v1.0.60

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

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

func CancelledAtNotNil added in v1.0.60

func CancelledAtNotNil() predicate.SubscriptionSchedule

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

func CreatedAt

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.SubscriptionSchedule

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.SubscriptionSchedule

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.SubscriptionSchedule

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.SubscriptionSchedule

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.SubscriptionSchedule

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.SubscriptionSchedule

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

func CreatedAtNotIn

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

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

func CreatedBy

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

func CreatedByContains

func CreatedByContains(v string) predicate.SubscriptionSchedule

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.SubscriptionSchedule

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.SubscriptionSchedule

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.SubscriptionSchedule

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

func CreatedByGT

func CreatedByGT(v string) predicate.SubscriptionSchedule

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.SubscriptionSchedule

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.SubscriptionSchedule

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.SubscriptionSchedule

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.SubscriptionSchedule

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

func CreatedByLT

func CreatedByLT(v string) predicate.SubscriptionSchedule

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.SubscriptionSchedule

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.SubscriptionSchedule

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.SubscriptionSchedule

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

func EnvironmentID

func EnvironmentID(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDContains

func EnvironmentIDContains(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDContainsFold

func EnvironmentIDContainsFold(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDEQ

func EnvironmentIDEQ(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDEqualFold

func EnvironmentIDEqualFold(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDGT

func EnvironmentIDGT(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDGTE

func EnvironmentIDGTE(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDHasPrefix

func EnvironmentIDHasPrefix(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDHasSuffix

func EnvironmentIDHasSuffix(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDIn

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

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

func EnvironmentIDIsNil

func EnvironmentIDIsNil() predicate.SubscriptionSchedule

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

func EnvironmentIDLT

func EnvironmentIDLT(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDLTE

func EnvironmentIDLTE(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDNEQ

func EnvironmentIDNEQ(v string) predicate.SubscriptionSchedule

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

func EnvironmentIDNotIn

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

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

func EnvironmentIDNotNil

func EnvironmentIDNotNil() predicate.SubscriptionSchedule

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

func ErrorMessage added in v1.0.60

func ErrorMessage(v string) predicate.SubscriptionSchedule

ErrorMessage applies equality check predicate on the "error_message" field. It's identical to ErrorMessageEQ.

func ErrorMessageContains added in v1.0.60

func ErrorMessageContains(v string) predicate.SubscriptionSchedule

ErrorMessageContains applies the Contains predicate on the "error_message" field.

func ErrorMessageContainsFold added in v1.0.60

func ErrorMessageContainsFold(v string) predicate.SubscriptionSchedule

ErrorMessageContainsFold applies the ContainsFold predicate on the "error_message" field.

func ErrorMessageEQ added in v1.0.60

func ErrorMessageEQ(v string) predicate.SubscriptionSchedule

ErrorMessageEQ applies the EQ predicate on the "error_message" field.

func ErrorMessageEqualFold added in v1.0.60

func ErrorMessageEqualFold(v string) predicate.SubscriptionSchedule

ErrorMessageEqualFold applies the EqualFold predicate on the "error_message" field.

func ErrorMessageGT added in v1.0.60

func ErrorMessageGT(v string) predicate.SubscriptionSchedule

ErrorMessageGT applies the GT predicate on the "error_message" field.

func ErrorMessageGTE added in v1.0.60

func ErrorMessageGTE(v string) predicate.SubscriptionSchedule

ErrorMessageGTE applies the GTE predicate on the "error_message" field.

func ErrorMessageHasPrefix added in v1.0.60

func ErrorMessageHasPrefix(v string) predicate.SubscriptionSchedule

ErrorMessageHasPrefix applies the HasPrefix predicate on the "error_message" field.

func ErrorMessageHasSuffix added in v1.0.60

func ErrorMessageHasSuffix(v string) predicate.SubscriptionSchedule

ErrorMessageHasSuffix applies the HasSuffix predicate on the "error_message" field.

func ErrorMessageIn added in v1.0.60

func ErrorMessageIn(vs ...string) predicate.SubscriptionSchedule

ErrorMessageIn applies the In predicate on the "error_message" field.

func ErrorMessageIsNil added in v1.0.60

func ErrorMessageIsNil() predicate.SubscriptionSchedule

ErrorMessageIsNil applies the IsNil predicate on the "error_message" field.

func ErrorMessageLT added in v1.0.60

func ErrorMessageLT(v string) predicate.SubscriptionSchedule

ErrorMessageLT applies the LT predicate on the "error_message" field.

func ErrorMessageLTE added in v1.0.60

func ErrorMessageLTE(v string) predicate.SubscriptionSchedule

ErrorMessageLTE applies the LTE predicate on the "error_message" field.

func ErrorMessageNEQ added in v1.0.60

func ErrorMessageNEQ(v string) predicate.SubscriptionSchedule

ErrorMessageNEQ applies the NEQ predicate on the "error_message" field.

func ErrorMessageNotIn added in v1.0.60

func ErrorMessageNotIn(vs ...string) predicate.SubscriptionSchedule

ErrorMessageNotIn applies the NotIn predicate on the "error_message" field.

func ErrorMessageNotNil added in v1.0.60

func ErrorMessageNotNil() predicate.SubscriptionSchedule

ErrorMessageNotNil applies the NotNil predicate on the "error_message" field.

func ExecutedAt added in v1.0.60

ExecutedAt applies equality check predicate on the "executed_at" field. It's identical to ExecutedAtEQ.

func ExecutedAtEQ added in v1.0.60

func ExecutedAtEQ(v time.Time) predicate.SubscriptionSchedule

ExecutedAtEQ applies the EQ predicate on the "executed_at" field.

func ExecutedAtGT added in v1.0.60

func ExecutedAtGT(v time.Time) predicate.SubscriptionSchedule

ExecutedAtGT applies the GT predicate on the "executed_at" field.

func ExecutedAtGTE added in v1.0.60

func ExecutedAtGTE(v time.Time) predicate.SubscriptionSchedule

ExecutedAtGTE applies the GTE predicate on the "executed_at" field.

func ExecutedAtIn added in v1.0.60

func ExecutedAtIn(vs ...time.Time) predicate.SubscriptionSchedule

ExecutedAtIn applies the In predicate on the "executed_at" field.

func ExecutedAtIsNil added in v1.0.60

func ExecutedAtIsNil() predicate.SubscriptionSchedule

ExecutedAtIsNil applies the IsNil predicate on the "executed_at" field.

func ExecutedAtLT added in v1.0.60

func ExecutedAtLT(v time.Time) predicate.SubscriptionSchedule

ExecutedAtLT applies the LT predicate on the "executed_at" field.

func ExecutedAtLTE added in v1.0.60

func ExecutedAtLTE(v time.Time) predicate.SubscriptionSchedule

ExecutedAtLTE applies the LTE predicate on the "executed_at" field.

func ExecutedAtNEQ added in v1.0.60

func ExecutedAtNEQ(v time.Time) predicate.SubscriptionSchedule

ExecutedAtNEQ applies the NEQ predicate on the "executed_at" field.

func ExecutedAtNotIn added in v1.0.60

func ExecutedAtNotIn(vs ...time.Time) predicate.SubscriptionSchedule

ExecutedAtNotIn applies the NotIn predicate on the "executed_at" field.

func ExecutedAtNotNil added in v1.0.60

func ExecutedAtNotNil() predicate.SubscriptionSchedule

ExecutedAtNotNil applies the NotNil predicate on the "executed_at" field.

func ExecutionResultIsNil added in v1.0.60

func ExecutionResultIsNil() predicate.SubscriptionSchedule

ExecutionResultIsNil applies the IsNil predicate on the "execution_result" field.

func ExecutionResultNotNil added in v1.0.60

func ExecutionResultNotNil() predicate.SubscriptionSchedule

ExecutionResultNotNil applies the NotNil predicate on the "execution_result" field.

func HasSubscription

func HasSubscription() predicate.SubscriptionSchedule

HasSubscription applies the HasEdge predicate on the "subscription" edge.

func HasSubscriptionWith

func HasSubscriptionWith(preds ...predicate.Subscription) predicate.SubscriptionSchedule

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.SubscriptionSchedule

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

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

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

IDNotIn applies the NotIn predicate on the ID field.

func MetadataIsNil

func MetadataIsNil() predicate.SubscriptionSchedule

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

func MetadataNotNil

func MetadataNotNil() predicate.SubscriptionSchedule

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 ScheduleType added in v1.0.60

ScheduleType applies equality check predicate on the "schedule_type" field. It's identical to ScheduleTypeEQ.

func ScheduleTypeContains added in v1.0.60

ScheduleTypeContains applies the Contains predicate on the "schedule_type" field.

func ScheduleTypeContainsFold added in v1.0.60

ScheduleTypeContainsFold applies the ContainsFold predicate on the "schedule_type" field.

func ScheduleTypeEQ added in v1.0.60

ScheduleTypeEQ applies the EQ predicate on the "schedule_type" field.

func ScheduleTypeEqualFold added in v1.0.60

ScheduleTypeEqualFold applies the EqualFold predicate on the "schedule_type" field.

func ScheduleTypeGT added in v1.0.60

ScheduleTypeGT applies the GT predicate on the "schedule_type" field.

func ScheduleTypeGTE added in v1.0.60

ScheduleTypeGTE applies the GTE predicate on the "schedule_type" field.

func ScheduleTypeHasPrefix added in v1.0.60

ScheduleTypeHasPrefix applies the HasPrefix predicate on the "schedule_type" field.

func ScheduleTypeHasSuffix added in v1.0.60

ScheduleTypeHasSuffix applies the HasSuffix predicate on the "schedule_type" field.

func ScheduleTypeIn added in v1.0.60

ScheduleTypeIn applies the In predicate on the "schedule_type" field.

func ScheduleTypeLT added in v1.0.60

ScheduleTypeLT applies the LT predicate on the "schedule_type" field.

func ScheduleTypeLTE added in v1.0.60

ScheduleTypeLTE applies the LTE predicate on the "schedule_type" field.

func ScheduleTypeNEQ added in v1.0.60

ScheduleTypeNEQ applies the NEQ predicate on the "schedule_type" field.

func ScheduleTypeNotIn added in v1.0.60

ScheduleTypeNotIn applies the NotIn predicate on the "schedule_type" field.

func ScheduledAt added in v1.0.60

func ScheduledAt(v time.Time) predicate.SubscriptionSchedule

ScheduledAt applies equality check predicate on the "scheduled_at" field. It's identical to ScheduledAtEQ.

func ScheduledAtEQ added in v1.0.60

func ScheduledAtEQ(v time.Time) predicate.SubscriptionSchedule

ScheduledAtEQ applies the EQ predicate on the "scheduled_at" field.

func ScheduledAtGT added in v1.0.60

func ScheduledAtGT(v time.Time) predicate.SubscriptionSchedule

ScheduledAtGT applies the GT predicate on the "scheduled_at" field.

func ScheduledAtGTE added in v1.0.60

func ScheduledAtGTE(v time.Time) predicate.SubscriptionSchedule

ScheduledAtGTE applies the GTE predicate on the "scheduled_at" field.

func ScheduledAtIn added in v1.0.60

func ScheduledAtIn(vs ...time.Time) predicate.SubscriptionSchedule

ScheduledAtIn applies the In predicate on the "scheduled_at" field.

func ScheduledAtLT added in v1.0.60

func ScheduledAtLT(v time.Time) predicate.SubscriptionSchedule

ScheduledAtLT applies the LT predicate on the "scheduled_at" field.

func ScheduledAtLTE added in v1.0.60

func ScheduledAtLTE(v time.Time) predicate.SubscriptionSchedule

ScheduledAtLTE applies the LTE predicate on the "scheduled_at" field.

func ScheduledAtNEQ added in v1.0.60

func ScheduledAtNEQ(v time.Time) predicate.SubscriptionSchedule

ScheduledAtNEQ applies the NEQ predicate on the "scheduled_at" field.

func ScheduledAtNotIn added in v1.0.60

func ScheduledAtNotIn(vs ...time.Time) predicate.SubscriptionSchedule

ScheduledAtNotIn applies the NotIn predicate on the "scheduled_at" field.

func Status

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

func StatusContains

func StatusContains(v string) predicate.SubscriptionSchedule

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

func StatusContainsFold

func StatusContainsFold(v string) predicate.SubscriptionSchedule

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

func StatusEQ

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

func StatusEqualFold

func StatusEqualFold(v string) predicate.SubscriptionSchedule

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

func StatusGT

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

func StatusGTE

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

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.SubscriptionSchedule

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

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.SubscriptionSchedule

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

func StatusIn

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

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

func StatusLT

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

func StatusLTE

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

func StatusNEQ

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

func StatusNotIn

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

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

func SubscriptionID

func SubscriptionID(v string) predicate.SubscriptionSchedule

SubscriptionID applies equality check predicate on the "subscription_id" field. It's identical to SubscriptionIDEQ.

func SubscriptionIDContains

func SubscriptionIDContains(v string) predicate.SubscriptionSchedule

SubscriptionIDContains applies the Contains predicate on the "subscription_id" field.

func SubscriptionIDContainsFold

func SubscriptionIDContainsFold(v string) predicate.SubscriptionSchedule

SubscriptionIDContainsFold applies the ContainsFold predicate on the "subscription_id" field.

func SubscriptionIDEQ

func SubscriptionIDEQ(v string) predicate.SubscriptionSchedule

SubscriptionIDEQ applies the EQ predicate on the "subscription_id" field.

func SubscriptionIDEqualFold

func SubscriptionIDEqualFold(v string) predicate.SubscriptionSchedule

SubscriptionIDEqualFold applies the EqualFold predicate on the "subscription_id" field.

func SubscriptionIDGT

func SubscriptionIDGT(v string) predicate.SubscriptionSchedule

SubscriptionIDGT applies the GT predicate on the "subscription_id" field.

func SubscriptionIDGTE

func SubscriptionIDGTE(v string) predicate.SubscriptionSchedule

SubscriptionIDGTE applies the GTE predicate on the "subscription_id" field.

func SubscriptionIDHasPrefix

func SubscriptionIDHasPrefix(v string) predicate.SubscriptionSchedule

SubscriptionIDHasPrefix applies the HasPrefix predicate on the "subscription_id" field.

func SubscriptionIDHasSuffix

func SubscriptionIDHasSuffix(v string) predicate.SubscriptionSchedule

SubscriptionIDHasSuffix applies the HasSuffix predicate on the "subscription_id" field.

func SubscriptionIDIn

func SubscriptionIDIn(vs ...string) predicate.SubscriptionSchedule

SubscriptionIDIn applies the In predicate on the "subscription_id" field.

func SubscriptionIDLT

func SubscriptionIDLT(v string) predicate.SubscriptionSchedule

SubscriptionIDLT applies the LT predicate on the "subscription_id" field.

func SubscriptionIDLTE

func SubscriptionIDLTE(v string) predicate.SubscriptionSchedule

SubscriptionIDLTE applies the LTE predicate on the "subscription_id" field.

func SubscriptionIDNEQ

func SubscriptionIDNEQ(v string) predicate.SubscriptionSchedule

SubscriptionIDNEQ applies the NEQ predicate on the "subscription_id" field.

func SubscriptionIDNotIn

func SubscriptionIDNotIn(vs ...string) predicate.SubscriptionSchedule

SubscriptionIDNotIn applies the NotIn predicate on the "subscription_id" field.

func TenantID

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

func TenantIDContains

func TenantIDContains(v string) predicate.SubscriptionSchedule

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

func TenantIDContainsFold

func TenantIDContainsFold(v string) predicate.SubscriptionSchedule

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

func TenantIDEQ

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

func TenantIDEqualFold

func TenantIDEqualFold(v string) predicate.SubscriptionSchedule

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

func TenantIDGT

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

func TenantIDGTE

func TenantIDGTE(v string) predicate.SubscriptionSchedule

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

func TenantIDHasPrefix

func TenantIDHasPrefix(v string) predicate.SubscriptionSchedule

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

func TenantIDHasSuffix

func TenantIDHasSuffix(v string) predicate.SubscriptionSchedule

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

func TenantIDIn

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

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

func TenantIDLT

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

func TenantIDLTE

func TenantIDLTE(v string) predicate.SubscriptionSchedule

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

func TenantIDNEQ

func TenantIDNEQ(v string) predicate.SubscriptionSchedule

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

func TenantIDNotIn

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

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

func UpdatedAt

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.SubscriptionSchedule

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.SubscriptionSchedule

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.SubscriptionSchedule

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.SubscriptionSchedule

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.SubscriptionSchedule

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.SubscriptionSchedule

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

func UpdatedAtNotIn

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

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

func UpdatedBy

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.SubscriptionSchedule

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.SubscriptionSchedule

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.SubscriptionSchedule

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.SubscriptionSchedule

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.SubscriptionSchedule

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.SubscriptionSchedule

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.SubscriptionSchedule

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.SubscriptionSchedule

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.SubscriptionSchedule

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.SubscriptionSchedule

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.SubscriptionSchedule

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.SubscriptionSchedule

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.SubscriptionSchedule

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

func ByCancelledAt added in v1.0.60

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 ByEnvironmentID

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

ByEnvironmentID orders the results by the environment_id field.

func ByErrorMessage added in v1.0.60

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

ByErrorMessage orders the results by the error_message field.

func ByExecutedAt added in v1.0.60

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

ByExecutedAt orders the results by the executed_at field.

func ByID

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

ByID orders the results by the id field.

func ByScheduleType added in v1.0.60

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

ByScheduleType orders the results by the schedule_type field.

func ByScheduledAt added in v1.0.60

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

ByScheduledAt orders the results by the scheduled_at field.

func ByStatus

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

ByStatus orders the results by the status field.

func BySubscriptionField

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

BySubscriptionField orders the results by subscription field.

func BySubscriptionID

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

BySubscriptionID orders the results by the subscription_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