proxygrouphistory

package
v1.0.8 Latest Latest
Warning

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

Go to latest
Published: Jun 24, 2026 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the proxygrouphistory type in the database.
	Label = "proxy_group_history"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldGroupMode holds the string denoting the group_mode field in the database.
	FieldGroupMode = "group_mode"
	// FieldTriggerType holds the string denoting the trigger_type field in the database.
	FieldTriggerType = "trigger_type"
	// FieldState holds the string denoting the state field in the database.
	FieldState = "state"
	// FieldTotalUsers holds the string denoting the total_users field in the database.
	FieldTotalUsers = "total_users"
	// FieldSuccessCount holds the string denoting the success_count field in the database.
	FieldSuccessCount = "success_count"
	// FieldFailedCount holds the string denoting the failed_count field in the database.
	FieldFailedCount = "failed_count"
	// FieldStartTime holds the string denoting the start_time field in the database.
	FieldStartTime = "start_time"
	// FieldEndTime holds the string denoting the end_time field in the database.
	FieldEndTime = "end_time"
	// FieldOperator holds the string denoting the operator field in the database.
	FieldOperator = "operator"
	// FieldErrorMessage holds the string denoting the error_message field in the database.
	FieldErrorMessage = "error_message"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// Table holds the table name of the proxygrouphistory in the database.
	Table = "group_history"
)

Variables

View Source
var (
	// DefaultGroupMode holds the default value on creation for the "group_mode" field.
	DefaultGroupMode string
	// GroupModeValidator is a validator for the "group_mode" field. It is called by the builders before save.
	GroupModeValidator func(string) error
	// DefaultTriggerType holds the default value on creation for the "trigger_type" field.
	DefaultTriggerType string
	// TriggerTypeValidator is a validator for the "trigger_type" field. It is called by the builders before save.
	TriggerTypeValidator func(string) error
	// DefaultState holds the default value on creation for the "state" field.
	DefaultState string
	// StateValidator is a validator for the "state" field. It is called by the builders before save.
	StateValidator func(string) error
	// DefaultTotalUsers holds the default value on creation for the "total_users" field.
	DefaultTotalUsers int
	// DefaultSuccessCount holds the default value on creation for the "success_count" field.
	DefaultSuccessCount int
	// DefaultFailedCount holds the default value on creation for the "failed_count" field.
	DefaultFailedCount int
	// OperatorValidator is a validator for the "operator" field. It is called by the builders before save.
	OperatorValidator func(string) error
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// IDValidator is a validator for the "id" field. It is called by the builders before save.
	IDValidator func(int64) error
)

Columns holds all SQL columns for proxygrouphistory fields.

Functions

func And

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.ProxyGroupHistory

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.ProxyGroupHistory

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.ProxyGroupHistory

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.ProxyGroupHistory

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.ProxyGroupHistory

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.ProxyGroupHistory

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.ProxyGroupHistory

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

func CreatedAtNotIn

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

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

func EndTime

EndTime applies equality check predicate on the "end_time" field. It's identical to EndTimeEQ.

func EndTimeEQ

func EndTimeEQ(v time.Time) predicate.ProxyGroupHistory

EndTimeEQ applies the EQ predicate on the "end_time" field.

func EndTimeGT

func EndTimeGT(v time.Time) predicate.ProxyGroupHistory

EndTimeGT applies the GT predicate on the "end_time" field.

func EndTimeGTE

func EndTimeGTE(v time.Time) predicate.ProxyGroupHistory

EndTimeGTE applies the GTE predicate on the "end_time" field.

func EndTimeIn

func EndTimeIn(vs ...time.Time) predicate.ProxyGroupHistory

EndTimeIn applies the In predicate on the "end_time" field.

func EndTimeIsNil

func EndTimeIsNil() predicate.ProxyGroupHistory

EndTimeIsNil applies the IsNil predicate on the "end_time" field.

func EndTimeLT

func EndTimeLT(v time.Time) predicate.ProxyGroupHistory

EndTimeLT applies the LT predicate on the "end_time" field.

func EndTimeLTE

func EndTimeLTE(v time.Time) predicate.ProxyGroupHistory

EndTimeLTE applies the LTE predicate on the "end_time" field.

func EndTimeNEQ

func EndTimeNEQ(v time.Time) predicate.ProxyGroupHistory

EndTimeNEQ applies the NEQ predicate on the "end_time" field.

func EndTimeNotIn

func EndTimeNotIn(vs ...time.Time) predicate.ProxyGroupHistory

EndTimeNotIn applies the NotIn predicate on the "end_time" field.

func EndTimeNotNil

func EndTimeNotNil() predicate.ProxyGroupHistory

EndTimeNotNil applies the NotNil predicate on the "end_time" field.

func ErrorMessage

func ErrorMessage(v string) predicate.ProxyGroupHistory

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

func ErrorMessageContains

func ErrorMessageContains(v string) predicate.ProxyGroupHistory

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

func ErrorMessageContainsFold

func ErrorMessageContainsFold(v string) predicate.ProxyGroupHistory

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

func ErrorMessageEQ

func ErrorMessageEQ(v string) predicate.ProxyGroupHistory

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

func ErrorMessageEqualFold

func ErrorMessageEqualFold(v string) predicate.ProxyGroupHistory

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

func ErrorMessageGT

func ErrorMessageGT(v string) predicate.ProxyGroupHistory

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

func ErrorMessageGTE

func ErrorMessageGTE(v string) predicate.ProxyGroupHistory

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

func ErrorMessageHasPrefix

func ErrorMessageHasPrefix(v string) predicate.ProxyGroupHistory

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

func ErrorMessageHasSuffix

func ErrorMessageHasSuffix(v string) predicate.ProxyGroupHistory

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

func ErrorMessageIn

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

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

func ErrorMessageIsNil

func ErrorMessageIsNil() predicate.ProxyGroupHistory

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

func ErrorMessageLT

func ErrorMessageLT(v string) predicate.ProxyGroupHistory

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

func ErrorMessageLTE

func ErrorMessageLTE(v string) predicate.ProxyGroupHistory

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

func ErrorMessageNEQ

func ErrorMessageNEQ(v string) predicate.ProxyGroupHistory

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

func ErrorMessageNotIn

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

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

func ErrorMessageNotNil

func ErrorMessageNotNil() predicate.ProxyGroupHistory

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

func FailedCount

func FailedCount(v int) predicate.ProxyGroupHistory

FailedCount applies equality check predicate on the "failed_count" field. It's identical to FailedCountEQ.

func FailedCountEQ

func FailedCountEQ(v int) predicate.ProxyGroupHistory

FailedCountEQ applies the EQ predicate on the "failed_count" field.

func FailedCountGT

func FailedCountGT(v int) predicate.ProxyGroupHistory

FailedCountGT applies the GT predicate on the "failed_count" field.

func FailedCountGTE

func FailedCountGTE(v int) predicate.ProxyGroupHistory

FailedCountGTE applies the GTE predicate on the "failed_count" field.

func FailedCountIn

func FailedCountIn(vs ...int) predicate.ProxyGroupHistory

FailedCountIn applies the In predicate on the "failed_count" field.

func FailedCountLT

func FailedCountLT(v int) predicate.ProxyGroupHistory

FailedCountLT applies the LT predicate on the "failed_count" field.

func FailedCountLTE

func FailedCountLTE(v int) predicate.ProxyGroupHistory

FailedCountLTE applies the LTE predicate on the "failed_count" field.

func FailedCountNEQ

func FailedCountNEQ(v int) predicate.ProxyGroupHistory

FailedCountNEQ applies the NEQ predicate on the "failed_count" field.

func FailedCountNotIn

func FailedCountNotIn(vs ...int) predicate.ProxyGroupHistory

FailedCountNotIn applies the NotIn predicate on the "failed_count" field.

func GroupMode

func GroupMode(v string) predicate.ProxyGroupHistory

GroupMode applies equality check predicate on the "group_mode" field. It's identical to GroupModeEQ.

func GroupModeContains

func GroupModeContains(v string) predicate.ProxyGroupHistory

GroupModeContains applies the Contains predicate on the "group_mode" field.

func GroupModeContainsFold

func GroupModeContainsFold(v string) predicate.ProxyGroupHistory

GroupModeContainsFold applies the ContainsFold predicate on the "group_mode" field.

func GroupModeEQ

func GroupModeEQ(v string) predicate.ProxyGroupHistory

GroupModeEQ applies the EQ predicate on the "group_mode" field.

func GroupModeEqualFold

func GroupModeEqualFold(v string) predicate.ProxyGroupHistory

GroupModeEqualFold applies the EqualFold predicate on the "group_mode" field.

func GroupModeGT

func GroupModeGT(v string) predicate.ProxyGroupHistory

GroupModeGT applies the GT predicate on the "group_mode" field.

func GroupModeGTE

func GroupModeGTE(v string) predicate.ProxyGroupHistory

GroupModeGTE applies the GTE predicate on the "group_mode" field.

func GroupModeHasPrefix

func GroupModeHasPrefix(v string) predicate.ProxyGroupHistory

GroupModeHasPrefix applies the HasPrefix predicate on the "group_mode" field.

func GroupModeHasSuffix

func GroupModeHasSuffix(v string) predicate.ProxyGroupHistory

GroupModeHasSuffix applies the HasSuffix predicate on the "group_mode" field.

func GroupModeIn

func GroupModeIn(vs ...string) predicate.ProxyGroupHistory

GroupModeIn applies the In predicate on the "group_mode" field.

func GroupModeLT

func GroupModeLT(v string) predicate.ProxyGroupHistory

GroupModeLT applies the LT predicate on the "group_mode" field.

func GroupModeLTE

func GroupModeLTE(v string) predicate.ProxyGroupHistory

GroupModeLTE applies the LTE predicate on the "group_mode" field.

func GroupModeNEQ

func GroupModeNEQ(v string) predicate.ProxyGroupHistory

GroupModeNEQ applies the NEQ predicate on the "group_mode" field.

func GroupModeNotIn

func GroupModeNotIn(vs ...string) predicate.ProxyGroupHistory

GroupModeNotIn applies the NotIn predicate on the "group_mode" field.

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int64) predicate.ProxyGroupHistory

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 ...int64) predicate.ProxyGroupHistory

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Operator

Operator applies equality check predicate on the "operator" field. It's identical to OperatorEQ.

func OperatorContains

func OperatorContains(v string) predicate.ProxyGroupHistory

OperatorContains applies the Contains predicate on the "operator" field.

func OperatorContainsFold

func OperatorContainsFold(v string) predicate.ProxyGroupHistory

OperatorContainsFold applies the ContainsFold predicate on the "operator" field.

func OperatorEQ

func OperatorEQ(v string) predicate.ProxyGroupHistory

OperatorEQ applies the EQ predicate on the "operator" field.

func OperatorEqualFold

func OperatorEqualFold(v string) predicate.ProxyGroupHistory

OperatorEqualFold applies the EqualFold predicate on the "operator" field.

func OperatorGT

func OperatorGT(v string) predicate.ProxyGroupHistory

OperatorGT applies the GT predicate on the "operator" field.

func OperatorGTE

func OperatorGTE(v string) predicate.ProxyGroupHistory

OperatorGTE applies the GTE predicate on the "operator" field.

func OperatorHasPrefix

func OperatorHasPrefix(v string) predicate.ProxyGroupHistory

OperatorHasPrefix applies the HasPrefix predicate on the "operator" field.

func OperatorHasSuffix

func OperatorHasSuffix(v string) predicate.ProxyGroupHistory

OperatorHasSuffix applies the HasSuffix predicate on the "operator" field.

func OperatorIn

func OperatorIn(vs ...string) predicate.ProxyGroupHistory

OperatorIn applies the In predicate on the "operator" field.

func OperatorIsNil

func OperatorIsNil() predicate.ProxyGroupHistory

OperatorIsNil applies the IsNil predicate on the "operator" field.

func OperatorLT

func OperatorLT(v string) predicate.ProxyGroupHistory

OperatorLT applies the LT predicate on the "operator" field.

func OperatorLTE

func OperatorLTE(v string) predicate.ProxyGroupHistory

OperatorLTE applies the LTE predicate on the "operator" field.

func OperatorNEQ

func OperatorNEQ(v string) predicate.ProxyGroupHistory

OperatorNEQ applies the NEQ predicate on the "operator" field.

func OperatorNotIn

func OperatorNotIn(vs ...string) predicate.ProxyGroupHistory

OperatorNotIn applies the NotIn predicate on the "operator" field.

func OperatorNotNil

func OperatorNotNil() predicate.ProxyGroupHistory

OperatorNotNil applies the NotNil predicate on the "operator" field.

func Or

Or groups predicates with the OR operator between them.

func StartTime

func StartTime(v time.Time) predicate.ProxyGroupHistory

StartTime applies equality check predicate on the "start_time" field. It's identical to StartTimeEQ.

func StartTimeEQ

func StartTimeEQ(v time.Time) predicate.ProxyGroupHistory

StartTimeEQ applies the EQ predicate on the "start_time" field.

func StartTimeGT

func StartTimeGT(v time.Time) predicate.ProxyGroupHistory

StartTimeGT applies the GT predicate on the "start_time" field.

func StartTimeGTE

func StartTimeGTE(v time.Time) predicate.ProxyGroupHistory

StartTimeGTE applies the GTE predicate on the "start_time" field.

func StartTimeIn

func StartTimeIn(vs ...time.Time) predicate.ProxyGroupHistory

StartTimeIn applies the In predicate on the "start_time" field.

func StartTimeIsNil

func StartTimeIsNil() predicate.ProxyGroupHistory

StartTimeIsNil applies the IsNil predicate on the "start_time" field.

func StartTimeLT

func StartTimeLT(v time.Time) predicate.ProxyGroupHistory

StartTimeLT applies the LT predicate on the "start_time" field.

func StartTimeLTE

func StartTimeLTE(v time.Time) predicate.ProxyGroupHistory

StartTimeLTE applies the LTE predicate on the "start_time" field.

func StartTimeNEQ

func StartTimeNEQ(v time.Time) predicate.ProxyGroupHistory

StartTimeNEQ applies the NEQ predicate on the "start_time" field.

func StartTimeNotIn

func StartTimeNotIn(vs ...time.Time) predicate.ProxyGroupHistory

StartTimeNotIn applies the NotIn predicate on the "start_time" field.

func StartTimeNotNil

func StartTimeNotNil() predicate.ProxyGroupHistory

StartTimeNotNil applies the NotNil predicate on the "start_time" field.

func State

State applies equality check predicate on the "state" field. It's identical to StateEQ.

func StateContains

func StateContains(v string) predicate.ProxyGroupHistory

StateContains applies the Contains predicate on the "state" field.

func StateContainsFold

func StateContainsFold(v string) predicate.ProxyGroupHistory

StateContainsFold applies the ContainsFold predicate on the "state" field.

func StateEQ

StateEQ applies the EQ predicate on the "state" field.

func StateEqualFold

func StateEqualFold(v string) predicate.ProxyGroupHistory

StateEqualFold applies the EqualFold predicate on the "state" field.

func StateGT

StateGT applies the GT predicate on the "state" field.

func StateGTE

StateGTE applies the GTE predicate on the "state" field.

func StateHasPrefix

func StateHasPrefix(v string) predicate.ProxyGroupHistory

StateHasPrefix applies the HasPrefix predicate on the "state" field.

func StateHasSuffix

func StateHasSuffix(v string) predicate.ProxyGroupHistory

StateHasSuffix applies the HasSuffix predicate on the "state" field.

func StateIn

func StateIn(vs ...string) predicate.ProxyGroupHistory

StateIn applies the In predicate on the "state" field.

func StateLT

StateLT applies the LT predicate on the "state" field.

func StateLTE

StateLTE applies the LTE predicate on the "state" field.

func StateNEQ

StateNEQ applies the NEQ predicate on the "state" field.

func StateNotIn

func StateNotIn(vs ...string) predicate.ProxyGroupHistory

StateNotIn applies the NotIn predicate on the "state" field.

func SuccessCount

func SuccessCount(v int) predicate.ProxyGroupHistory

SuccessCount applies equality check predicate on the "success_count" field. It's identical to SuccessCountEQ.

func SuccessCountEQ

func SuccessCountEQ(v int) predicate.ProxyGroupHistory

SuccessCountEQ applies the EQ predicate on the "success_count" field.

func SuccessCountGT

func SuccessCountGT(v int) predicate.ProxyGroupHistory

SuccessCountGT applies the GT predicate on the "success_count" field.

func SuccessCountGTE

func SuccessCountGTE(v int) predicate.ProxyGroupHistory

SuccessCountGTE applies the GTE predicate on the "success_count" field.

func SuccessCountIn

func SuccessCountIn(vs ...int) predicate.ProxyGroupHistory

SuccessCountIn applies the In predicate on the "success_count" field.

func SuccessCountLT

func SuccessCountLT(v int) predicate.ProxyGroupHistory

SuccessCountLT applies the LT predicate on the "success_count" field.

func SuccessCountLTE

func SuccessCountLTE(v int) predicate.ProxyGroupHistory

SuccessCountLTE applies the LTE predicate on the "success_count" field.

func SuccessCountNEQ

func SuccessCountNEQ(v int) predicate.ProxyGroupHistory

SuccessCountNEQ applies the NEQ predicate on the "success_count" field.

func SuccessCountNotIn

func SuccessCountNotIn(vs ...int) predicate.ProxyGroupHistory

SuccessCountNotIn applies the NotIn predicate on the "success_count" field.

func TotalUsers

func TotalUsers(v int) predicate.ProxyGroupHistory

TotalUsers applies equality check predicate on the "total_users" field. It's identical to TotalUsersEQ.

func TotalUsersEQ

func TotalUsersEQ(v int) predicate.ProxyGroupHistory

TotalUsersEQ applies the EQ predicate on the "total_users" field.

func TotalUsersGT

func TotalUsersGT(v int) predicate.ProxyGroupHistory

TotalUsersGT applies the GT predicate on the "total_users" field.

func TotalUsersGTE

func TotalUsersGTE(v int) predicate.ProxyGroupHistory

TotalUsersGTE applies the GTE predicate on the "total_users" field.

func TotalUsersIn

func TotalUsersIn(vs ...int) predicate.ProxyGroupHistory

TotalUsersIn applies the In predicate on the "total_users" field.

func TotalUsersLT

func TotalUsersLT(v int) predicate.ProxyGroupHistory

TotalUsersLT applies the LT predicate on the "total_users" field.

func TotalUsersLTE

func TotalUsersLTE(v int) predicate.ProxyGroupHistory

TotalUsersLTE applies the LTE predicate on the "total_users" field.

func TotalUsersNEQ

func TotalUsersNEQ(v int) predicate.ProxyGroupHistory

TotalUsersNEQ applies the NEQ predicate on the "total_users" field.

func TotalUsersNotIn

func TotalUsersNotIn(vs ...int) predicate.ProxyGroupHistory

TotalUsersNotIn applies the NotIn predicate on the "total_users" field.

func TriggerType

func TriggerType(v string) predicate.ProxyGroupHistory

TriggerType applies equality check predicate on the "trigger_type" field. It's identical to TriggerTypeEQ.

func TriggerTypeContains

func TriggerTypeContains(v string) predicate.ProxyGroupHistory

TriggerTypeContains applies the Contains predicate on the "trigger_type" field.

func TriggerTypeContainsFold

func TriggerTypeContainsFold(v string) predicate.ProxyGroupHistory

TriggerTypeContainsFold applies the ContainsFold predicate on the "trigger_type" field.

func TriggerTypeEQ

func TriggerTypeEQ(v string) predicate.ProxyGroupHistory

TriggerTypeEQ applies the EQ predicate on the "trigger_type" field.

func TriggerTypeEqualFold

func TriggerTypeEqualFold(v string) predicate.ProxyGroupHistory

TriggerTypeEqualFold applies the EqualFold predicate on the "trigger_type" field.

func TriggerTypeGT

func TriggerTypeGT(v string) predicate.ProxyGroupHistory

TriggerTypeGT applies the GT predicate on the "trigger_type" field.

func TriggerTypeGTE

func TriggerTypeGTE(v string) predicate.ProxyGroupHistory

TriggerTypeGTE applies the GTE predicate on the "trigger_type" field.

func TriggerTypeHasPrefix

func TriggerTypeHasPrefix(v string) predicate.ProxyGroupHistory

TriggerTypeHasPrefix applies the HasPrefix predicate on the "trigger_type" field.

func TriggerTypeHasSuffix

func TriggerTypeHasSuffix(v string) predicate.ProxyGroupHistory

TriggerTypeHasSuffix applies the HasSuffix predicate on the "trigger_type" field.

func TriggerTypeIn

func TriggerTypeIn(vs ...string) predicate.ProxyGroupHistory

TriggerTypeIn applies the In predicate on the "trigger_type" field.

func TriggerTypeLT

func TriggerTypeLT(v string) predicate.ProxyGroupHistory

TriggerTypeLT applies the LT predicate on the "trigger_type" field.

func TriggerTypeLTE

func TriggerTypeLTE(v string) predicate.ProxyGroupHistory

TriggerTypeLTE applies the LTE predicate on the "trigger_type" field.

func TriggerTypeNEQ

func TriggerTypeNEQ(v string) predicate.ProxyGroupHistory

TriggerTypeNEQ applies the NEQ predicate on the "trigger_type" field.

func TriggerTypeNotIn

func TriggerTypeNotIn(vs ...string) predicate.ProxyGroupHistory

TriggerTypeNotIn applies the NotIn predicate on the "trigger_type" 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 ProxyGroupHistory queries.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByEndTime

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

ByEndTime orders the results by the end_time field.

func ByErrorMessage

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

ByErrorMessage orders the results by the error_message field.

func ByFailedCount

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

ByFailedCount orders the results by the failed_count field.

func ByGroupMode

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

ByGroupMode orders the results by the group_mode field.

func ByID

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

ByID orders the results by the id field.

func ByOperator

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

ByOperator orders the results by the operator field.

func ByStartTime

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

ByStartTime orders the results by the start_time field.

func ByState

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

ByState orders the results by the state field.

func BySuccessCount

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

BySuccessCount orders the results by the success_count field.

func ByTotalUsers

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

ByTotalUsers orders the results by the total_users field.

func ByTriggerType

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

ByTriggerType orders the results by the trigger_type field.

Jump to

Keyboard shortcuts

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