integrationrun

package
v1.7.0 Latest Latest
Warning

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

Go to latest
Published: Feb 3, 2026 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the integrationrun type in the database.
	Label = "integration_run"
	// 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"
	// 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"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldDeletedBy holds the string denoting the deleted_by field in the database.
	FieldDeletedBy = "deleted_by"
	// FieldOwnerID holds the string denoting the owner_id field in the database.
	FieldOwnerID = "owner_id"
	// FieldIntegrationID holds the string denoting the integration_id field in the database.
	FieldIntegrationID = "integration_id"
	// FieldOperationName holds the string denoting the operation_name field in the database.
	FieldOperationName = "operation_name"
	// FieldOperationKind holds the string denoting the operation_kind field in the database.
	FieldOperationKind = "operation_kind"
	// FieldRunType holds the string denoting the run_type field in the database.
	FieldRunType = "run_type"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldStartedAt holds the string denoting the started_at field in the database.
	FieldStartedAt = "started_at"
	// FieldFinishedAt holds the string denoting the finished_at field in the database.
	FieldFinishedAt = "finished_at"
	// FieldDurationMs holds the string denoting the duration_ms field in the database.
	FieldDurationMs = "duration_ms"
	// FieldRequestFileID holds the string denoting the request_file_id field in the database.
	FieldRequestFileID = "request_file_id"
	// FieldResponseFileID holds the string denoting the response_file_id field in the database.
	FieldResponseFileID = "response_file_id"
	// FieldEventID holds the string denoting the event_id field in the database.
	FieldEventID = "event_id"
	// FieldSummary holds the string denoting the summary field in the database.
	FieldSummary = "summary"
	// FieldError holds the string denoting the error field in the database.
	FieldError = "error"
	// FieldMetrics holds the string denoting the metrics field in the database.
	FieldMetrics = "metrics"
	// EdgeOwner holds the string denoting the owner edge name in mutations.
	EdgeOwner = "owner"
	// EdgeIntegration holds the string denoting the integration edge name in mutations.
	EdgeIntegration = "integration"
	// EdgeRequestFile holds the string denoting the request_file edge name in mutations.
	EdgeRequestFile = "request_file"
	// EdgeResponseFile holds the string denoting the response_file edge name in mutations.
	EdgeResponseFile = "response_file"
	// EdgeEvent holds the string denoting the event edge name in mutations.
	EdgeEvent = "event"
	// Table holds the table name of the integrationrun in the database.
	Table = "integration_runs"
	// OwnerTable is the table that holds the owner relation/edge.
	OwnerTable = "integration_runs"
	// OwnerInverseTable is the table name for the Organization entity.
	// It exists in this package in order to avoid circular dependency with the "organization" package.
	OwnerInverseTable = "organizations"
	// OwnerColumn is the table column denoting the owner relation/edge.
	OwnerColumn = "owner_id"
	// IntegrationTable is the table that holds the integration relation/edge.
	IntegrationTable = "integration_runs"
	// IntegrationInverseTable is the table name for the Integration entity.
	// It exists in this package in order to avoid circular dependency with the "integration" package.
	IntegrationInverseTable = "integrations"
	// IntegrationColumn is the table column denoting the integration relation/edge.
	IntegrationColumn = "integration_id"
	// RequestFileTable is the table that holds the request_file relation/edge.
	RequestFileTable = "integration_runs"
	// RequestFileInverseTable is the table name for the File entity.
	// It exists in this package in order to avoid circular dependency with the "file" package.
	RequestFileInverseTable = "files"
	// RequestFileColumn is the table column denoting the request_file relation/edge.
	RequestFileColumn = "request_file_id"
	// ResponseFileTable is the table that holds the response_file relation/edge.
	ResponseFileTable = "integration_runs"
	// ResponseFileInverseTable is the table name for the File entity.
	// It exists in this package in order to avoid circular dependency with the "file" package.
	ResponseFileInverseTable = "files"
	// ResponseFileColumn is the table column denoting the response_file relation/edge.
	ResponseFileColumn = "response_file_id"
	// EventTable is the table that holds the event relation/edge.
	EventTable = "integration_runs"
	// EventInverseTable is the table name for the Event entity.
	// It exists in this package in order to avoid circular dependency with the "event" package.
	EventInverseTable = "events"
	// EventColumn is the table column denoting the event relation/edge.
	EventColumn = "event_id"
)
View Source
const DefaultStatus enums.IntegrationRunStatus = "PENDING"

Variables

View Source
var (
	Hooks        [5]ent.Hook
	Interceptors [3]ent.Interceptor
	Policy       ent.Policy
	// 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
	// OwnerIDValidator is a validator for the "owner_id" field. It is called by the builders before save.
	OwnerIDValidator func(string) error
	// DefaultStartedAt holds the default value on creation for the "started_at" field.
	DefaultStartedAt func() time.Time
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() string
)

Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:

import _ "github.com/theopenlane/core/internal/ent/generated/runtime"

Columns holds all SQL columns for integrationrun fields.

Functions

func And

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.IntegrationRun

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.IntegrationRun

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.IntegrationRun

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.IntegrationRun

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.IntegrationRun

CreatedAtIsNil applies the IsNil predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.IntegrationRun

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.IntegrationRun

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.IntegrationRun

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.IntegrationRun

CreatedAtNotNil applies the NotNil predicate on the "created_at" field.

func CreatedBy

func CreatedBy(v string) predicate.IntegrationRun

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

func CreatedByContains

func CreatedByContains(v string) predicate.IntegrationRun

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.IntegrationRun

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.IntegrationRun

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.IntegrationRun

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

func CreatedByGT

func CreatedByGT(v string) predicate.IntegrationRun

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.IntegrationRun

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.IntegrationRun

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.IntegrationRun

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.IntegrationRun

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

func CreatedByLT

func CreatedByLT(v string) predicate.IntegrationRun

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.IntegrationRun

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.IntegrationRun

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.IntegrationRun

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

func DeletedAt

func DeletedAt(v time.Time) predicate.IntegrationRun

DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.IntegrationRun

DeletedAtEQ applies the EQ predicate on the "deleted_at" field.

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.IntegrationRun

DeletedAtGT applies the GT predicate on the "deleted_at" field.

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.IntegrationRun

DeletedAtGTE applies the GTE predicate on the "deleted_at" field.

func DeletedAtIn

func DeletedAtIn(vs ...time.Time) predicate.IntegrationRun

DeletedAtIn applies the In predicate on the "deleted_at" field.

func DeletedAtIsNil

func DeletedAtIsNil() predicate.IntegrationRun

DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.IntegrationRun

DeletedAtLT applies the LT predicate on the "deleted_at" field.

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.IntegrationRun

DeletedAtLTE applies the LTE predicate on the "deleted_at" field.

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.IntegrationRun

DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.

func DeletedAtNotIn

func DeletedAtNotIn(vs ...time.Time) predicate.IntegrationRun

DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.

func DeletedAtNotNil

func DeletedAtNotNil() predicate.IntegrationRun

DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.

func DeletedBy

func DeletedBy(v string) predicate.IntegrationRun

DeletedBy applies equality check predicate on the "deleted_by" field. It's identical to DeletedByEQ.

func DeletedByContains

func DeletedByContains(v string) predicate.IntegrationRun

DeletedByContains applies the Contains predicate on the "deleted_by" field.

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.IntegrationRun

DeletedByContainsFold applies the ContainsFold predicate on the "deleted_by" field.

func DeletedByEQ

func DeletedByEQ(v string) predicate.IntegrationRun

DeletedByEQ applies the EQ predicate on the "deleted_by" field.

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.IntegrationRun

DeletedByEqualFold applies the EqualFold predicate on the "deleted_by" field.

func DeletedByGT

func DeletedByGT(v string) predicate.IntegrationRun

DeletedByGT applies the GT predicate on the "deleted_by" field.

func DeletedByGTE

func DeletedByGTE(v string) predicate.IntegrationRun

DeletedByGTE applies the GTE predicate on the "deleted_by" field.

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.IntegrationRun

DeletedByHasPrefix applies the HasPrefix predicate on the "deleted_by" field.

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.IntegrationRun

DeletedByHasSuffix applies the HasSuffix predicate on the "deleted_by" field.

func DeletedByIn

func DeletedByIn(vs ...string) predicate.IntegrationRun

DeletedByIn applies the In predicate on the "deleted_by" field.

func DeletedByIsNil

func DeletedByIsNil() predicate.IntegrationRun

DeletedByIsNil applies the IsNil predicate on the "deleted_by" field.

func DeletedByLT

func DeletedByLT(v string) predicate.IntegrationRun

DeletedByLT applies the LT predicate on the "deleted_by" field.

func DeletedByLTE

func DeletedByLTE(v string) predicate.IntegrationRun

DeletedByLTE applies the LTE predicate on the "deleted_by" field.

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.IntegrationRun

DeletedByNEQ applies the NEQ predicate on the "deleted_by" field.

func DeletedByNotIn

func DeletedByNotIn(vs ...string) predicate.IntegrationRun

DeletedByNotIn applies the NotIn predicate on the "deleted_by" field.

func DeletedByNotNil

func DeletedByNotNil() predicate.IntegrationRun

DeletedByNotNil applies the NotNil predicate on the "deleted_by" field.

func DurationMs

func DurationMs(v int) predicate.IntegrationRun

DurationMs applies equality check predicate on the "duration_ms" field. It's identical to DurationMsEQ.

func DurationMsEQ

func DurationMsEQ(v int) predicate.IntegrationRun

DurationMsEQ applies the EQ predicate on the "duration_ms" field.

func DurationMsGT

func DurationMsGT(v int) predicate.IntegrationRun

DurationMsGT applies the GT predicate on the "duration_ms" field.

func DurationMsGTE

func DurationMsGTE(v int) predicate.IntegrationRun

DurationMsGTE applies the GTE predicate on the "duration_ms" field.

func DurationMsIn

func DurationMsIn(vs ...int) predicate.IntegrationRun

DurationMsIn applies the In predicate on the "duration_ms" field.

func DurationMsIsNil

func DurationMsIsNil() predicate.IntegrationRun

DurationMsIsNil applies the IsNil predicate on the "duration_ms" field.

func DurationMsLT

func DurationMsLT(v int) predicate.IntegrationRun

DurationMsLT applies the LT predicate on the "duration_ms" field.

func DurationMsLTE

func DurationMsLTE(v int) predicate.IntegrationRun

DurationMsLTE applies the LTE predicate on the "duration_ms" field.

func DurationMsNEQ

func DurationMsNEQ(v int) predicate.IntegrationRun

DurationMsNEQ applies the NEQ predicate on the "duration_ms" field.

func DurationMsNotIn

func DurationMsNotIn(vs ...int) predicate.IntegrationRun

DurationMsNotIn applies the NotIn predicate on the "duration_ms" field.

func DurationMsNotNil

func DurationMsNotNil() predicate.IntegrationRun

DurationMsNotNil applies the NotNil predicate on the "duration_ms" field.

func Error

Error applies equality check predicate on the "error" field. It's identical to ErrorEQ.

func ErrorContains

func ErrorContains(v string) predicate.IntegrationRun

ErrorContains applies the Contains predicate on the "error" field.

func ErrorContainsFold

func ErrorContainsFold(v string) predicate.IntegrationRun

ErrorContainsFold applies the ContainsFold predicate on the "error" field.

func ErrorEQ

func ErrorEQ(v string) predicate.IntegrationRun

ErrorEQ applies the EQ predicate on the "error" field.

func ErrorEqualFold

func ErrorEqualFold(v string) predicate.IntegrationRun

ErrorEqualFold applies the EqualFold predicate on the "error" field.

func ErrorGT

func ErrorGT(v string) predicate.IntegrationRun

ErrorGT applies the GT predicate on the "error" field.

func ErrorGTE

func ErrorGTE(v string) predicate.IntegrationRun

ErrorGTE applies the GTE predicate on the "error" field.

func ErrorHasPrefix

func ErrorHasPrefix(v string) predicate.IntegrationRun

ErrorHasPrefix applies the HasPrefix predicate on the "error" field.

func ErrorHasSuffix

func ErrorHasSuffix(v string) predicate.IntegrationRun

ErrorHasSuffix applies the HasSuffix predicate on the "error" field.

func ErrorIn

func ErrorIn(vs ...string) predicate.IntegrationRun

ErrorIn applies the In predicate on the "error" field.

func ErrorIsNil

func ErrorIsNil() predicate.IntegrationRun

ErrorIsNil applies the IsNil predicate on the "error" field.

func ErrorLT

func ErrorLT(v string) predicate.IntegrationRun

ErrorLT applies the LT predicate on the "error" field.

func ErrorLTE

func ErrorLTE(v string) predicate.IntegrationRun

ErrorLTE applies the LTE predicate on the "error" field.

func ErrorNEQ

func ErrorNEQ(v string) predicate.IntegrationRun

ErrorNEQ applies the NEQ predicate on the "error" field.

func ErrorNotIn

func ErrorNotIn(vs ...string) predicate.IntegrationRun

ErrorNotIn applies the NotIn predicate on the "error" field.

func ErrorNotNil

func ErrorNotNil() predicate.IntegrationRun

ErrorNotNil applies the NotNil predicate on the "error" field.

func EventID

func EventID(v string) predicate.IntegrationRun

EventID applies equality check predicate on the "event_id" field. It's identical to EventIDEQ.

func EventIDContains

func EventIDContains(v string) predicate.IntegrationRun

EventIDContains applies the Contains predicate on the "event_id" field.

func EventIDContainsFold

func EventIDContainsFold(v string) predicate.IntegrationRun

EventIDContainsFold applies the ContainsFold predicate on the "event_id" field.

func EventIDEQ

func EventIDEQ(v string) predicate.IntegrationRun

EventIDEQ applies the EQ predicate on the "event_id" field.

func EventIDEqualFold

func EventIDEqualFold(v string) predicate.IntegrationRun

EventIDEqualFold applies the EqualFold predicate on the "event_id" field.

func EventIDGT

func EventIDGT(v string) predicate.IntegrationRun

EventIDGT applies the GT predicate on the "event_id" field.

func EventIDGTE

func EventIDGTE(v string) predicate.IntegrationRun

EventIDGTE applies the GTE predicate on the "event_id" field.

func EventIDHasPrefix

func EventIDHasPrefix(v string) predicate.IntegrationRun

EventIDHasPrefix applies the HasPrefix predicate on the "event_id" field.

func EventIDHasSuffix

func EventIDHasSuffix(v string) predicate.IntegrationRun

EventIDHasSuffix applies the HasSuffix predicate on the "event_id" field.

func EventIDIn

func EventIDIn(vs ...string) predicate.IntegrationRun

EventIDIn applies the In predicate on the "event_id" field.

func EventIDIsNil

func EventIDIsNil() predicate.IntegrationRun

EventIDIsNil applies the IsNil predicate on the "event_id" field.

func EventIDLT

func EventIDLT(v string) predicate.IntegrationRun

EventIDLT applies the LT predicate on the "event_id" field.

func EventIDLTE

func EventIDLTE(v string) predicate.IntegrationRun

EventIDLTE applies the LTE predicate on the "event_id" field.

func EventIDNEQ

func EventIDNEQ(v string) predicate.IntegrationRun

EventIDNEQ applies the NEQ predicate on the "event_id" field.

func EventIDNotIn

func EventIDNotIn(vs ...string) predicate.IntegrationRun

EventIDNotIn applies the NotIn predicate on the "event_id" field.

func EventIDNotNil

func EventIDNotNil() predicate.IntegrationRun

EventIDNotNil applies the NotNil predicate on the "event_id" field.

func FinishedAt

func FinishedAt(v time.Time) predicate.IntegrationRun

FinishedAt applies equality check predicate on the "finished_at" field. It's identical to FinishedAtEQ.

func FinishedAtEQ

func FinishedAtEQ(v time.Time) predicate.IntegrationRun

FinishedAtEQ applies the EQ predicate on the "finished_at" field.

func FinishedAtGT

func FinishedAtGT(v time.Time) predicate.IntegrationRun

FinishedAtGT applies the GT predicate on the "finished_at" field.

func FinishedAtGTE

func FinishedAtGTE(v time.Time) predicate.IntegrationRun

FinishedAtGTE applies the GTE predicate on the "finished_at" field.

func FinishedAtIn

func FinishedAtIn(vs ...time.Time) predicate.IntegrationRun

FinishedAtIn applies the In predicate on the "finished_at" field.

func FinishedAtIsNil

func FinishedAtIsNil() predicate.IntegrationRun

FinishedAtIsNil applies the IsNil predicate on the "finished_at" field.

func FinishedAtLT

func FinishedAtLT(v time.Time) predicate.IntegrationRun

FinishedAtLT applies the LT predicate on the "finished_at" field.

func FinishedAtLTE

func FinishedAtLTE(v time.Time) predicate.IntegrationRun

FinishedAtLTE applies the LTE predicate on the "finished_at" field.

func FinishedAtNEQ

func FinishedAtNEQ(v time.Time) predicate.IntegrationRun

FinishedAtNEQ applies the NEQ predicate on the "finished_at" field.

func FinishedAtNotIn

func FinishedAtNotIn(vs ...time.Time) predicate.IntegrationRun

FinishedAtNotIn applies the NotIn predicate on the "finished_at" field.

func FinishedAtNotNil

func FinishedAtNotNil() predicate.IntegrationRun

FinishedAtNotNil applies the NotNil predicate on the "finished_at" field.

func HasEvent

func HasEvent() predicate.IntegrationRun

HasEvent applies the HasEdge predicate on the "event" edge.

func HasEventWith

func HasEventWith(preds ...predicate.Event) predicate.IntegrationRun

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

func HasIntegration

func HasIntegration() predicate.IntegrationRun

HasIntegration applies the HasEdge predicate on the "integration" edge.

func HasIntegrationWith

func HasIntegrationWith(preds ...predicate.Integration) predicate.IntegrationRun

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

func HasOwner

func HasOwner() predicate.IntegrationRun

HasOwner applies the HasEdge predicate on the "owner" edge.

func HasOwnerWith

func HasOwnerWith(preds ...predicate.Organization) predicate.IntegrationRun

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

func HasRequestFile

func HasRequestFile() predicate.IntegrationRun

HasRequestFile applies the HasEdge predicate on the "request_file" edge.

func HasRequestFileWith

func HasRequestFileWith(preds ...predicate.File) predicate.IntegrationRun

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

func HasResponseFile

func HasResponseFile() predicate.IntegrationRun

HasResponseFile applies the HasEdge predicate on the "response_file" edge.

func HasResponseFileWith

func HasResponseFileWith(preds ...predicate.File) predicate.IntegrationRun

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.IntegrationRun

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

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

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

IDNotIn applies the NotIn predicate on the ID field.

func IntegrationID

func IntegrationID(v string) predicate.IntegrationRun

IntegrationID applies equality check predicate on the "integration_id" field. It's identical to IntegrationIDEQ.

func IntegrationIDContains

func IntegrationIDContains(v string) predicate.IntegrationRun

IntegrationIDContains applies the Contains predicate on the "integration_id" field.

func IntegrationIDContainsFold

func IntegrationIDContainsFold(v string) predicate.IntegrationRun

IntegrationIDContainsFold applies the ContainsFold predicate on the "integration_id" field.

func IntegrationIDEQ

func IntegrationIDEQ(v string) predicate.IntegrationRun

IntegrationIDEQ applies the EQ predicate on the "integration_id" field.

func IntegrationIDEqualFold

func IntegrationIDEqualFold(v string) predicate.IntegrationRun

IntegrationIDEqualFold applies the EqualFold predicate on the "integration_id" field.

func IntegrationIDGT

func IntegrationIDGT(v string) predicate.IntegrationRun

IntegrationIDGT applies the GT predicate on the "integration_id" field.

func IntegrationIDGTE

func IntegrationIDGTE(v string) predicate.IntegrationRun

IntegrationIDGTE applies the GTE predicate on the "integration_id" field.

func IntegrationIDHasPrefix

func IntegrationIDHasPrefix(v string) predicate.IntegrationRun

IntegrationIDHasPrefix applies the HasPrefix predicate on the "integration_id" field.

func IntegrationIDHasSuffix

func IntegrationIDHasSuffix(v string) predicate.IntegrationRun

IntegrationIDHasSuffix applies the HasSuffix predicate on the "integration_id" field.

func IntegrationIDIn

func IntegrationIDIn(vs ...string) predicate.IntegrationRun

IntegrationIDIn applies the In predicate on the "integration_id" field.

func IntegrationIDIsNil

func IntegrationIDIsNil() predicate.IntegrationRun

IntegrationIDIsNil applies the IsNil predicate on the "integration_id" field.

func IntegrationIDLT

func IntegrationIDLT(v string) predicate.IntegrationRun

IntegrationIDLT applies the LT predicate on the "integration_id" field.

func IntegrationIDLTE

func IntegrationIDLTE(v string) predicate.IntegrationRun

IntegrationIDLTE applies the LTE predicate on the "integration_id" field.

func IntegrationIDNEQ

func IntegrationIDNEQ(v string) predicate.IntegrationRun

IntegrationIDNEQ applies the NEQ predicate on the "integration_id" field.

func IntegrationIDNotIn

func IntegrationIDNotIn(vs ...string) predicate.IntegrationRun

IntegrationIDNotIn applies the NotIn predicate on the "integration_id" field.

func IntegrationIDNotNil

func IntegrationIDNotNil() predicate.IntegrationRun

IntegrationIDNotNil applies the NotNil predicate on the "integration_id" field.

func MetricsIsNil

func MetricsIsNil() predicate.IntegrationRun

MetricsIsNil applies the IsNil predicate on the "metrics" field.

func MetricsNotNil

func MetricsNotNil() predicate.IntegrationRun

MetricsNotNil applies the NotNil predicate on the "metrics" field.

func Not

Not applies the not operator on the given predicate.

func OperationKindEQ

OperationKindEQ applies the EQ predicate on the "operation_kind" field.

func OperationKindIn

OperationKindIn applies the In predicate on the "operation_kind" field.

func OperationKindIsNil

func OperationKindIsNil() predicate.IntegrationRun

OperationKindIsNil applies the IsNil predicate on the "operation_kind" field.

func OperationKindNEQ

OperationKindNEQ applies the NEQ predicate on the "operation_kind" field.

func OperationKindNotIn

func OperationKindNotIn(vs ...enums.IntegrationOperationKind) predicate.IntegrationRun

OperationKindNotIn applies the NotIn predicate on the "operation_kind" field.

func OperationKindNotNil

func OperationKindNotNil() predicate.IntegrationRun

OperationKindNotNil applies the NotNil predicate on the "operation_kind" field.

func OperationKindValidator

func OperationKindValidator(ok enums.IntegrationOperationKind) error

OperationKindValidator is a validator for the "operation_kind" field enum values. It is called by the builders before save.

func OperationName

func OperationName(v string) predicate.IntegrationRun

OperationName applies equality check predicate on the "operation_name" field. It's identical to OperationNameEQ.

func OperationNameContains

func OperationNameContains(v string) predicate.IntegrationRun

OperationNameContains applies the Contains predicate on the "operation_name" field.

func OperationNameContainsFold

func OperationNameContainsFold(v string) predicate.IntegrationRun

OperationNameContainsFold applies the ContainsFold predicate on the "operation_name" field.

func OperationNameEQ

func OperationNameEQ(v string) predicate.IntegrationRun

OperationNameEQ applies the EQ predicate on the "operation_name" field.

func OperationNameEqualFold

func OperationNameEqualFold(v string) predicate.IntegrationRun

OperationNameEqualFold applies the EqualFold predicate on the "operation_name" field.

func OperationNameGT

func OperationNameGT(v string) predicate.IntegrationRun

OperationNameGT applies the GT predicate on the "operation_name" field.

func OperationNameGTE

func OperationNameGTE(v string) predicate.IntegrationRun

OperationNameGTE applies the GTE predicate on the "operation_name" field.

func OperationNameHasPrefix

func OperationNameHasPrefix(v string) predicate.IntegrationRun

OperationNameHasPrefix applies the HasPrefix predicate on the "operation_name" field.

func OperationNameHasSuffix

func OperationNameHasSuffix(v string) predicate.IntegrationRun

OperationNameHasSuffix applies the HasSuffix predicate on the "operation_name" field.

func OperationNameIn

func OperationNameIn(vs ...string) predicate.IntegrationRun

OperationNameIn applies the In predicate on the "operation_name" field.

func OperationNameIsNil

func OperationNameIsNil() predicate.IntegrationRun

OperationNameIsNil applies the IsNil predicate on the "operation_name" field.

func OperationNameLT

func OperationNameLT(v string) predicate.IntegrationRun

OperationNameLT applies the LT predicate on the "operation_name" field.

func OperationNameLTE

func OperationNameLTE(v string) predicate.IntegrationRun

OperationNameLTE applies the LTE predicate on the "operation_name" field.

func OperationNameNEQ

func OperationNameNEQ(v string) predicate.IntegrationRun

OperationNameNEQ applies the NEQ predicate on the "operation_name" field.

func OperationNameNotIn

func OperationNameNotIn(vs ...string) predicate.IntegrationRun

OperationNameNotIn applies the NotIn predicate on the "operation_name" field.

func OperationNameNotNil

func OperationNameNotNil() predicate.IntegrationRun

OperationNameNotNil applies the NotNil predicate on the "operation_name" field.

func Or

Or groups predicates with the OR operator between them.

func OwnerID

func OwnerID(v string) predicate.IntegrationRun

OwnerID applies equality check predicate on the "owner_id" field. It's identical to OwnerIDEQ.

func OwnerIDContains

func OwnerIDContains(v string) predicate.IntegrationRun

OwnerIDContains applies the Contains predicate on the "owner_id" field.

func OwnerIDContainsFold

func OwnerIDContainsFold(v string) predicate.IntegrationRun

OwnerIDContainsFold applies the ContainsFold predicate on the "owner_id" field.

func OwnerIDEQ

func OwnerIDEQ(v string) predicate.IntegrationRun

OwnerIDEQ applies the EQ predicate on the "owner_id" field.

func OwnerIDEqualFold

func OwnerIDEqualFold(v string) predicate.IntegrationRun

OwnerIDEqualFold applies the EqualFold predicate on the "owner_id" field.

func OwnerIDGT

func OwnerIDGT(v string) predicate.IntegrationRun

OwnerIDGT applies the GT predicate on the "owner_id" field.

func OwnerIDGTE

func OwnerIDGTE(v string) predicate.IntegrationRun

OwnerIDGTE applies the GTE predicate on the "owner_id" field.

func OwnerIDHasPrefix

func OwnerIDHasPrefix(v string) predicate.IntegrationRun

OwnerIDHasPrefix applies the HasPrefix predicate on the "owner_id" field.

func OwnerIDHasSuffix

func OwnerIDHasSuffix(v string) predicate.IntegrationRun

OwnerIDHasSuffix applies the HasSuffix predicate on the "owner_id" field.

func OwnerIDIn

func OwnerIDIn(vs ...string) predicate.IntegrationRun

OwnerIDIn applies the In predicate on the "owner_id" field.

func OwnerIDIsNil

func OwnerIDIsNil() predicate.IntegrationRun

OwnerIDIsNil applies the IsNil predicate on the "owner_id" field.

func OwnerIDLT

func OwnerIDLT(v string) predicate.IntegrationRun

OwnerIDLT applies the LT predicate on the "owner_id" field.

func OwnerIDLTE

func OwnerIDLTE(v string) predicate.IntegrationRun

OwnerIDLTE applies the LTE predicate on the "owner_id" field.

func OwnerIDNEQ

func OwnerIDNEQ(v string) predicate.IntegrationRun

OwnerIDNEQ applies the NEQ predicate on the "owner_id" field.

func OwnerIDNotIn

func OwnerIDNotIn(vs ...string) predicate.IntegrationRun

OwnerIDNotIn applies the NotIn predicate on the "owner_id" field.

func OwnerIDNotNil

func OwnerIDNotNil() predicate.IntegrationRun

OwnerIDNotNil applies the NotNil predicate on the "owner_id" field.

func RequestFileID

func RequestFileID(v string) predicate.IntegrationRun

RequestFileID applies equality check predicate on the "request_file_id" field. It's identical to RequestFileIDEQ.

func RequestFileIDContains

func RequestFileIDContains(v string) predicate.IntegrationRun

RequestFileIDContains applies the Contains predicate on the "request_file_id" field.

func RequestFileIDContainsFold

func RequestFileIDContainsFold(v string) predicate.IntegrationRun

RequestFileIDContainsFold applies the ContainsFold predicate on the "request_file_id" field.

func RequestFileIDEQ

func RequestFileIDEQ(v string) predicate.IntegrationRun

RequestFileIDEQ applies the EQ predicate on the "request_file_id" field.

func RequestFileIDEqualFold

func RequestFileIDEqualFold(v string) predicate.IntegrationRun

RequestFileIDEqualFold applies the EqualFold predicate on the "request_file_id" field.

func RequestFileIDGT

func RequestFileIDGT(v string) predicate.IntegrationRun

RequestFileIDGT applies the GT predicate on the "request_file_id" field.

func RequestFileIDGTE

func RequestFileIDGTE(v string) predicate.IntegrationRun

RequestFileIDGTE applies the GTE predicate on the "request_file_id" field.

func RequestFileIDHasPrefix

func RequestFileIDHasPrefix(v string) predicate.IntegrationRun

RequestFileIDHasPrefix applies the HasPrefix predicate on the "request_file_id" field.

func RequestFileIDHasSuffix

func RequestFileIDHasSuffix(v string) predicate.IntegrationRun

RequestFileIDHasSuffix applies the HasSuffix predicate on the "request_file_id" field.

func RequestFileIDIn

func RequestFileIDIn(vs ...string) predicate.IntegrationRun

RequestFileIDIn applies the In predicate on the "request_file_id" field.

func RequestFileIDIsNil

func RequestFileIDIsNil() predicate.IntegrationRun

RequestFileIDIsNil applies the IsNil predicate on the "request_file_id" field.

func RequestFileIDLT

func RequestFileIDLT(v string) predicate.IntegrationRun

RequestFileIDLT applies the LT predicate on the "request_file_id" field.

func RequestFileIDLTE

func RequestFileIDLTE(v string) predicate.IntegrationRun

RequestFileIDLTE applies the LTE predicate on the "request_file_id" field.

func RequestFileIDNEQ

func RequestFileIDNEQ(v string) predicate.IntegrationRun

RequestFileIDNEQ applies the NEQ predicate on the "request_file_id" field.

func RequestFileIDNotIn

func RequestFileIDNotIn(vs ...string) predicate.IntegrationRun

RequestFileIDNotIn applies the NotIn predicate on the "request_file_id" field.

func RequestFileIDNotNil

func RequestFileIDNotNil() predicate.IntegrationRun

RequestFileIDNotNil applies the NotNil predicate on the "request_file_id" field.

func ResponseFileID

func ResponseFileID(v string) predicate.IntegrationRun

ResponseFileID applies equality check predicate on the "response_file_id" field. It's identical to ResponseFileIDEQ.

func ResponseFileIDContains

func ResponseFileIDContains(v string) predicate.IntegrationRun

ResponseFileIDContains applies the Contains predicate on the "response_file_id" field.

func ResponseFileIDContainsFold

func ResponseFileIDContainsFold(v string) predicate.IntegrationRun

ResponseFileIDContainsFold applies the ContainsFold predicate on the "response_file_id" field.

func ResponseFileIDEQ

func ResponseFileIDEQ(v string) predicate.IntegrationRun

ResponseFileIDEQ applies the EQ predicate on the "response_file_id" field.

func ResponseFileIDEqualFold

func ResponseFileIDEqualFold(v string) predicate.IntegrationRun

ResponseFileIDEqualFold applies the EqualFold predicate on the "response_file_id" field.

func ResponseFileIDGT

func ResponseFileIDGT(v string) predicate.IntegrationRun

ResponseFileIDGT applies the GT predicate on the "response_file_id" field.

func ResponseFileIDGTE

func ResponseFileIDGTE(v string) predicate.IntegrationRun

ResponseFileIDGTE applies the GTE predicate on the "response_file_id" field.

func ResponseFileIDHasPrefix

func ResponseFileIDHasPrefix(v string) predicate.IntegrationRun

ResponseFileIDHasPrefix applies the HasPrefix predicate on the "response_file_id" field.

func ResponseFileIDHasSuffix

func ResponseFileIDHasSuffix(v string) predicate.IntegrationRun

ResponseFileIDHasSuffix applies the HasSuffix predicate on the "response_file_id" field.

func ResponseFileIDIn

func ResponseFileIDIn(vs ...string) predicate.IntegrationRun

ResponseFileIDIn applies the In predicate on the "response_file_id" field.

func ResponseFileIDIsNil

func ResponseFileIDIsNil() predicate.IntegrationRun

ResponseFileIDIsNil applies the IsNil predicate on the "response_file_id" field.

func ResponseFileIDLT

func ResponseFileIDLT(v string) predicate.IntegrationRun

ResponseFileIDLT applies the LT predicate on the "response_file_id" field.

func ResponseFileIDLTE

func ResponseFileIDLTE(v string) predicate.IntegrationRun

ResponseFileIDLTE applies the LTE predicate on the "response_file_id" field.

func ResponseFileIDNEQ

func ResponseFileIDNEQ(v string) predicate.IntegrationRun

ResponseFileIDNEQ applies the NEQ predicate on the "response_file_id" field.

func ResponseFileIDNotIn

func ResponseFileIDNotIn(vs ...string) predicate.IntegrationRun

ResponseFileIDNotIn applies the NotIn predicate on the "response_file_id" field.

func ResponseFileIDNotNil

func ResponseFileIDNotNil() predicate.IntegrationRun

ResponseFileIDNotNil applies the NotNil predicate on the "response_file_id" field.

func RunTypeEQ

RunTypeEQ applies the EQ predicate on the "run_type" field.

func RunTypeIn

RunTypeIn applies the In predicate on the "run_type" field.

func RunTypeIsNil

func RunTypeIsNil() predicate.IntegrationRun

RunTypeIsNil applies the IsNil predicate on the "run_type" field.

func RunTypeNEQ

RunTypeNEQ applies the NEQ predicate on the "run_type" field.

func RunTypeNotIn

RunTypeNotIn applies the NotIn predicate on the "run_type" field.

func RunTypeNotNil

func RunTypeNotNil() predicate.IntegrationRun

RunTypeNotNil applies the NotNil predicate on the "run_type" field.

func RunTypeValidator

func RunTypeValidator(rt enums.IntegrationRunType) error

RunTypeValidator is a validator for the "run_type" field enum values. It is called by the builders before save.

func StartedAt

func StartedAt(v time.Time) predicate.IntegrationRun

StartedAt applies equality check predicate on the "started_at" field. It's identical to StartedAtEQ.

func StartedAtEQ

func StartedAtEQ(v time.Time) predicate.IntegrationRun

StartedAtEQ applies the EQ predicate on the "started_at" field.

func StartedAtGT

func StartedAtGT(v time.Time) predicate.IntegrationRun

StartedAtGT applies the GT predicate on the "started_at" field.

func StartedAtGTE

func StartedAtGTE(v time.Time) predicate.IntegrationRun

StartedAtGTE applies the GTE predicate on the "started_at" field.

func StartedAtIn

func StartedAtIn(vs ...time.Time) predicate.IntegrationRun

StartedAtIn applies the In predicate on the "started_at" field.

func StartedAtLT

func StartedAtLT(v time.Time) predicate.IntegrationRun

StartedAtLT applies the LT predicate on the "started_at" field.

func StartedAtLTE

func StartedAtLTE(v time.Time) predicate.IntegrationRun

StartedAtLTE applies the LTE predicate on the "started_at" field.

func StartedAtNEQ

func StartedAtNEQ(v time.Time) predicate.IntegrationRun

StartedAtNEQ applies the NEQ predicate on the "started_at" field.

func StartedAtNotIn

func StartedAtNotIn(vs ...time.Time) predicate.IntegrationRun

StartedAtNotIn applies the NotIn predicate on the "started_at" field.

func StatusEQ

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

func StatusIn

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

func StatusNEQ

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

func StatusNotIn

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

func StatusValidator

func StatusValidator(s enums.IntegrationRunStatus) error

StatusValidator is a validator for the "status" field enum values. It is called by the builders before save.

func Summary

func Summary(v string) predicate.IntegrationRun

Summary applies equality check predicate on the "summary" field. It's identical to SummaryEQ.

func SummaryContains

func SummaryContains(v string) predicate.IntegrationRun

SummaryContains applies the Contains predicate on the "summary" field.

func SummaryContainsFold

func SummaryContainsFold(v string) predicate.IntegrationRun

SummaryContainsFold applies the ContainsFold predicate on the "summary" field.

func SummaryEQ

func SummaryEQ(v string) predicate.IntegrationRun

SummaryEQ applies the EQ predicate on the "summary" field.

func SummaryEqualFold

func SummaryEqualFold(v string) predicate.IntegrationRun

SummaryEqualFold applies the EqualFold predicate on the "summary" field.

func SummaryGT

func SummaryGT(v string) predicate.IntegrationRun

SummaryGT applies the GT predicate on the "summary" field.

func SummaryGTE

func SummaryGTE(v string) predicate.IntegrationRun

SummaryGTE applies the GTE predicate on the "summary" field.

func SummaryHasPrefix

func SummaryHasPrefix(v string) predicate.IntegrationRun

SummaryHasPrefix applies the HasPrefix predicate on the "summary" field.

func SummaryHasSuffix

func SummaryHasSuffix(v string) predicate.IntegrationRun

SummaryHasSuffix applies the HasSuffix predicate on the "summary" field.

func SummaryIn

func SummaryIn(vs ...string) predicate.IntegrationRun

SummaryIn applies the In predicate on the "summary" field.

func SummaryIsNil

func SummaryIsNil() predicate.IntegrationRun

SummaryIsNil applies the IsNil predicate on the "summary" field.

func SummaryLT

func SummaryLT(v string) predicate.IntegrationRun

SummaryLT applies the LT predicate on the "summary" field.

func SummaryLTE

func SummaryLTE(v string) predicate.IntegrationRun

SummaryLTE applies the LTE predicate on the "summary" field.

func SummaryNEQ

func SummaryNEQ(v string) predicate.IntegrationRun

SummaryNEQ applies the NEQ predicate on the "summary" field.

func SummaryNotIn

func SummaryNotIn(vs ...string) predicate.IntegrationRun

SummaryNotIn applies the NotIn predicate on the "summary" field.

func SummaryNotNil

func SummaryNotNil() predicate.IntegrationRun

SummaryNotNil applies the NotNil predicate on the "summary" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.IntegrationRun

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.IntegrationRun

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.IntegrationRun

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.IntegrationRun

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.IntegrationRun

UpdatedAtIsNil applies the IsNil predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.IntegrationRun

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.IntegrationRun

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.IntegrationRun

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.IntegrationRun

UpdatedAtNotNil applies the NotNil predicate on the "updated_at" field.

func UpdatedBy

func UpdatedBy(v string) predicate.IntegrationRun

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.IntegrationRun

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.IntegrationRun

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.IntegrationRun

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.IntegrationRun

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.IntegrationRun

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.IntegrationRun

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.IntegrationRun

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.IntegrationRun

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.IntegrationRun

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.IntegrationRun

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.IntegrationRun

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.IntegrationRun

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.IntegrationRun

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

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 ByDeletedAt

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

ByDeletedAt orders the results by the deleted_at field.

func ByDeletedBy

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

ByDeletedBy orders the results by the deleted_by field.

func ByDurationMs

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

ByDurationMs orders the results by the duration_ms field.

func ByError

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

ByError orders the results by the error field.

func ByEventField

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

ByEventField orders the results by event field.

func ByEventID

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

ByEventID orders the results by the event_id field.

func ByFinishedAt

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

ByFinishedAt orders the results by the finished_at field.

func ByID

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

ByID orders the results by the id field.

func ByIntegrationField

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

ByIntegrationField orders the results by integration field.

func ByIntegrationID

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

ByIntegrationID orders the results by the integration_id field.

func ByOperationKind

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

ByOperationKind orders the results by the operation_kind field.

func ByOperationName

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

ByOperationName orders the results by the operation_name field.

func ByOwnerField

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

ByOwnerField orders the results by owner field.

func ByOwnerID

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

ByOwnerID orders the results by the owner_id field.

func ByRequestFileField

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

ByRequestFileField orders the results by request_file field.

func ByRequestFileID

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

ByRequestFileID orders the results by the request_file_id field.

func ByResponseFileField

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

ByResponseFileField orders the results by response_file field.

func ByResponseFileID

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

ByResponseFileID orders the results by the response_file_id field.

func ByRunType

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

ByRunType orders the results by the run_type field.

func ByStartedAt

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

ByStartedAt orders the results by the started_at field.

func ByStatus

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

ByStatus orders the results by the status field.

func BySummary

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

BySummary orders the results by the summary 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