integrationwebhook

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 integrationwebhook type in the database.
	Label = "integration_webhook"
	// 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"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldEndpointURL holds the string denoting the endpoint_url field in the database.
	FieldEndpointURL = "endpoint_url"
	// FieldSecretToken holds the string denoting the secret_token field in the database.
	FieldSecretToken = "secret_token"
	// FieldAllowedEvents holds the string denoting the allowed_events field in the database.
	FieldAllowedEvents = "allowed_events"
	// FieldLastDeliveryID holds the string denoting the last_delivery_id field in the database.
	FieldLastDeliveryID = "last_delivery_id"
	// FieldLastDeliveryAt holds the string denoting the last_delivery_at field in the database.
	FieldLastDeliveryAt = "last_delivery_at"
	// FieldLastDeliveryStatus holds the string denoting the last_delivery_status field in the database.
	FieldLastDeliveryStatus = "last_delivery_status"
	// FieldLastDeliveryError holds the string denoting the last_delivery_error field in the database.
	FieldLastDeliveryError = "last_delivery_error"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// 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"
	// Table holds the table name of the integrationwebhook in the database.
	Table = "integration_webhooks"
	// OwnerTable is the table that holds the owner relation/edge.
	OwnerTable = "integration_webhooks"
	// 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_webhooks"
	// 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"
)
View Source
const DefaultStatus enums.IntegrationWebhookStatus = "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
	// EndpointURLValidator is a validator for the "endpoint_url" field. It is called by the builders before save.
	EndpointURLValidator func(string) error
	// DefaultSecretToken holds the default value on creation for the "secret_token" field.
	DefaultSecretToken func() string
	// 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 integrationwebhook fields.

Functions

func AllowedEventsIsNil

func AllowedEventsIsNil() predicate.IntegrationWebhook

AllowedEventsIsNil applies the IsNil predicate on the "allowed_events" field.

func AllowedEventsNotNil

func AllowedEventsNotNil() predicate.IntegrationWebhook

AllowedEventsNotNil applies the NotNil predicate on the "allowed_events" field.

func And

And groups predicates with the AND operator between them.

func CreatedAt

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.IntegrationWebhook

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.IntegrationWebhook

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.IntegrationWebhook

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.IntegrationWebhook

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.IntegrationWebhook

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.IntegrationWebhook

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.IntegrationWebhook

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.IntegrationWebhook

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

func CreatedBy

func CreatedBy(v string) predicate.IntegrationWebhook

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

func CreatedByContains

func CreatedByContains(v string) predicate.IntegrationWebhook

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.IntegrationWebhook

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.IntegrationWebhook

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.IntegrationWebhook

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

func CreatedByGT

func CreatedByGT(v string) predicate.IntegrationWebhook

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.IntegrationWebhook

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.IntegrationWebhook

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.IntegrationWebhook

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.IntegrationWebhook

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

func CreatedByLT

func CreatedByLT(v string) predicate.IntegrationWebhook

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.IntegrationWebhook

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.IntegrationWebhook

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.IntegrationWebhook

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

func DeletedAt

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.IntegrationWebhook

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.IntegrationWebhook

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.IntegrationWebhook

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.IntegrationWebhook

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.IntegrationWebhook

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.IntegrationWebhook

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.IntegrationWebhook

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.IntegrationWebhook

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

func DeletedBy

func DeletedBy(v string) predicate.IntegrationWebhook

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

func DeletedByContains

func DeletedByContains(v string) predicate.IntegrationWebhook

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

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.IntegrationWebhook

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

func DeletedByEQ

func DeletedByEQ(v string) predicate.IntegrationWebhook

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

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.IntegrationWebhook

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

func DeletedByGT

func DeletedByGT(v string) predicate.IntegrationWebhook

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

func DeletedByGTE

func DeletedByGTE(v string) predicate.IntegrationWebhook

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

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.IntegrationWebhook

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

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.IntegrationWebhook

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

func DeletedByIn

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

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

func DeletedByIsNil

func DeletedByIsNil() predicate.IntegrationWebhook

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

func DeletedByLT

func DeletedByLT(v string) predicate.IntegrationWebhook

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

func DeletedByLTE

func DeletedByLTE(v string) predicate.IntegrationWebhook

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

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.IntegrationWebhook

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

func DeletedByNotIn

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

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

func DeletedByNotNil

func DeletedByNotNil() predicate.IntegrationWebhook

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

func EndpointURL

func EndpointURL(v string) predicate.IntegrationWebhook

EndpointURL applies equality check predicate on the "endpoint_url" field. It's identical to EndpointURLEQ.

func EndpointURLContains

func EndpointURLContains(v string) predicate.IntegrationWebhook

EndpointURLContains applies the Contains predicate on the "endpoint_url" field.

func EndpointURLContainsFold

func EndpointURLContainsFold(v string) predicate.IntegrationWebhook

EndpointURLContainsFold applies the ContainsFold predicate on the "endpoint_url" field.

func EndpointURLEQ

func EndpointURLEQ(v string) predicate.IntegrationWebhook

EndpointURLEQ applies the EQ predicate on the "endpoint_url" field.

func EndpointURLEqualFold

func EndpointURLEqualFold(v string) predicate.IntegrationWebhook

EndpointURLEqualFold applies the EqualFold predicate on the "endpoint_url" field.

func EndpointURLGT

func EndpointURLGT(v string) predicate.IntegrationWebhook

EndpointURLGT applies the GT predicate on the "endpoint_url" field.

func EndpointURLGTE

func EndpointURLGTE(v string) predicate.IntegrationWebhook

EndpointURLGTE applies the GTE predicate on the "endpoint_url" field.

func EndpointURLHasPrefix

func EndpointURLHasPrefix(v string) predicate.IntegrationWebhook

EndpointURLHasPrefix applies the HasPrefix predicate on the "endpoint_url" field.

func EndpointURLHasSuffix

func EndpointURLHasSuffix(v string) predicate.IntegrationWebhook

EndpointURLHasSuffix applies the HasSuffix predicate on the "endpoint_url" field.

func EndpointURLIn

func EndpointURLIn(vs ...string) predicate.IntegrationWebhook

EndpointURLIn applies the In predicate on the "endpoint_url" field.

func EndpointURLIsNil

func EndpointURLIsNil() predicate.IntegrationWebhook

EndpointURLIsNil applies the IsNil predicate on the "endpoint_url" field.

func EndpointURLLT

func EndpointURLLT(v string) predicate.IntegrationWebhook

EndpointURLLT applies the LT predicate on the "endpoint_url" field.

func EndpointURLLTE

func EndpointURLLTE(v string) predicate.IntegrationWebhook

EndpointURLLTE applies the LTE predicate on the "endpoint_url" field.

func EndpointURLNEQ

func EndpointURLNEQ(v string) predicate.IntegrationWebhook

EndpointURLNEQ applies the NEQ predicate on the "endpoint_url" field.

func EndpointURLNotIn

func EndpointURLNotIn(vs ...string) predicate.IntegrationWebhook

EndpointURLNotIn applies the NotIn predicate on the "endpoint_url" field.

func EndpointURLNotNil

func EndpointURLNotNil() predicate.IntegrationWebhook

EndpointURLNotNil applies the NotNil predicate on the "endpoint_url" field.

func HasIntegration

func HasIntegration() predicate.IntegrationWebhook

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

func HasIntegrationWith

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

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

func HasOwner

func HasOwner() predicate.IntegrationWebhook

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

func HasOwnerWith

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

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.IntegrationWebhook

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

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

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

IDNotIn applies the NotIn predicate on the ID field.

func IntegrationID

func IntegrationID(v string) predicate.IntegrationWebhook

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

func IntegrationIDContains

func IntegrationIDContains(v string) predicate.IntegrationWebhook

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

func IntegrationIDContainsFold

func IntegrationIDContainsFold(v string) predicate.IntegrationWebhook

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

func IntegrationIDEQ

func IntegrationIDEQ(v string) predicate.IntegrationWebhook

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

func IntegrationIDEqualFold

func IntegrationIDEqualFold(v string) predicate.IntegrationWebhook

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

func IntegrationIDGT

func IntegrationIDGT(v string) predicate.IntegrationWebhook

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

func IntegrationIDGTE

func IntegrationIDGTE(v string) predicate.IntegrationWebhook

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

func IntegrationIDHasPrefix

func IntegrationIDHasPrefix(v string) predicate.IntegrationWebhook

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

func IntegrationIDHasSuffix

func IntegrationIDHasSuffix(v string) predicate.IntegrationWebhook

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

func IntegrationIDIn

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

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

func IntegrationIDIsNil

func IntegrationIDIsNil() predicate.IntegrationWebhook

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

func IntegrationIDLT

func IntegrationIDLT(v string) predicate.IntegrationWebhook

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

func IntegrationIDLTE

func IntegrationIDLTE(v string) predicate.IntegrationWebhook

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

func IntegrationIDNEQ

func IntegrationIDNEQ(v string) predicate.IntegrationWebhook

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

func IntegrationIDNotIn

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

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

func IntegrationIDNotNil

func IntegrationIDNotNil() predicate.IntegrationWebhook

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

func LastDeliveryAt

func LastDeliveryAt(v time.Time) predicate.IntegrationWebhook

LastDeliveryAt applies equality check predicate on the "last_delivery_at" field. It's identical to LastDeliveryAtEQ.

func LastDeliveryAtEQ

func LastDeliveryAtEQ(v time.Time) predicate.IntegrationWebhook

LastDeliveryAtEQ applies the EQ predicate on the "last_delivery_at" field.

func LastDeliveryAtGT

func LastDeliveryAtGT(v time.Time) predicate.IntegrationWebhook

LastDeliveryAtGT applies the GT predicate on the "last_delivery_at" field.

func LastDeliveryAtGTE

func LastDeliveryAtGTE(v time.Time) predicate.IntegrationWebhook

LastDeliveryAtGTE applies the GTE predicate on the "last_delivery_at" field.

func LastDeliveryAtIn

func LastDeliveryAtIn(vs ...time.Time) predicate.IntegrationWebhook

LastDeliveryAtIn applies the In predicate on the "last_delivery_at" field.

func LastDeliveryAtIsNil

func LastDeliveryAtIsNil() predicate.IntegrationWebhook

LastDeliveryAtIsNil applies the IsNil predicate on the "last_delivery_at" field.

func LastDeliveryAtLT

func LastDeliveryAtLT(v time.Time) predicate.IntegrationWebhook

LastDeliveryAtLT applies the LT predicate on the "last_delivery_at" field.

func LastDeliveryAtLTE

func LastDeliveryAtLTE(v time.Time) predicate.IntegrationWebhook

LastDeliveryAtLTE applies the LTE predicate on the "last_delivery_at" field.

func LastDeliveryAtNEQ

func LastDeliveryAtNEQ(v time.Time) predicate.IntegrationWebhook

LastDeliveryAtNEQ applies the NEQ predicate on the "last_delivery_at" field.

func LastDeliveryAtNotIn

func LastDeliveryAtNotIn(vs ...time.Time) predicate.IntegrationWebhook

LastDeliveryAtNotIn applies the NotIn predicate on the "last_delivery_at" field.

func LastDeliveryAtNotNil

func LastDeliveryAtNotNil() predicate.IntegrationWebhook

LastDeliveryAtNotNil applies the NotNil predicate on the "last_delivery_at" field.

func LastDeliveryError

func LastDeliveryError(v string) predicate.IntegrationWebhook

LastDeliveryError applies equality check predicate on the "last_delivery_error" field. It's identical to LastDeliveryErrorEQ.

func LastDeliveryErrorContains

func LastDeliveryErrorContains(v string) predicate.IntegrationWebhook

LastDeliveryErrorContains applies the Contains predicate on the "last_delivery_error" field.

func LastDeliveryErrorContainsFold

func LastDeliveryErrorContainsFold(v string) predicate.IntegrationWebhook

LastDeliveryErrorContainsFold applies the ContainsFold predicate on the "last_delivery_error" field.

func LastDeliveryErrorEQ

func LastDeliveryErrorEQ(v string) predicate.IntegrationWebhook

LastDeliveryErrorEQ applies the EQ predicate on the "last_delivery_error" field.

func LastDeliveryErrorEqualFold

func LastDeliveryErrorEqualFold(v string) predicate.IntegrationWebhook

LastDeliveryErrorEqualFold applies the EqualFold predicate on the "last_delivery_error" field.

func LastDeliveryErrorGT

func LastDeliveryErrorGT(v string) predicate.IntegrationWebhook

LastDeliveryErrorGT applies the GT predicate on the "last_delivery_error" field.

func LastDeliveryErrorGTE

func LastDeliveryErrorGTE(v string) predicate.IntegrationWebhook

LastDeliveryErrorGTE applies the GTE predicate on the "last_delivery_error" field.

func LastDeliveryErrorHasPrefix

func LastDeliveryErrorHasPrefix(v string) predicate.IntegrationWebhook

LastDeliveryErrorHasPrefix applies the HasPrefix predicate on the "last_delivery_error" field.

func LastDeliveryErrorHasSuffix

func LastDeliveryErrorHasSuffix(v string) predicate.IntegrationWebhook

LastDeliveryErrorHasSuffix applies the HasSuffix predicate on the "last_delivery_error" field.

func LastDeliveryErrorIn

func LastDeliveryErrorIn(vs ...string) predicate.IntegrationWebhook

LastDeliveryErrorIn applies the In predicate on the "last_delivery_error" field.

func LastDeliveryErrorIsNil

func LastDeliveryErrorIsNil() predicate.IntegrationWebhook

LastDeliveryErrorIsNil applies the IsNil predicate on the "last_delivery_error" field.

func LastDeliveryErrorLT

func LastDeliveryErrorLT(v string) predicate.IntegrationWebhook

LastDeliveryErrorLT applies the LT predicate on the "last_delivery_error" field.

func LastDeliveryErrorLTE

func LastDeliveryErrorLTE(v string) predicate.IntegrationWebhook

LastDeliveryErrorLTE applies the LTE predicate on the "last_delivery_error" field.

func LastDeliveryErrorNEQ

func LastDeliveryErrorNEQ(v string) predicate.IntegrationWebhook

LastDeliveryErrorNEQ applies the NEQ predicate on the "last_delivery_error" field.

func LastDeliveryErrorNotIn

func LastDeliveryErrorNotIn(vs ...string) predicate.IntegrationWebhook

LastDeliveryErrorNotIn applies the NotIn predicate on the "last_delivery_error" field.

func LastDeliveryErrorNotNil

func LastDeliveryErrorNotNil() predicate.IntegrationWebhook

LastDeliveryErrorNotNil applies the NotNil predicate on the "last_delivery_error" field.

func LastDeliveryID

func LastDeliveryID(v string) predicate.IntegrationWebhook

LastDeliveryID applies equality check predicate on the "last_delivery_id" field. It's identical to LastDeliveryIDEQ.

func LastDeliveryIDContains

func LastDeliveryIDContains(v string) predicate.IntegrationWebhook

LastDeliveryIDContains applies the Contains predicate on the "last_delivery_id" field.

func LastDeliveryIDContainsFold

func LastDeliveryIDContainsFold(v string) predicate.IntegrationWebhook

LastDeliveryIDContainsFold applies the ContainsFold predicate on the "last_delivery_id" field.

func LastDeliveryIDEQ

func LastDeliveryIDEQ(v string) predicate.IntegrationWebhook

LastDeliveryIDEQ applies the EQ predicate on the "last_delivery_id" field.

func LastDeliveryIDEqualFold

func LastDeliveryIDEqualFold(v string) predicate.IntegrationWebhook

LastDeliveryIDEqualFold applies the EqualFold predicate on the "last_delivery_id" field.

func LastDeliveryIDGT

func LastDeliveryIDGT(v string) predicate.IntegrationWebhook

LastDeliveryIDGT applies the GT predicate on the "last_delivery_id" field.

func LastDeliveryIDGTE

func LastDeliveryIDGTE(v string) predicate.IntegrationWebhook

LastDeliveryIDGTE applies the GTE predicate on the "last_delivery_id" field.

func LastDeliveryIDHasPrefix

func LastDeliveryIDHasPrefix(v string) predicate.IntegrationWebhook

LastDeliveryIDHasPrefix applies the HasPrefix predicate on the "last_delivery_id" field.

func LastDeliveryIDHasSuffix

func LastDeliveryIDHasSuffix(v string) predicate.IntegrationWebhook

LastDeliveryIDHasSuffix applies the HasSuffix predicate on the "last_delivery_id" field.

func LastDeliveryIDIn

func LastDeliveryIDIn(vs ...string) predicate.IntegrationWebhook

LastDeliveryIDIn applies the In predicate on the "last_delivery_id" field.

func LastDeliveryIDIsNil

func LastDeliveryIDIsNil() predicate.IntegrationWebhook

LastDeliveryIDIsNil applies the IsNil predicate on the "last_delivery_id" field.

func LastDeliveryIDLT

func LastDeliveryIDLT(v string) predicate.IntegrationWebhook

LastDeliveryIDLT applies the LT predicate on the "last_delivery_id" field.

func LastDeliveryIDLTE

func LastDeliveryIDLTE(v string) predicate.IntegrationWebhook

LastDeliveryIDLTE applies the LTE predicate on the "last_delivery_id" field.

func LastDeliveryIDNEQ

func LastDeliveryIDNEQ(v string) predicate.IntegrationWebhook

LastDeliveryIDNEQ applies the NEQ predicate on the "last_delivery_id" field.

func LastDeliveryIDNotIn

func LastDeliveryIDNotIn(vs ...string) predicate.IntegrationWebhook

LastDeliveryIDNotIn applies the NotIn predicate on the "last_delivery_id" field.

func LastDeliveryIDNotNil

func LastDeliveryIDNotNil() predicate.IntegrationWebhook

LastDeliveryIDNotNil applies the NotNil predicate on the "last_delivery_id" field.

func LastDeliveryStatus

func LastDeliveryStatus(v string) predicate.IntegrationWebhook

LastDeliveryStatus applies equality check predicate on the "last_delivery_status" field. It's identical to LastDeliveryStatusEQ.

func LastDeliveryStatusContains

func LastDeliveryStatusContains(v string) predicate.IntegrationWebhook

LastDeliveryStatusContains applies the Contains predicate on the "last_delivery_status" field.

func LastDeliveryStatusContainsFold

func LastDeliveryStatusContainsFold(v string) predicate.IntegrationWebhook

LastDeliveryStatusContainsFold applies the ContainsFold predicate on the "last_delivery_status" field.

func LastDeliveryStatusEQ

func LastDeliveryStatusEQ(v string) predicate.IntegrationWebhook

LastDeliveryStatusEQ applies the EQ predicate on the "last_delivery_status" field.

func LastDeliveryStatusEqualFold

func LastDeliveryStatusEqualFold(v string) predicate.IntegrationWebhook

LastDeliveryStatusEqualFold applies the EqualFold predicate on the "last_delivery_status" field.

func LastDeliveryStatusGT

func LastDeliveryStatusGT(v string) predicate.IntegrationWebhook

LastDeliveryStatusGT applies the GT predicate on the "last_delivery_status" field.

func LastDeliveryStatusGTE

func LastDeliveryStatusGTE(v string) predicate.IntegrationWebhook

LastDeliveryStatusGTE applies the GTE predicate on the "last_delivery_status" field.

func LastDeliveryStatusHasPrefix

func LastDeliveryStatusHasPrefix(v string) predicate.IntegrationWebhook

LastDeliveryStatusHasPrefix applies the HasPrefix predicate on the "last_delivery_status" field.

func LastDeliveryStatusHasSuffix

func LastDeliveryStatusHasSuffix(v string) predicate.IntegrationWebhook

LastDeliveryStatusHasSuffix applies the HasSuffix predicate on the "last_delivery_status" field.

func LastDeliveryStatusIn

func LastDeliveryStatusIn(vs ...string) predicate.IntegrationWebhook

LastDeliveryStatusIn applies the In predicate on the "last_delivery_status" field.

func LastDeliveryStatusIsNil

func LastDeliveryStatusIsNil() predicate.IntegrationWebhook

LastDeliveryStatusIsNil applies the IsNil predicate on the "last_delivery_status" field.

func LastDeliveryStatusLT

func LastDeliveryStatusLT(v string) predicate.IntegrationWebhook

LastDeliveryStatusLT applies the LT predicate on the "last_delivery_status" field.

func LastDeliveryStatusLTE

func LastDeliveryStatusLTE(v string) predicate.IntegrationWebhook

LastDeliveryStatusLTE applies the LTE predicate on the "last_delivery_status" field.

func LastDeliveryStatusNEQ

func LastDeliveryStatusNEQ(v string) predicate.IntegrationWebhook

LastDeliveryStatusNEQ applies the NEQ predicate on the "last_delivery_status" field.

func LastDeliveryStatusNotIn

func LastDeliveryStatusNotIn(vs ...string) predicate.IntegrationWebhook

LastDeliveryStatusNotIn applies the NotIn predicate on the "last_delivery_status" field.

func LastDeliveryStatusNotNil

func LastDeliveryStatusNotNil() predicate.IntegrationWebhook

LastDeliveryStatusNotNil applies the NotNil predicate on the "last_delivery_status" field.

func MetadataIsNil

func MetadataIsNil() predicate.IntegrationWebhook

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

func MetadataNotNil

func MetadataNotNil() predicate.IntegrationWebhook

MetadataNotNil applies the NotNil predicate on the "metadata" field.

func Name

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

func NameContains

func NameContains(v string) predicate.IntegrationWebhook

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

func NameContainsFold

func NameContainsFold(v string) predicate.IntegrationWebhook

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

func NameEQ

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

func NameEqualFold

func NameEqualFold(v string) predicate.IntegrationWebhook

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

func NameGT

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

func NameGTE

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.IntegrationWebhook

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.IntegrationWebhook

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

func NameIn

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

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

func NameIsNil

func NameIsNil() predicate.IntegrationWebhook

NameIsNil applies the IsNil predicate on the "name" field.

func NameLT

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

func NameLTE

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

func NameNEQ

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

func NameNotIn

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

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

func NameNotNil

func NameNotNil() predicate.IntegrationWebhook

NameNotNil applies the NotNil predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func OwnerID

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

func OwnerIDContains

func OwnerIDContains(v string) predicate.IntegrationWebhook

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

func OwnerIDContainsFold

func OwnerIDContainsFold(v string) predicate.IntegrationWebhook

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

func OwnerIDEQ

func OwnerIDEQ(v string) predicate.IntegrationWebhook

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

func OwnerIDEqualFold

func OwnerIDEqualFold(v string) predicate.IntegrationWebhook

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

func OwnerIDGT

func OwnerIDGT(v string) predicate.IntegrationWebhook

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

func OwnerIDGTE

func OwnerIDGTE(v string) predicate.IntegrationWebhook

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

func OwnerIDHasPrefix

func OwnerIDHasPrefix(v string) predicate.IntegrationWebhook

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

func OwnerIDHasSuffix

func OwnerIDHasSuffix(v string) predicate.IntegrationWebhook

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

func OwnerIDIn

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

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

func OwnerIDIsNil

func OwnerIDIsNil() predicate.IntegrationWebhook

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

func OwnerIDLT

func OwnerIDLT(v string) predicate.IntegrationWebhook

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

func OwnerIDLTE

func OwnerIDLTE(v string) predicate.IntegrationWebhook

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

func OwnerIDNEQ

func OwnerIDNEQ(v string) predicate.IntegrationWebhook

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

func OwnerIDNotIn

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

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

func OwnerIDNotNil

func OwnerIDNotNil() predicate.IntegrationWebhook

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

func SecretToken

func SecretToken(v string) predicate.IntegrationWebhook

SecretToken applies equality check predicate on the "secret_token" field. It's identical to SecretTokenEQ.

func SecretTokenContains

func SecretTokenContains(v string) predicate.IntegrationWebhook

SecretTokenContains applies the Contains predicate on the "secret_token" field.

func SecretTokenContainsFold

func SecretTokenContainsFold(v string) predicate.IntegrationWebhook

SecretTokenContainsFold applies the ContainsFold predicate on the "secret_token" field.

func SecretTokenEQ

func SecretTokenEQ(v string) predicate.IntegrationWebhook

SecretTokenEQ applies the EQ predicate on the "secret_token" field.

func SecretTokenEqualFold

func SecretTokenEqualFold(v string) predicate.IntegrationWebhook

SecretTokenEqualFold applies the EqualFold predicate on the "secret_token" field.

func SecretTokenGT

func SecretTokenGT(v string) predicate.IntegrationWebhook

SecretTokenGT applies the GT predicate on the "secret_token" field.

func SecretTokenGTE

func SecretTokenGTE(v string) predicate.IntegrationWebhook

SecretTokenGTE applies the GTE predicate on the "secret_token" field.

func SecretTokenHasPrefix

func SecretTokenHasPrefix(v string) predicate.IntegrationWebhook

SecretTokenHasPrefix applies the HasPrefix predicate on the "secret_token" field.

func SecretTokenHasSuffix

func SecretTokenHasSuffix(v string) predicate.IntegrationWebhook

SecretTokenHasSuffix applies the HasSuffix predicate on the "secret_token" field.

func SecretTokenIn

func SecretTokenIn(vs ...string) predicate.IntegrationWebhook

SecretTokenIn applies the In predicate on the "secret_token" field.

func SecretTokenIsNil

func SecretTokenIsNil() predicate.IntegrationWebhook

SecretTokenIsNil applies the IsNil predicate on the "secret_token" field.

func SecretTokenLT

func SecretTokenLT(v string) predicate.IntegrationWebhook

SecretTokenLT applies the LT predicate on the "secret_token" field.

func SecretTokenLTE

func SecretTokenLTE(v string) predicate.IntegrationWebhook

SecretTokenLTE applies the LTE predicate on the "secret_token" field.

func SecretTokenNEQ

func SecretTokenNEQ(v string) predicate.IntegrationWebhook

SecretTokenNEQ applies the NEQ predicate on the "secret_token" field.

func SecretTokenNotIn

func SecretTokenNotIn(vs ...string) predicate.IntegrationWebhook

SecretTokenNotIn applies the NotIn predicate on the "secret_token" field.

func SecretTokenNotNil

func SecretTokenNotNil() predicate.IntegrationWebhook

SecretTokenNotNil applies the NotNil predicate on the "secret_token" 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.IntegrationWebhookStatus) error

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

func UpdatedAt

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.IntegrationWebhook

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.IntegrationWebhook

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.IntegrationWebhook

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.IntegrationWebhook

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.IntegrationWebhook

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.IntegrationWebhook

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.IntegrationWebhook

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.IntegrationWebhook

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

func UpdatedBy

func UpdatedBy(v string) predicate.IntegrationWebhook

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.IntegrationWebhook

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.IntegrationWebhook

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.IntegrationWebhook

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.IntegrationWebhook

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.IntegrationWebhook

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.IntegrationWebhook

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.IntegrationWebhook

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.IntegrationWebhook

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.IntegrationWebhook

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.IntegrationWebhook

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.IntegrationWebhook

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.IntegrationWebhook

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.IntegrationWebhook

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 IntegrationWebhook 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 ByEndpointURL

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

ByEndpointURL orders the results by the endpoint_url 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 ByLastDeliveryAt

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

ByLastDeliveryAt orders the results by the last_delivery_at field.

func ByLastDeliveryError

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

ByLastDeliveryError orders the results by the last_delivery_error field.

func ByLastDeliveryID

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

ByLastDeliveryID orders the results by the last_delivery_id field.

func ByLastDeliveryStatus

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

ByLastDeliveryStatus orders the results by the last_delivery_status field.

func ByName

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

ByName orders the results by the 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 BySecretToken

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

BySecretToken orders the results by the secret_token field.

func ByStatus

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

ByStatus orders the results by the status 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