script

package
v0.0.0-...-83e02d6 Latest Latest
Warning

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

Go to latest
Published: Sep 7, 2023 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the script type in the database.
	Label = "script"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// 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"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldScript holds the string denoting the script field in the database.
	FieldScript = "script"
	// FieldTimeoutSeconds holds the string denoting the timeout_seconds field in the database.
	FieldTimeoutSeconds = "timeout_seconds"
	// FieldProjectID holds the string denoting the project_id field in the database.
	FieldProjectID = "project_id"
	// FieldParameters holds the string denoting the parameters field in the database.
	FieldParameters = "parameters"
	// FieldScheduleEnabled holds the string denoting the schedule_enabled field in the database.
	FieldScheduleEnabled = "schedule_enabled"
	// FieldScheduleCron holds the string denoting the schedule_cron field in the database.
	FieldScheduleCron = "schedule_cron"
	// FieldSuccessNotificationChannelID holds the string denoting the success_notification_channel_id field in the database.
	FieldSuccessNotificationChannelID = "success_notification_channel_id"
	// FieldFailureNotificationChannelID holds the string denoting the failure_notification_channel_id field in the database.
	FieldFailureNotificationChannelID = "failure_notification_channel_id"
	// Table holds the table name of the script in the database.
	Table = "scripts"
)

Variables

View Source
var (
	// 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
	// DefaultTimeoutSeconds holds the default value on creation for the "timeout_seconds" field.
	DefaultTimeoutSeconds int
	// DefaultScheduleEnabled holds the default value on creation for the "schedule_enabled" field.
	DefaultScheduleEnabled bool
)

Columns holds all SQL columns for script fields.

Functions

func And

func And(predicates ...predicate.Script) predicate.Script

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.Script

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Script

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Script

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Script

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Script

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Script

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Script

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

func CreatedAtNotIn

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

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

func Description

func Description(v string) predicate.Script

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

func DescriptionContains

func DescriptionContains(v string) predicate.Script

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

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.Script

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

func DescriptionEQ

func DescriptionEQ(v string) predicate.Script

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

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.Script

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

func DescriptionGT

func DescriptionGT(v string) predicate.Script

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

func DescriptionGTE

func DescriptionGTE(v string) predicate.Script

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

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.Script

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

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.Script

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

func DescriptionIn

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

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

func DescriptionIsNil

func DescriptionIsNil() predicate.Script

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

func DescriptionLT

func DescriptionLT(v string) predicate.Script

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

func DescriptionLTE

func DescriptionLTE(v string) predicate.Script

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

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.Script

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

func DescriptionNotIn

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

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

func DescriptionNotNil

func DescriptionNotNil() predicate.Script

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

func FailureNotificationChannelID

func FailureNotificationChannelID(v int) predicate.Script

FailureNotificationChannelID applies equality check predicate on the "failure_notification_channel_id" field. It's identical to FailureNotificationChannelIDEQ.

func FailureNotificationChannelIDEQ

func FailureNotificationChannelIDEQ(v int) predicate.Script

FailureNotificationChannelIDEQ applies the EQ predicate on the "failure_notification_channel_id" field.

func FailureNotificationChannelIDGT

func FailureNotificationChannelIDGT(v int) predicate.Script

FailureNotificationChannelIDGT applies the GT predicate on the "failure_notification_channel_id" field.

func FailureNotificationChannelIDGTE

func FailureNotificationChannelIDGTE(v int) predicate.Script

FailureNotificationChannelIDGTE applies the GTE predicate on the "failure_notification_channel_id" field.

func FailureNotificationChannelIDIn

func FailureNotificationChannelIDIn(vs ...int) predicate.Script

FailureNotificationChannelIDIn applies the In predicate on the "failure_notification_channel_id" field.

func FailureNotificationChannelIDIsNil

func FailureNotificationChannelIDIsNil() predicate.Script

FailureNotificationChannelIDIsNil applies the IsNil predicate on the "failure_notification_channel_id" field.

func FailureNotificationChannelIDLT

func FailureNotificationChannelIDLT(v int) predicate.Script

FailureNotificationChannelIDLT applies the LT predicate on the "failure_notification_channel_id" field.

func FailureNotificationChannelIDLTE

func FailureNotificationChannelIDLTE(v int) predicate.Script

FailureNotificationChannelIDLTE applies the LTE predicate on the "failure_notification_channel_id" field.

func FailureNotificationChannelIDNEQ

func FailureNotificationChannelIDNEQ(v int) predicate.Script

FailureNotificationChannelIDNEQ applies the NEQ predicate on the "failure_notification_channel_id" field.

func FailureNotificationChannelIDNotIn

func FailureNotificationChannelIDNotIn(vs ...int) predicate.Script

FailureNotificationChannelIDNotIn applies the NotIn predicate on the "failure_notification_channel_id" field.

func FailureNotificationChannelIDNotNil

func FailureNotificationChannelIDNotNil() predicate.Script

FailureNotificationChannelIDNotNil applies the NotNil predicate on the "failure_notification_channel_id" field.

func ID

func ID(id int) predicate.Script

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Script

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Script

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Script

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.Script

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Script

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Script

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Script

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.Script

IDNotIn applies the NotIn predicate on the ID field.

func Name

func Name(v string) predicate.Script

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

func NameContains

func NameContains(v string) predicate.Script

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

func NameContainsFold

func NameContainsFold(v string) predicate.Script

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

func NameEQ

func NameEQ(v string) predicate.Script

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

func NameEqualFold

func NameEqualFold(v string) predicate.Script

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

func NameGT

func NameGT(v string) predicate.Script

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

func NameGTE

func NameGTE(v string) predicate.Script

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.Script

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.Script

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.Script

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

func NameLTE

func NameLTE(v string) predicate.Script

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

func NameNEQ

func NameNEQ(v string) predicate.Script

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

func NameNotIn

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

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

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Script) predicate.Script

Or groups predicates with the OR operator between them.

func ParametersIsNil

func ParametersIsNil() predicate.Script

ParametersIsNil applies the IsNil predicate on the "parameters" field.

func ParametersNotNil

func ParametersNotNil() predicate.Script

ParametersNotNil applies the NotNil predicate on the "parameters" field.

func ProjectID

func ProjectID(v int) predicate.Script

ProjectID applies equality check predicate on the "project_id" field. It's identical to ProjectIDEQ.

func ProjectIDEQ

func ProjectIDEQ(v int) predicate.Script

ProjectIDEQ applies the EQ predicate on the "project_id" field.

func ProjectIDGT

func ProjectIDGT(v int) predicate.Script

ProjectIDGT applies the GT predicate on the "project_id" field.

func ProjectIDGTE

func ProjectIDGTE(v int) predicate.Script

ProjectIDGTE applies the GTE predicate on the "project_id" field.

func ProjectIDIn

func ProjectIDIn(vs ...int) predicate.Script

ProjectIDIn applies the In predicate on the "project_id" field.

func ProjectIDLT

func ProjectIDLT(v int) predicate.Script

ProjectIDLT applies the LT predicate on the "project_id" field.

func ProjectIDLTE

func ProjectIDLTE(v int) predicate.Script

ProjectIDLTE applies the LTE predicate on the "project_id" field.

func ProjectIDNEQ

func ProjectIDNEQ(v int) predicate.Script

ProjectIDNEQ applies the NEQ predicate on the "project_id" field.

func ProjectIDNotIn

func ProjectIDNotIn(vs ...int) predicate.Script

ProjectIDNotIn applies the NotIn predicate on the "project_id" field.

func ScheduleCron

func ScheduleCron(v string) predicate.Script

ScheduleCron applies equality check predicate on the "schedule_cron" field. It's identical to ScheduleCronEQ.

func ScheduleCronContains

func ScheduleCronContains(v string) predicate.Script

ScheduleCronContains applies the Contains predicate on the "schedule_cron" field.

func ScheduleCronContainsFold

func ScheduleCronContainsFold(v string) predicate.Script

ScheduleCronContainsFold applies the ContainsFold predicate on the "schedule_cron" field.

func ScheduleCronEQ

func ScheduleCronEQ(v string) predicate.Script

ScheduleCronEQ applies the EQ predicate on the "schedule_cron" field.

func ScheduleCronEqualFold

func ScheduleCronEqualFold(v string) predicate.Script

ScheduleCronEqualFold applies the EqualFold predicate on the "schedule_cron" field.

func ScheduleCronGT

func ScheduleCronGT(v string) predicate.Script

ScheduleCronGT applies the GT predicate on the "schedule_cron" field.

func ScheduleCronGTE

func ScheduleCronGTE(v string) predicate.Script

ScheduleCronGTE applies the GTE predicate on the "schedule_cron" field.

func ScheduleCronHasPrefix

func ScheduleCronHasPrefix(v string) predicate.Script

ScheduleCronHasPrefix applies the HasPrefix predicate on the "schedule_cron" field.

func ScheduleCronHasSuffix

func ScheduleCronHasSuffix(v string) predicate.Script

ScheduleCronHasSuffix applies the HasSuffix predicate on the "schedule_cron" field.

func ScheduleCronIn

func ScheduleCronIn(vs ...string) predicate.Script

ScheduleCronIn applies the In predicate on the "schedule_cron" field.

func ScheduleCronIsNil

func ScheduleCronIsNil() predicate.Script

ScheduleCronIsNil applies the IsNil predicate on the "schedule_cron" field.

func ScheduleCronLT

func ScheduleCronLT(v string) predicate.Script

ScheduleCronLT applies the LT predicate on the "schedule_cron" field.

func ScheduleCronLTE

func ScheduleCronLTE(v string) predicate.Script

ScheduleCronLTE applies the LTE predicate on the "schedule_cron" field.

func ScheduleCronNEQ

func ScheduleCronNEQ(v string) predicate.Script

ScheduleCronNEQ applies the NEQ predicate on the "schedule_cron" field.

func ScheduleCronNotIn

func ScheduleCronNotIn(vs ...string) predicate.Script

ScheduleCronNotIn applies the NotIn predicate on the "schedule_cron" field.

func ScheduleCronNotNil

func ScheduleCronNotNil() predicate.Script

ScheduleCronNotNil applies the NotNil predicate on the "schedule_cron" field.

func ScheduleEnabled

func ScheduleEnabled(v bool) predicate.Script

ScheduleEnabled applies equality check predicate on the "schedule_enabled" field. It's identical to ScheduleEnabledEQ.

func ScheduleEnabledEQ

func ScheduleEnabledEQ(v bool) predicate.Script

ScheduleEnabledEQ applies the EQ predicate on the "schedule_enabled" field.

func ScheduleEnabledNEQ

func ScheduleEnabledNEQ(v bool) predicate.Script

ScheduleEnabledNEQ applies the NEQ predicate on the "schedule_enabled" field.

func Script

func Script(v string) predicate.Script

Script applies equality check predicate on the "script" field. It's identical to ScriptEQ.

func ScriptContains

func ScriptContains(v string) predicate.Script

ScriptContains applies the Contains predicate on the "script" field.

func ScriptContainsFold

func ScriptContainsFold(v string) predicate.Script

ScriptContainsFold applies the ContainsFold predicate on the "script" field.

func ScriptEQ

func ScriptEQ(v string) predicate.Script

ScriptEQ applies the EQ predicate on the "script" field.

func ScriptEqualFold

func ScriptEqualFold(v string) predicate.Script

ScriptEqualFold applies the EqualFold predicate on the "script" field.

func ScriptGT

func ScriptGT(v string) predicate.Script

ScriptGT applies the GT predicate on the "script" field.

func ScriptGTE

func ScriptGTE(v string) predicate.Script

ScriptGTE applies the GTE predicate on the "script" field.

func ScriptHasPrefix

func ScriptHasPrefix(v string) predicate.Script

ScriptHasPrefix applies the HasPrefix predicate on the "script" field.

func ScriptHasSuffix

func ScriptHasSuffix(v string) predicate.Script

ScriptHasSuffix applies the HasSuffix predicate on the "script" field.

func ScriptIn

func ScriptIn(vs ...string) predicate.Script

ScriptIn applies the In predicate on the "script" field.

func ScriptLT

func ScriptLT(v string) predicate.Script

ScriptLT applies the LT predicate on the "script" field.

func ScriptLTE

func ScriptLTE(v string) predicate.Script

ScriptLTE applies the LTE predicate on the "script" field.

func ScriptNEQ

func ScriptNEQ(v string) predicate.Script

ScriptNEQ applies the NEQ predicate on the "script" field.

func ScriptNotIn

func ScriptNotIn(vs ...string) predicate.Script

ScriptNotIn applies the NotIn predicate on the "script" field.

func SuccessNotificationChannelID

func SuccessNotificationChannelID(v int) predicate.Script

SuccessNotificationChannelID applies equality check predicate on the "success_notification_channel_id" field. It's identical to SuccessNotificationChannelIDEQ.

func SuccessNotificationChannelIDEQ

func SuccessNotificationChannelIDEQ(v int) predicate.Script

SuccessNotificationChannelIDEQ applies the EQ predicate on the "success_notification_channel_id" field.

func SuccessNotificationChannelIDGT

func SuccessNotificationChannelIDGT(v int) predicate.Script

SuccessNotificationChannelIDGT applies the GT predicate on the "success_notification_channel_id" field.

func SuccessNotificationChannelIDGTE

func SuccessNotificationChannelIDGTE(v int) predicate.Script

SuccessNotificationChannelIDGTE applies the GTE predicate on the "success_notification_channel_id" field.

func SuccessNotificationChannelIDIn

func SuccessNotificationChannelIDIn(vs ...int) predicate.Script

SuccessNotificationChannelIDIn applies the In predicate on the "success_notification_channel_id" field.

func SuccessNotificationChannelIDIsNil

func SuccessNotificationChannelIDIsNil() predicate.Script

SuccessNotificationChannelIDIsNil applies the IsNil predicate on the "success_notification_channel_id" field.

func SuccessNotificationChannelIDLT

func SuccessNotificationChannelIDLT(v int) predicate.Script

SuccessNotificationChannelIDLT applies the LT predicate on the "success_notification_channel_id" field.

func SuccessNotificationChannelIDLTE

func SuccessNotificationChannelIDLTE(v int) predicate.Script

SuccessNotificationChannelIDLTE applies the LTE predicate on the "success_notification_channel_id" field.

func SuccessNotificationChannelIDNEQ

func SuccessNotificationChannelIDNEQ(v int) predicate.Script

SuccessNotificationChannelIDNEQ applies the NEQ predicate on the "success_notification_channel_id" field.

func SuccessNotificationChannelIDNotIn

func SuccessNotificationChannelIDNotIn(vs ...int) predicate.Script

SuccessNotificationChannelIDNotIn applies the NotIn predicate on the "success_notification_channel_id" field.

func SuccessNotificationChannelIDNotNil

func SuccessNotificationChannelIDNotNil() predicate.Script

SuccessNotificationChannelIDNotNil applies the NotNil predicate on the "success_notification_channel_id" field.

func TimeoutSeconds

func TimeoutSeconds(v int) predicate.Script

TimeoutSeconds applies equality check predicate on the "timeout_seconds" field. It's identical to TimeoutSecondsEQ.

func TimeoutSecondsEQ

func TimeoutSecondsEQ(v int) predicate.Script

TimeoutSecondsEQ applies the EQ predicate on the "timeout_seconds" field.

func TimeoutSecondsGT

func TimeoutSecondsGT(v int) predicate.Script

TimeoutSecondsGT applies the GT predicate on the "timeout_seconds" field.

func TimeoutSecondsGTE

func TimeoutSecondsGTE(v int) predicate.Script

TimeoutSecondsGTE applies the GTE predicate on the "timeout_seconds" field.

func TimeoutSecondsIn

func TimeoutSecondsIn(vs ...int) predicate.Script

TimeoutSecondsIn applies the In predicate on the "timeout_seconds" field.

func TimeoutSecondsLT

func TimeoutSecondsLT(v int) predicate.Script

TimeoutSecondsLT applies the LT predicate on the "timeout_seconds" field.

func TimeoutSecondsLTE

func TimeoutSecondsLTE(v int) predicate.Script

TimeoutSecondsLTE applies the LTE predicate on the "timeout_seconds" field.

func TimeoutSecondsNEQ

func TimeoutSecondsNEQ(v int) predicate.Script

TimeoutSecondsNEQ applies the NEQ predicate on the "timeout_seconds" field.

func TimeoutSecondsNotIn

func TimeoutSecondsNotIn(vs ...int) predicate.Script

TimeoutSecondsNotIn applies the NotIn predicate on the "timeout_seconds" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Script

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Script

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Script

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Script

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Script

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Script

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Script

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

func UpdatedAtNotIn

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

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" 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 Script queries.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByDescription

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

ByDescription orders the results by the description field.

func ByFailureNotificationChannelID

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

ByFailureNotificationChannelID orders the results by the failure_notification_channel_id field.

func ByID

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

ByID orders the results by the id field.

func ByName

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

ByName orders the results by the name field.

func ByProjectID

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

ByProjectID orders the results by the project_id field.

func ByScheduleCron

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

ByScheduleCron orders the results by the schedule_cron field.

func ByScheduleEnabled

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

ByScheduleEnabled orders the results by the schedule_enabled field.

func ByScript

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

ByScript orders the results by the script field.

func BySuccessNotificationChannelID

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

BySuccessNotificationChannelID orders the results by the success_notification_channel_id field.

func ByTimeoutSeconds

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

ByTimeoutSeconds orders the results by the timeout_seconds field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

Jump to

Keyboard shortcuts

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