remediation

package
v1.13.4 Latest Latest
Warning

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

Go to latest
Published: Mar 24, 2026 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the remediation type in the database.
	Label = "remediation"
	// 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"
	// FieldDisplayID holds the string denoting the display_id field in the database.
	FieldDisplayID = "display_id"
	// FieldTags holds the string denoting the tags field in the database.
	FieldTags = "tags"
	// FieldOwnerID holds the string denoting the owner_id field in the database.
	FieldOwnerID = "owner_id"
	// FieldSystemOwned holds the string denoting the system_owned field in the database.
	FieldSystemOwned = "system_owned"
	// FieldInternalNotes holds the string denoting the internal_notes field in the database.
	FieldInternalNotes = "internal_notes"
	// FieldSystemInternalID holds the string denoting the system_internal_id field in the database.
	FieldSystemInternalID = "system_internal_id"
	// FieldEnvironmentName holds the string denoting the environment_name field in the database.
	FieldEnvironmentName = "environment_name"
	// FieldEnvironmentID holds the string denoting the environment_id field in the database.
	FieldEnvironmentID = "environment_id"
	// FieldScopeName holds the string denoting the scope_name field in the database.
	FieldScopeName = "scope_name"
	// FieldScopeID holds the string denoting the scope_id field in the database.
	FieldScopeID = "scope_id"
	// FieldExternalID holds the string denoting the external_id field in the database.
	FieldExternalID = "external_id"
	// FieldExternalOwnerID holds the string denoting the external_owner_id field in the database.
	FieldExternalOwnerID = "external_owner_id"
	// FieldTitle holds the string denoting the title field in the database.
	FieldTitle = "title"
	// FieldState holds the string denoting the state field in the database.
	FieldState = "state"
	// FieldIntent holds the string denoting the intent field in the database.
	FieldIntent = "intent"
	// FieldSummary holds the string denoting the summary field in the database.
	FieldSummary = "summary"
	// FieldExplanation holds the string denoting the explanation field in the database.
	FieldExplanation = "explanation"
	// FieldInstructions holds the string denoting the instructions field in the database.
	FieldInstructions = "instructions"
	// FieldOwnerReference holds the string denoting the owner_reference field in the database.
	FieldOwnerReference = "owner_reference"
	// FieldRepositoryURI holds the string denoting the repository_uri field in the database.
	FieldRepositoryURI = "repository_uri"
	// FieldPullRequestURI holds the string denoting the pull_request_uri field in the database.
	FieldPullRequestURI = "pull_request_uri"
	// FieldTicketReference holds the string denoting the ticket_reference field in the database.
	FieldTicketReference = "ticket_reference"
	// FieldDueAt holds the string denoting the due_at field in the database.
	FieldDueAt = "due_at"
	// FieldCompletedAt holds the string denoting the completed_at field in the database.
	FieldCompletedAt = "completed_at"
	// FieldPrGeneratedAt holds the string denoting the pr_generated_at field in the database.
	FieldPrGeneratedAt = "pr_generated_at"
	// FieldError holds the string denoting the error field in the database.
	FieldError = "error"
	// FieldSource holds the string denoting the source field in the database.
	FieldSource = "source"
	// FieldExternalURI holds the string denoting the external_uri field in the database.
	FieldExternalURI = "external_uri"
	// 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"
	// EdgeBlockedGroups holds the string denoting the blocked_groups edge name in mutations.
	EdgeBlockedGroups = "blocked_groups"
	// EdgeEditors holds the string denoting the editors edge name in mutations.
	EdgeEditors = "editors"
	// EdgeViewers holds the string denoting the viewers edge name in mutations.
	EdgeViewers = "viewers"
	// EdgeEnvironment holds the string denoting the environment edge name in mutations.
	EdgeEnvironment = "environment"
	// EdgeScope holds the string denoting the scope edge name in mutations.
	EdgeScope = "scope"
	// EdgeIntegrations holds the string denoting the integrations edge name in mutations.
	EdgeIntegrations = "integrations"
	// EdgeScans holds the string denoting the scans edge name in mutations.
	EdgeScans = "scans"
	// EdgeFindings holds the string denoting the findings edge name in mutations.
	EdgeFindings = "findings"
	// EdgeVulnerabilities holds the string denoting the vulnerabilities edge name in mutations.
	EdgeVulnerabilities = "vulnerabilities"
	// EdgeActionPlans holds the string denoting the action_plans edge name in mutations.
	EdgeActionPlans = "action_plans"
	// EdgeTasks holds the string denoting the tasks edge name in mutations.
	EdgeTasks = "tasks"
	// EdgeControls holds the string denoting the controls edge name in mutations.
	EdgeControls = "controls"
	// EdgeSubcontrols holds the string denoting the subcontrols edge name in mutations.
	EdgeSubcontrols = "subcontrols"
	// EdgeRisks holds the string denoting the risks edge name in mutations.
	EdgeRisks = "risks"
	// EdgePrograms holds the string denoting the programs edge name in mutations.
	EdgePrograms = "programs"
	// EdgeAssets holds the string denoting the assets edge name in mutations.
	EdgeAssets = "assets"
	// EdgeEntities holds the string denoting the entities edge name in mutations.
	EdgeEntities = "entities"
	// EdgeReviews holds the string denoting the reviews edge name in mutations.
	EdgeReviews = "reviews"
	// EdgeComments holds the string denoting the comments edge name in mutations.
	EdgeComments = "comments"
	// EdgeFiles holds the string denoting the files edge name in mutations.
	EdgeFiles = "files"
	// Table holds the table name of the remediation in the database.
	Table = "remediations"
	// OwnerTable is the table that holds the owner relation/edge.
	OwnerTable = "remediations"
	// 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"
	// BlockedGroupsTable is the table that holds the blocked_groups relation/edge.
	BlockedGroupsTable = "groups"
	// BlockedGroupsInverseTable is the table name for the Group entity.
	// It exists in this package in order to avoid circular dependency with the "group" package.
	BlockedGroupsInverseTable = "groups"
	// BlockedGroupsColumn is the table column denoting the blocked_groups relation/edge.
	BlockedGroupsColumn = "remediation_blocked_groups"
	// EditorsTable is the table that holds the editors relation/edge.
	EditorsTable = "groups"
	// EditorsInverseTable is the table name for the Group entity.
	// It exists in this package in order to avoid circular dependency with the "group" package.
	EditorsInverseTable = "groups"
	// EditorsColumn is the table column denoting the editors relation/edge.
	EditorsColumn = "remediation_editors"
	// ViewersTable is the table that holds the viewers relation/edge.
	ViewersTable = "groups"
	// ViewersInverseTable is the table name for the Group entity.
	// It exists in this package in order to avoid circular dependency with the "group" package.
	ViewersInverseTable = "groups"
	// ViewersColumn is the table column denoting the viewers relation/edge.
	ViewersColumn = "remediation_viewers"
	// EnvironmentTable is the table that holds the environment relation/edge.
	EnvironmentTable = "remediations"
	// EnvironmentInverseTable is the table name for the CustomTypeEnum entity.
	// It exists in this package in order to avoid circular dependency with the "customtypeenum" package.
	EnvironmentInverseTable = "custom_type_enums"
	// EnvironmentColumn is the table column denoting the environment relation/edge.
	EnvironmentColumn = "environment_id"
	// ScopeTable is the table that holds the scope relation/edge.
	ScopeTable = "remediations"
	// ScopeInverseTable is the table name for the CustomTypeEnum entity.
	// It exists in this package in order to avoid circular dependency with the "customtypeenum" package.
	ScopeInverseTable = "custom_type_enums"
	// ScopeColumn is the table column denoting the scope relation/edge.
	ScopeColumn = "scope_id"
	// IntegrationsTable is the table that holds the integrations relation/edge. The primary key declared below.
	IntegrationsTable = "integration_remediations"
	// IntegrationsInverseTable is the table name for the Integration entity.
	// It exists in this package in order to avoid circular dependency with the "integration" package.
	IntegrationsInverseTable = "integrations"
	// ScansTable is the table that holds the scans relation/edge. The primary key declared below.
	ScansTable = "scan_remediations"
	// ScansInverseTable is the table name for the Scan entity.
	// It exists in this package in order to avoid circular dependency with the "scan" package.
	ScansInverseTable = "scans"
	// FindingsTable is the table that holds the findings relation/edge. The primary key declared below.
	FindingsTable = "remediation_findings"
	// FindingsInverseTable is the table name for the Finding entity.
	// It exists in this package in order to avoid circular dependency with the "finding" package.
	FindingsInverseTable = "findings"
	// VulnerabilitiesTable is the table that holds the vulnerabilities relation/edge. The primary key declared below.
	VulnerabilitiesTable = "remediation_vulnerabilities"
	// VulnerabilitiesInverseTable is the table name for the Vulnerability entity.
	// It exists in this package in order to avoid circular dependency with the "vulnerability" package.
	VulnerabilitiesInverseTable = "vulnerabilities"
	// ActionPlansTable is the table that holds the action_plans relation/edge. The primary key declared below.
	ActionPlansTable = "remediation_action_plans"
	// ActionPlansInverseTable is the table name for the ActionPlan entity.
	// It exists in this package in order to avoid circular dependency with the "actionplan" package.
	ActionPlansInverseTable = "action_plans"
	// TasksTable is the table that holds the tasks relation/edge.
	TasksTable = "tasks"
	// TasksInverseTable is the table name for the Task entity.
	// It exists in this package in order to avoid circular dependency with the "task" package.
	TasksInverseTable = "tasks"
	// TasksColumn is the table column denoting the tasks relation/edge.
	TasksColumn = "remediation_tasks"
	// ControlsTable is the table that holds the controls relation/edge. The primary key declared below.
	ControlsTable = "remediation_controls"
	// ControlsInverseTable is the table name for the Control entity.
	// It exists in this package in order to avoid circular dependency with the "control" package.
	ControlsInverseTable = "controls"
	// SubcontrolsTable is the table that holds the subcontrols relation/edge. The primary key declared below.
	SubcontrolsTable = "remediation_subcontrols"
	// SubcontrolsInverseTable is the table name for the Subcontrol entity.
	// It exists in this package in order to avoid circular dependency with the "subcontrol" package.
	SubcontrolsInverseTable = "subcontrols"
	// RisksTable is the table that holds the risks relation/edge.
	RisksTable = "risks"
	// RisksInverseTable is the table name for the Risk entity.
	// It exists in this package in order to avoid circular dependency with the "risk" package.
	RisksInverseTable = "risks"
	// RisksColumn is the table column denoting the risks relation/edge.
	RisksColumn = "remediation_risks"
	// ProgramsTable is the table that holds the programs relation/edge.
	ProgramsTable = "programs"
	// ProgramsInverseTable is the table name for the Program entity.
	// It exists in this package in order to avoid circular dependency with the "program" package.
	ProgramsInverseTable = "programs"
	// ProgramsColumn is the table column denoting the programs relation/edge.
	ProgramsColumn = "remediation_programs"
	// AssetsTable is the table that holds the assets relation/edge.
	AssetsTable = "assets"
	// AssetsInverseTable is the table name for the Asset entity.
	// It exists in this package in order to avoid circular dependency with the "asset" package.
	AssetsInverseTable = "assets"
	// AssetsColumn is the table column denoting the assets relation/edge.
	AssetsColumn = "remediation_assets"
	// EntitiesTable is the table that holds the entities relation/edge.
	EntitiesTable = "entities"
	// EntitiesInverseTable is the table name for the Entity entity.
	// It exists in this package in order to avoid circular dependency with the "entity" package.
	EntitiesInverseTable = "entities"
	// EntitiesColumn is the table column denoting the entities relation/edge.
	EntitiesColumn = "remediation_entities"
	// ReviewsTable is the table that holds the reviews relation/edge. The primary key declared below.
	ReviewsTable = "review_remediations"
	// ReviewsInverseTable is the table name for the Review entity.
	// It exists in this package in order to avoid circular dependency with the "review" package.
	ReviewsInverseTable = "reviews"
	// CommentsTable is the table that holds the comments relation/edge.
	CommentsTable = "notes"
	// CommentsInverseTable is the table name for the Note entity.
	// It exists in this package in order to avoid circular dependency with the "note" package.
	CommentsInverseTable = "notes"
	// CommentsColumn is the table column denoting the comments relation/edge.
	CommentsColumn = "remediation_comments"
	// FilesTable is the table that holds the files relation/edge.
	FilesTable = "files"
	// FilesInverseTable is the table name for the File entity.
	// It exists in this package in order to avoid circular dependency with the "file" package.
	FilesInverseTable = "files"
	// FilesColumn is the table column denoting the files relation/edge.
	FilesColumn = "remediation_files"
)

Variables

View Source
var (
	// IntegrationsPrimaryKey and IntegrationsColumn2 are the table columns denoting the
	// primary key for the integrations relation (M2M).
	IntegrationsPrimaryKey = []string{"integration_id", "remediation_id"}
	// ScansPrimaryKey and ScansColumn2 are the table columns denoting the
	// primary key for the scans relation (M2M).
	ScansPrimaryKey = []string{"scan_id", "remediation_id"}
	// FindingsPrimaryKey and FindingsColumn2 are the table columns denoting the
	// primary key for the findings relation (M2M).
	FindingsPrimaryKey = []string{"remediation_id", "finding_id"}
	// VulnerabilitiesPrimaryKey and VulnerabilitiesColumn2 are the table columns denoting the
	// primary key for the vulnerabilities relation (M2M).
	VulnerabilitiesPrimaryKey = []string{"remediation_id", "vulnerability_id"}
	// ActionPlansPrimaryKey and ActionPlansColumn2 are the table columns denoting the
	// primary key for the action_plans relation (M2M).
	ActionPlansPrimaryKey = []string{"remediation_id", "action_plan_id"}
	// ControlsPrimaryKey and ControlsColumn2 are the table columns denoting the
	// primary key for the controls relation (M2M).
	ControlsPrimaryKey = []string{"remediation_id", "control_id"}
	// SubcontrolsPrimaryKey and SubcontrolsColumn2 are the table columns denoting the
	// primary key for the subcontrols relation (M2M).
	SubcontrolsPrimaryKey = []string{"remediation_id", "subcontrol_id"}
	// ReviewsPrimaryKey and ReviewsColumn2 are the table columns denoting the
	// primary key for the reviews relation (M2M).
	ReviewsPrimaryKey = []string{"review_id", "remediation_id"}
)
View Source
var (
	Hooks        [13]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
	// DisplayIDValidator is a validator for the "display_id" field. It is called by the builders before save.
	DisplayIDValidator func(string) error
	// DefaultTags holds the default value on creation for the "tags" field.
	DefaultTags []string
	// OwnerIDValidator is a validator for the "owner_id" field. It is called by the builders before save.
	OwnerIDValidator func(string) error
	// DefaultSystemOwned holds the default value on creation for the "system_owned" field.
	DefaultSystemOwned bool
	// 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 remediation fields.

Functions

func And

func And(predicates ...predicate.Remediation) predicate.Remediation

And groups predicates with the AND operator between them.

func CompletedAt

func CompletedAt(v models.DateTime) predicate.Remediation

CompletedAt applies equality check predicate on the "completed_at" field. It's identical to CompletedAtEQ.

func CompletedAtEQ

func CompletedAtEQ(v models.DateTime) predicate.Remediation

CompletedAtEQ applies the EQ predicate on the "completed_at" field.

func CompletedAtGT

func CompletedAtGT(v models.DateTime) predicate.Remediation

CompletedAtGT applies the GT predicate on the "completed_at" field.

func CompletedAtGTE

func CompletedAtGTE(v models.DateTime) predicate.Remediation

CompletedAtGTE applies the GTE predicate on the "completed_at" field.

func CompletedAtIn

func CompletedAtIn(vs ...models.DateTime) predicate.Remediation

CompletedAtIn applies the In predicate on the "completed_at" field.

func CompletedAtIsNil

func CompletedAtIsNil() predicate.Remediation

CompletedAtIsNil applies the IsNil predicate on the "completed_at" field.

func CompletedAtLT

func CompletedAtLT(v models.DateTime) predicate.Remediation

CompletedAtLT applies the LT predicate on the "completed_at" field.

func CompletedAtLTE

func CompletedAtLTE(v models.DateTime) predicate.Remediation

CompletedAtLTE applies the LTE predicate on the "completed_at" field.

func CompletedAtNEQ

func CompletedAtNEQ(v models.DateTime) predicate.Remediation

CompletedAtNEQ applies the NEQ predicate on the "completed_at" field.

func CompletedAtNotIn

func CompletedAtNotIn(vs ...models.DateTime) predicate.Remediation

CompletedAtNotIn applies the NotIn predicate on the "completed_at" field.

func CompletedAtNotNil

func CompletedAtNotNil() predicate.Remediation

CompletedAtNotNil applies the NotNil predicate on the "completed_at" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Remediation

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Remediation

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Remediation

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Remediation

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.Remediation

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Remediation

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Remediation

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Remediation

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.Remediation

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

func CreatedBy

func CreatedBy(v string) predicate.Remediation

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

func CreatedByContains

func CreatedByContains(v string) predicate.Remediation

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.Remediation

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.Remediation

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.Remediation

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

func CreatedByGT

func CreatedByGT(v string) predicate.Remediation

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.Remediation

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.Remediation

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.Remediation

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.Remediation

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

func CreatedByLT

func CreatedByLT(v string) predicate.Remediation

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.Remediation

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.Remediation

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.Remediation

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

func DeletedAt

func DeletedAt(v time.Time) predicate.Remediation

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.Remediation

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.Remediation

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.Remediation

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.Remediation

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.Remediation

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.Remediation

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.Remediation

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.Remediation

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

func DeletedBy

func DeletedBy(v string) predicate.Remediation

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

func DeletedByContains

func DeletedByContains(v string) predicate.Remediation

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

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.Remediation

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

func DeletedByEQ

func DeletedByEQ(v string) predicate.Remediation

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

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.Remediation

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

func DeletedByGT

func DeletedByGT(v string) predicate.Remediation

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

func DeletedByGTE

func DeletedByGTE(v string) predicate.Remediation

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

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.Remediation

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

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.Remediation

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

func DeletedByIn

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

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

func DeletedByIsNil

func DeletedByIsNil() predicate.Remediation

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

func DeletedByLT

func DeletedByLT(v string) predicate.Remediation

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

func DeletedByLTE

func DeletedByLTE(v string) predicate.Remediation

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

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.Remediation

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

func DeletedByNotIn

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

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

func DeletedByNotNil

func DeletedByNotNil() predicate.Remediation

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

func DisplayID

func DisplayID(v string) predicate.Remediation

DisplayID applies equality check predicate on the "display_id" field. It's identical to DisplayIDEQ.

func DisplayIDContains

func DisplayIDContains(v string) predicate.Remediation

DisplayIDContains applies the Contains predicate on the "display_id" field.

func DisplayIDContainsFold

func DisplayIDContainsFold(v string) predicate.Remediation

DisplayIDContainsFold applies the ContainsFold predicate on the "display_id" field.

func DisplayIDEQ

func DisplayIDEQ(v string) predicate.Remediation

DisplayIDEQ applies the EQ predicate on the "display_id" field.

func DisplayIDEqualFold

func DisplayIDEqualFold(v string) predicate.Remediation

DisplayIDEqualFold applies the EqualFold predicate on the "display_id" field.

func DisplayIDGT

func DisplayIDGT(v string) predicate.Remediation

DisplayIDGT applies the GT predicate on the "display_id" field.

func DisplayIDGTE

func DisplayIDGTE(v string) predicate.Remediation

DisplayIDGTE applies the GTE predicate on the "display_id" field.

func DisplayIDHasPrefix

func DisplayIDHasPrefix(v string) predicate.Remediation

DisplayIDHasPrefix applies the HasPrefix predicate on the "display_id" field.

func DisplayIDHasSuffix

func DisplayIDHasSuffix(v string) predicate.Remediation

DisplayIDHasSuffix applies the HasSuffix predicate on the "display_id" field.

func DisplayIDIn

func DisplayIDIn(vs ...string) predicate.Remediation

DisplayIDIn applies the In predicate on the "display_id" field.

func DisplayIDLT

func DisplayIDLT(v string) predicate.Remediation

DisplayIDLT applies the LT predicate on the "display_id" field.

func DisplayIDLTE

func DisplayIDLTE(v string) predicate.Remediation

DisplayIDLTE applies the LTE predicate on the "display_id" field.

func DisplayIDNEQ

func DisplayIDNEQ(v string) predicate.Remediation

DisplayIDNEQ applies the NEQ predicate on the "display_id" field.

func DisplayIDNotIn

func DisplayIDNotIn(vs ...string) predicate.Remediation

DisplayIDNotIn applies the NotIn predicate on the "display_id" field.

func DueAt

DueAt applies equality check predicate on the "due_at" field. It's identical to DueAtEQ.

func DueAtEQ

DueAtEQ applies the EQ predicate on the "due_at" field.

func DueAtGT

DueAtGT applies the GT predicate on the "due_at" field.

func DueAtGTE

DueAtGTE applies the GTE predicate on the "due_at" field.

func DueAtIn

func DueAtIn(vs ...models.DateTime) predicate.Remediation

DueAtIn applies the In predicate on the "due_at" field.

func DueAtIsNil

func DueAtIsNil() predicate.Remediation

DueAtIsNil applies the IsNil predicate on the "due_at" field.

func DueAtLT

DueAtLT applies the LT predicate on the "due_at" field.

func DueAtLTE

DueAtLTE applies the LTE predicate on the "due_at" field.

func DueAtNEQ

DueAtNEQ applies the NEQ predicate on the "due_at" field.

func DueAtNotIn

func DueAtNotIn(vs ...models.DateTime) predicate.Remediation

DueAtNotIn applies the NotIn predicate on the "due_at" field.

func DueAtNotNil

func DueAtNotNil() predicate.Remediation

DueAtNotNil applies the NotNil predicate on the "due_at" field.

func EnvironmentID added in v1.5.0

func EnvironmentID(v string) predicate.Remediation

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

func EnvironmentIDContains added in v1.5.0

func EnvironmentIDContains(v string) predicate.Remediation

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

func EnvironmentIDContainsFold added in v1.5.0

func EnvironmentIDContainsFold(v string) predicate.Remediation

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

func EnvironmentIDEQ added in v1.5.0

func EnvironmentIDEQ(v string) predicate.Remediation

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

func EnvironmentIDEqualFold added in v1.5.0

func EnvironmentIDEqualFold(v string) predicate.Remediation

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

func EnvironmentIDGT added in v1.5.0

func EnvironmentIDGT(v string) predicate.Remediation

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

func EnvironmentIDGTE added in v1.5.0

func EnvironmentIDGTE(v string) predicate.Remediation

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

func EnvironmentIDHasPrefix added in v1.5.0

func EnvironmentIDHasPrefix(v string) predicate.Remediation

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

func EnvironmentIDHasSuffix added in v1.5.0

func EnvironmentIDHasSuffix(v string) predicate.Remediation

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

func EnvironmentIDIn added in v1.5.0

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

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

func EnvironmentIDIsNil added in v1.5.0

func EnvironmentIDIsNil() predicate.Remediation

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

func EnvironmentIDLT added in v1.5.0

func EnvironmentIDLT(v string) predicate.Remediation

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

func EnvironmentIDLTE added in v1.5.0

func EnvironmentIDLTE(v string) predicate.Remediation

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

func EnvironmentIDNEQ added in v1.5.0

func EnvironmentIDNEQ(v string) predicate.Remediation

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

func EnvironmentIDNotIn added in v1.5.0

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

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

func EnvironmentIDNotNil added in v1.5.0

func EnvironmentIDNotNil() predicate.Remediation

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

func EnvironmentName added in v1.5.0

func EnvironmentName(v string) predicate.Remediation

EnvironmentName applies equality check predicate on the "environment_name" field. It's identical to EnvironmentNameEQ.

func EnvironmentNameContains added in v1.5.0

func EnvironmentNameContains(v string) predicate.Remediation

EnvironmentNameContains applies the Contains predicate on the "environment_name" field.

func EnvironmentNameContainsFold added in v1.5.0

func EnvironmentNameContainsFold(v string) predicate.Remediation

EnvironmentNameContainsFold applies the ContainsFold predicate on the "environment_name" field.

func EnvironmentNameEQ added in v1.5.0

func EnvironmentNameEQ(v string) predicate.Remediation

EnvironmentNameEQ applies the EQ predicate on the "environment_name" field.

func EnvironmentNameEqualFold added in v1.5.0

func EnvironmentNameEqualFold(v string) predicate.Remediation

EnvironmentNameEqualFold applies the EqualFold predicate on the "environment_name" field.

func EnvironmentNameGT added in v1.5.0

func EnvironmentNameGT(v string) predicate.Remediation

EnvironmentNameGT applies the GT predicate on the "environment_name" field.

func EnvironmentNameGTE added in v1.5.0

func EnvironmentNameGTE(v string) predicate.Remediation

EnvironmentNameGTE applies the GTE predicate on the "environment_name" field.

func EnvironmentNameHasPrefix added in v1.5.0

func EnvironmentNameHasPrefix(v string) predicate.Remediation

EnvironmentNameHasPrefix applies the HasPrefix predicate on the "environment_name" field.

func EnvironmentNameHasSuffix added in v1.5.0

func EnvironmentNameHasSuffix(v string) predicate.Remediation

EnvironmentNameHasSuffix applies the HasSuffix predicate on the "environment_name" field.

func EnvironmentNameIn added in v1.5.0

func EnvironmentNameIn(vs ...string) predicate.Remediation

EnvironmentNameIn applies the In predicate on the "environment_name" field.

func EnvironmentNameIsNil added in v1.5.0

func EnvironmentNameIsNil() predicate.Remediation

EnvironmentNameIsNil applies the IsNil predicate on the "environment_name" field.

func EnvironmentNameLT added in v1.5.0

func EnvironmentNameLT(v string) predicate.Remediation

EnvironmentNameLT applies the LT predicate on the "environment_name" field.

func EnvironmentNameLTE added in v1.5.0

func EnvironmentNameLTE(v string) predicate.Remediation

EnvironmentNameLTE applies the LTE predicate on the "environment_name" field.

func EnvironmentNameNEQ added in v1.5.0

func EnvironmentNameNEQ(v string) predicate.Remediation

EnvironmentNameNEQ applies the NEQ predicate on the "environment_name" field.

func EnvironmentNameNotIn added in v1.5.0

func EnvironmentNameNotIn(vs ...string) predicate.Remediation

EnvironmentNameNotIn applies the NotIn predicate on the "environment_name" field.

func EnvironmentNameNotNil added in v1.5.0

func EnvironmentNameNotNil() predicate.Remediation

EnvironmentNameNotNil applies the NotNil predicate on the "environment_name" field.

func Error

func Error(v string) predicate.Remediation

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

func ErrorContains

func ErrorContains(v string) predicate.Remediation

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

func ErrorContainsFold

func ErrorContainsFold(v string) predicate.Remediation

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

func ErrorEQ

func ErrorEQ(v string) predicate.Remediation

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

func ErrorEqualFold

func ErrorEqualFold(v string) predicate.Remediation

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

func ErrorGT

func ErrorGT(v string) predicate.Remediation

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

func ErrorGTE

func ErrorGTE(v string) predicate.Remediation

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

func ErrorHasPrefix

func ErrorHasPrefix(v string) predicate.Remediation

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

func ErrorHasSuffix

func ErrorHasSuffix(v string) predicate.Remediation

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

func ErrorIn

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

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

func ErrorIsNil

func ErrorIsNil() predicate.Remediation

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

func ErrorLT

func ErrorLT(v string) predicate.Remediation

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

func ErrorLTE

func ErrorLTE(v string) predicate.Remediation

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

func ErrorNEQ

func ErrorNEQ(v string) predicate.Remediation

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

func ErrorNotIn

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

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

func ErrorNotNil

func ErrorNotNil() predicate.Remediation

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

func Explanation

func Explanation(v string) predicate.Remediation

Explanation applies equality check predicate on the "explanation" field. It's identical to ExplanationEQ.

func ExplanationContains

func ExplanationContains(v string) predicate.Remediation

ExplanationContains applies the Contains predicate on the "explanation" field.

func ExplanationContainsFold

func ExplanationContainsFold(v string) predicate.Remediation

ExplanationContainsFold applies the ContainsFold predicate on the "explanation" field.

func ExplanationEQ

func ExplanationEQ(v string) predicate.Remediation

ExplanationEQ applies the EQ predicate on the "explanation" field.

func ExplanationEqualFold

func ExplanationEqualFold(v string) predicate.Remediation

ExplanationEqualFold applies the EqualFold predicate on the "explanation" field.

func ExplanationGT

func ExplanationGT(v string) predicate.Remediation

ExplanationGT applies the GT predicate on the "explanation" field.

func ExplanationGTE

func ExplanationGTE(v string) predicate.Remediation

ExplanationGTE applies the GTE predicate on the "explanation" field.

func ExplanationHasPrefix

func ExplanationHasPrefix(v string) predicate.Remediation

ExplanationHasPrefix applies the HasPrefix predicate on the "explanation" field.

func ExplanationHasSuffix

func ExplanationHasSuffix(v string) predicate.Remediation

ExplanationHasSuffix applies the HasSuffix predicate on the "explanation" field.

func ExplanationIn

func ExplanationIn(vs ...string) predicate.Remediation

ExplanationIn applies the In predicate on the "explanation" field.

func ExplanationIsNil

func ExplanationIsNil() predicate.Remediation

ExplanationIsNil applies the IsNil predicate on the "explanation" field.

func ExplanationLT

func ExplanationLT(v string) predicate.Remediation

ExplanationLT applies the LT predicate on the "explanation" field.

func ExplanationLTE

func ExplanationLTE(v string) predicate.Remediation

ExplanationLTE applies the LTE predicate on the "explanation" field.

func ExplanationNEQ

func ExplanationNEQ(v string) predicate.Remediation

ExplanationNEQ applies the NEQ predicate on the "explanation" field.

func ExplanationNotIn

func ExplanationNotIn(vs ...string) predicate.Remediation

ExplanationNotIn applies the NotIn predicate on the "explanation" field.

func ExplanationNotNil

func ExplanationNotNil() predicate.Remediation

ExplanationNotNil applies the NotNil predicate on the "explanation" field.

func ExternalID

func ExternalID(v string) predicate.Remediation

ExternalID applies equality check predicate on the "external_id" field. It's identical to ExternalIDEQ.

func ExternalIDContains

func ExternalIDContains(v string) predicate.Remediation

ExternalIDContains applies the Contains predicate on the "external_id" field.

func ExternalIDContainsFold

func ExternalIDContainsFold(v string) predicate.Remediation

ExternalIDContainsFold applies the ContainsFold predicate on the "external_id" field.

func ExternalIDEQ

func ExternalIDEQ(v string) predicate.Remediation

ExternalIDEQ applies the EQ predicate on the "external_id" field.

func ExternalIDEqualFold

func ExternalIDEqualFold(v string) predicate.Remediation

ExternalIDEqualFold applies the EqualFold predicate on the "external_id" field.

func ExternalIDGT

func ExternalIDGT(v string) predicate.Remediation

ExternalIDGT applies the GT predicate on the "external_id" field.

func ExternalIDGTE

func ExternalIDGTE(v string) predicate.Remediation

ExternalIDGTE applies the GTE predicate on the "external_id" field.

func ExternalIDHasPrefix

func ExternalIDHasPrefix(v string) predicate.Remediation

ExternalIDHasPrefix applies the HasPrefix predicate on the "external_id" field.

func ExternalIDHasSuffix

func ExternalIDHasSuffix(v string) predicate.Remediation

ExternalIDHasSuffix applies the HasSuffix predicate on the "external_id" field.

func ExternalIDIn

func ExternalIDIn(vs ...string) predicate.Remediation

ExternalIDIn applies the In predicate on the "external_id" field.

func ExternalIDIsNil

func ExternalIDIsNil() predicate.Remediation

ExternalIDIsNil applies the IsNil predicate on the "external_id" field.

func ExternalIDLT

func ExternalIDLT(v string) predicate.Remediation

ExternalIDLT applies the LT predicate on the "external_id" field.

func ExternalIDLTE

func ExternalIDLTE(v string) predicate.Remediation

ExternalIDLTE applies the LTE predicate on the "external_id" field.

func ExternalIDNEQ

func ExternalIDNEQ(v string) predicate.Remediation

ExternalIDNEQ applies the NEQ predicate on the "external_id" field.

func ExternalIDNotIn

func ExternalIDNotIn(vs ...string) predicate.Remediation

ExternalIDNotIn applies the NotIn predicate on the "external_id" field.

func ExternalIDNotNil

func ExternalIDNotNil() predicate.Remediation

ExternalIDNotNil applies the NotNil predicate on the "external_id" field.

func ExternalOwnerID

func ExternalOwnerID(v string) predicate.Remediation

ExternalOwnerID applies equality check predicate on the "external_owner_id" field. It's identical to ExternalOwnerIDEQ.

func ExternalOwnerIDContains

func ExternalOwnerIDContains(v string) predicate.Remediation

ExternalOwnerIDContains applies the Contains predicate on the "external_owner_id" field.

func ExternalOwnerIDContainsFold

func ExternalOwnerIDContainsFold(v string) predicate.Remediation

ExternalOwnerIDContainsFold applies the ContainsFold predicate on the "external_owner_id" field.

func ExternalOwnerIDEQ

func ExternalOwnerIDEQ(v string) predicate.Remediation

ExternalOwnerIDEQ applies the EQ predicate on the "external_owner_id" field.

func ExternalOwnerIDEqualFold

func ExternalOwnerIDEqualFold(v string) predicate.Remediation

ExternalOwnerIDEqualFold applies the EqualFold predicate on the "external_owner_id" field.

func ExternalOwnerIDGT

func ExternalOwnerIDGT(v string) predicate.Remediation

ExternalOwnerIDGT applies the GT predicate on the "external_owner_id" field.

func ExternalOwnerIDGTE

func ExternalOwnerIDGTE(v string) predicate.Remediation

ExternalOwnerIDGTE applies the GTE predicate on the "external_owner_id" field.

func ExternalOwnerIDHasPrefix

func ExternalOwnerIDHasPrefix(v string) predicate.Remediation

ExternalOwnerIDHasPrefix applies the HasPrefix predicate on the "external_owner_id" field.

func ExternalOwnerIDHasSuffix

func ExternalOwnerIDHasSuffix(v string) predicate.Remediation

ExternalOwnerIDHasSuffix applies the HasSuffix predicate on the "external_owner_id" field.

func ExternalOwnerIDIn

func ExternalOwnerIDIn(vs ...string) predicate.Remediation

ExternalOwnerIDIn applies the In predicate on the "external_owner_id" field.

func ExternalOwnerIDIsNil

func ExternalOwnerIDIsNil() predicate.Remediation

ExternalOwnerIDIsNil applies the IsNil predicate on the "external_owner_id" field.

func ExternalOwnerIDLT

func ExternalOwnerIDLT(v string) predicate.Remediation

ExternalOwnerIDLT applies the LT predicate on the "external_owner_id" field.

func ExternalOwnerIDLTE

func ExternalOwnerIDLTE(v string) predicate.Remediation

ExternalOwnerIDLTE applies the LTE predicate on the "external_owner_id" field.

func ExternalOwnerIDNEQ

func ExternalOwnerIDNEQ(v string) predicate.Remediation

ExternalOwnerIDNEQ applies the NEQ predicate on the "external_owner_id" field.

func ExternalOwnerIDNotIn

func ExternalOwnerIDNotIn(vs ...string) predicate.Remediation

ExternalOwnerIDNotIn applies the NotIn predicate on the "external_owner_id" field.

func ExternalOwnerIDNotNil

func ExternalOwnerIDNotNil() predicate.Remediation

ExternalOwnerIDNotNil applies the NotNil predicate on the "external_owner_id" field.

func ExternalURI

func ExternalURI(v string) predicate.Remediation

ExternalURI applies equality check predicate on the "external_uri" field. It's identical to ExternalURIEQ.

func ExternalURIContains

func ExternalURIContains(v string) predicate.Remediation

ExternalURIContains applies the Contains predicate on the "external_uri" field.

func ExternalURIContainsFold

func ExternalURIContainsFold(v string) predicate.Remediation

ExternalURIContainsFold applies the ContainsFold predicate on the "external_uri" field.

func ExternalURIEQ

func ExternalURIEQ(v string) predicate.Remediation

ExternalURIEQ applies the EQ predicate on the "external_uri" field.

func ExternalURIEqualFold

func ExternalURIEqualFold(v string) predicate.Remediation

ExternalURIEqualFold applies the EqualFold predicate on the "external_uri" field.

func ExternalURIGT

func ExternalURIGT(v string) predicate.Remediation

ExternalURIGT applies the GT predicate on the "external_uri" field.

func ExternalURIGTE

func ExternalURIGTE(v string) predicate.Remediation

ExternalURIGTE applies the GTE predicate on the "external_uri" field.

func ExternalURIHasPrefix

func ExternalURIHasPrefix(v string) predicate.Remediation

ExternalURIHasPrefix applies the HasPrefix predicate on the "external_uri" field.

func ExternalURIHasSuffix

func ExternalURIHasSuffix(v string) predicate.Remediation

ExternalURIHasSuffix applies the HasSuffix predicate on the "external_uri" field.

func ExternalURIIn

func ExternalURIIn(vs ...string) predicate.Remediation

ExternalURIIn applies the In predicate on the "external_uri" field.

func ExternalURIIsNil

func ExternalURIIsNil() predicate.Remediation

ExternalURIIsNil applies the IsNil predicate on the "external_uri" field.

func ExternalURILT

func ExternalURILT(v string) predicate.Remediation

ExternalURILT applies the LT predicate on the "external_uri" field.

func ExternalURILTE

func ExternalURILTE(v string) predicate.Remediation

ExternalURILTE applies the LTE predicate on the "external_uri" field.

func ExternalURINEQ

func ExternalURINEQ(v string) predicate.Remediation

ExternalURINEQ applies the NEQ predicate on the "external_uri" field.

func ExternalURINotIn

func ExternalURINotIn(vs ...string) predicate.Remediation

ExternalURINotIn applies the NotIn predicate on the "external_uri" field.

func ExternalURINotNil

func ExternalURINotNil() predicate.Remediation

ExternalURINotNil applies the NotNil predicate on the "external_uri" field.

func HasActionPlans

func HasActionPlans() predicate.Remediation

HasActionPlans applies the HasEdge predicate on the "action_plans" edge.

func HasActionPlansWith

func HasActionPlansWith(preds ...predicate.ActionPlan) predicate.Remediation

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

func HasAssets

func HasAssets() predicate.Remediation

HasAssets applies the HasEdge predicate on the "assets" edge.

func HasAssetsWith

func HasAssetsWith(preds ...predicate.Asset) predicate.Remediation

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

func HasBlockedGroups

func HasBlockedGroups() predicate.Remediation

HasBlockedGroups applies the HasEdge predicate on the "blocked_groups" edge.

func HasBlockedGroupsWith

func HasBlockedGroupsWith(preds ...predicate.Group) predicate.Remediation

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

func HasComments

func HasComments() predicate.Remediation

HasComments applies the HasEdge predicate on the "comments" edge.

func HasCommentsWith

func HasCommentsWith(preds ...predicate.Note) predicate.Remediation

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

func HasControls

func HasControls() predicate.Remediation

HasControls applies the HasEdge predicate on the "controls" edge.

func HasControlsWith

func HasControlsWith(preds ...predicate.Control) predicate.Remediation

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

func HasEditors

func HasEditors() predicate.Remediation

HasEditors applies the HasEdge predicate on the "editors" edge.

func HasEditorsWith

func HasEditorsWith(preds ...predicate.Group) predicate.Remediation

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

func HasEntities

func HasEntities() predicate.Remediation

HasEntities applies the HasEdge predicate on the "entities" edge.

func HasEntitiesWith

func HasEntitiesWith(preds ...predicate.Entity) predicate.Remediation

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

func HasEnvironment added in v1.5.0

func HasEnvironment() predicate.Remediation

HasEnvironment applies the HasEdge predicate on the "environment" edge.

func HasEnvironmentWith added in v1.5.0

func HasEnvironmentWith(preds ...predicate.CustomTypeEnum) predicate.Remediation

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

func HasFiles

func HasFiles() predicate.Remediation

HasFiles applies the HasEdge predicate on the "files" edge.

func HasFilesWith

func HasFilesWith(preds ...predicate.File) predicate.Remediation

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

func HasFindings

func HasFindings() predicate.Remediation

HasFindings applies the HasEdge predicate on the "findings" edge.

func HasFindingsWith

func HasFindingsWith(preds ...predicate.Finding) predicate.Remediation

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

func HasIntegrations

func HasIntegrations() predicate.Remediation

HasIntegrations applies the HasEdge predicate on the "integrations" edge.

func HasIntegrationsWith

func HasIntegrationsWith(preds ...predicate.Integration) predicate.Remediation

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

func HasOwner

func HasOwner() predicate.Remediation

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

func HasOwnerWith

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

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

func HasPrograms

func HasPrograms() predicate.Remediation

HasPrograms applies the HasEdge predicate on the "programs" edge.

func HasProgramsWith

func HasProgramsWith(preds ...predicate.Program) predicate.Remediation

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

func HasReviews

func HasReviews() predicate.Remediation

HasReviews applies the HasEdge predicate on the "reviews" edge.

func HasReviewsWith

func HasReviewsWith(preds ...predicate.Review) predicate.Remediation

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

func HasRisks

func HasRisks() predicate.Remediation

HasRisks applies the HasEdge predicate on the "risks" edge.

func HasRisksWith

func HasRisksWith(preds ...predicate.Risk) predicate.Remediation

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

func HasScans added in v1.5.0

func HasScans() predicate.Remediation

HasScans applies the HasEdge predicate on the "scans" edge.

func HasScansWith added in v1.5.0

func HasScansWith(preds ...predicate.Scan) predicate.Remediation

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

func HasScope added in v1.5.0

func HasScope() predicate.Remediation

HasScope applies the HasEdge predicate on the "scope" edge.

func HasScopeWith added in v1.5.0

func HasScopeWith(preds ...predicate.CustomTypeEnum) predicate.Remediation

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

func HasSubcontrols

func HasSubcontrols() predicate.Remediation

HasSubcontrols applies the HasEdge predicate on the "subcontrols" edge.

func HasSubcontrolsWith

func HasSubcontrolsWith(preds ...predicate.Subcontrol) predicate.Remediation

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

func HasTasks

func HasTasks() predicate.Remediation

HasTasks applies the HasEdge predicate on the "tasks" edge.

func HasTasksWith

func HasTasksWith(preds ...predicate.Task) predicate.Remediation

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

func HasViewers

func HasViewers() predicate.Remediation

HasViewers applies the HasEdge predicate on the "viewers" edge.

func HasViewersWith

func HasViewersWith(preds ...predicate.Group) predicate.Remediation

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

func HasVulnerabilities

func HasVulnerabilities() predicate.Remediation

HasVulnerabilities applies the HasEdge predicate on the "vulnerabilities" edge.

func HasVulnerabilitiesWith

func HasVulnerabilitiesWith(preds ...predicate.Vulnerability) predicate.Remediation

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.Remediation

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

func IDEQ(id string) predicate.Remediation

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.Remediation

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

func IDGT(id string) predicate.Remediation

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.Remediation

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.Remediation

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.Remediation

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.Remediation

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.Remediation

IDNotIn applies the NotIn predicate on the ID field.

func Instructions

func Instructions(v string) predicate.Remediation

Instructions applies equality check predicate on the "instructions" field. It's identical to InstructionsEQ.

func InstructionsContains

func InstructionsContains(v string) predicate.Remediation

InstructionsContains applies the Contains predicate on the "instructions" field.

func InstructionsContainsFold

func InstructionsContainsFold(v string) predicate.Remediation

InstructionsContainsFold applies the ContainsFold predicate on the "instructions" field.

func InstructionsEQ

func InstructionsEQ(v string) predicate.Remediation

InstructionsEQ applies the EQ predicate on the "instructions" field.

func InstructionsEqualFold

func InstructionsEqualFold(v string) predicate.Remediation

InstructionsEqualFold applies the EqualFold predicate on the "instructions" field.

func InstructionsGT

func InstructionsGT(v string) predicate.Remediation

InstructionsGT applies the GT predicate on the "instructions" field.

func InstructionsGTE

func InstructionsGTE(v string) predicate.Remediation

InstructionsGTE applies the GTE predicate on the "instructions" field.

func InstructionsHasPrefix

func InstructionsHasPrefix(v string) predicate.Remediation

InstructionsHasPrefix applies the HasPrefix predicate on the "instructions" field.

func InstructionsHasSuffix

func InstructionsHasSuffix(v string) predicate.Remediation

InstructionsHasSuffix applies the HasSuffix predicate on the "instructions" field.

func InstructionsIn

func InstructionsIn(vs ...string) predicate.Remediation

InstructionsIn applies the In predicate on the "instructions" field.

func InstructionsIsNil

func InstructionsIsNil() predicate.Remediation

InstructionsIsNil applies the IsNil predicate on the "instructions" field.

func InstructionsLT

func InstructionsLT(v string) predicate.Remediation

InstructionsLT applies the LT predicate on the "instructions" field.

func InstructionsLTE

func InstructionsLTE(v string) predicate.Remediation

InstructionsLTE applies the LTE predicate on the "instructions" field.

func InstructionsNEQ

func InstructionsNEQ(v string) predicate.Remediation

InstructionsNEQ applies the NEQ predicate on the "instructions" field.

func InstructionsNotIn

func InstructionsNotIn(vs ...string) predicate.Remediation

InstructionsNotIn applies the NotIn predicate on the "instructions" field.

func InstructionsNotNil

func InstructionsNotNil() predicate.Remediation

InstructionsNotNil applies the NotNil predicate on the "instructions" field.

func Intent

func Intent(v string) predicate.Remediation

Intent applies equality check predicate on the "intent" field. It's identical to IntentEQ.

func IntentContains

func IntentContains(v string) predicate.Remediation

IntentContains applies the Contains predicate on the "intent" field.

func IntentContainsFold

func IntentContainsFold(v string) predicate.Remediation

IntentContainsFold applies the ContainsFold predicate on the "intent" field.

func IntentEQ

func IntentEQ(v string) predicate.Remediation

IntentEQ applies the EQ predicate on the "intent" field.

func IntentEqualFold

func IntentEqualFold(v string) predicate.Remediation

IntentEqualFold applies the EqualFold predicate on the "intent" field.

func IntentGT

func IntentGT(v string) predicate.Remediation

IntentGT applies the GT predicate on the "intent" field.

func IntentGTE

func IntentGTE(v string) predicate.Remediation

IntentGTE applies the GTE predicate on the "intent" field.

func IntentHasPrefix

func IntentHasPrefix(v string) predicate.Remediation

IntentHasPrefix applies the HasPrefix predicate on the "intent" field.

func IntentHasSuffix

func IntentHasSuffix(v string) predicate.Remediation

IntentHasSuffix applies the HasSuffix predicate on the "intent" field.

func IntentIn

func IntentIn(vs ...string) predicate.Remediation

IntentIn applies the In predicate on the "intent" field.

func IntentIsNil

func IntentIsNil() predicate.Remediation

IntentIsNil applies the IsNil predicate on the "intent" field.

func IntentLT

func IntentLT(v string) predicate.Remediation

IntentLT applies the LT predicate on the "intent" field.

func IntentLTE

func IntentLTE(v string) predicate.Remediation

IntentLTE applies the LTE predicate on the "intent" field.

func IntentNEQ

func IntentNEQ(v string) predicate.Remediation

IntentNEQ applies the NEQ predicate on the "intent" field.

func IntentNotIn

func IntentNotIn(vs ...string) predicate.Remediation

IntentNotIn applies the NotIn predicate on the "intent" field.

func IntentNotNil

func IntentNotNil() predicate.Remediation

IntentNotNil applies the NotNil predicate on the "intent" field.

func InternalNotes

func InternalNotes(v string) predicate.Remediation

InternalNotes applies equality check predicate on the "internal_notes" field. It's identical to InternalNotesEQ.

func InternalNotesContains

func InternalNotesContains(v string) predicate.Remediation

InternalNotesContains applies the Contains predicate on the "internal_notes" field.

func InternalNotesContainsFold

func InternalNotesContainsFold(v string) predicate.Remediation

InternalNotesContainsFold applies the ContainsFold predicate on the "internal_notes" field.

func InternalNotesEQ

func InternalNotesEQ(v string) predicate.Remediation

InternalNotesEQ applies the EQ predicate on the "internal_notes" field.

func InternalNotesEqualFold

func InternalNotesEqualFold(v string) predicate.Remediation

InternalNotesEqualFold applies the EqualFold predicate on the "internal_notes" field.

func InternalNotesGT

func InternalNotesGT(v string) predicate.Remediation

InternalNotesGT applies the GT predicate on the "internal_notes" field.

func InternalNotesGTE

func InternalNotesGTE(v string) predicate.Remediation

InternalNotesGTE applies the GTE predicate on the "internal_notes" field.

func InternalNotesHasPrefix

func InternalNotesHasPrefix(v string) predicate.Remediation

InternalNotesHasPrefix applies the HasPrefix predicate on the "internal_notes" field.

func InternalNotesHasSuffix

func InternalNotesHasSuffix(v string) predicate.Remediation

InternalNotesHasSuffix applies the HasSuffix predicate on the "internal_notes" field.

func InternalNotesIn

func InternalNotesIn(vs ...string) predicate.Remediation

InternalNotesIn applies the In predicate on the "internal_notes" field.

func InternalNotesIsNil

func InternalNotesIsNil() predicate.Remediation

InternalNotesIsNil applies the IsNil predicate on the "internal_notes" field.

func InternalNotesLT

func InternalNotesLT(v string) predicate.Remediation

InternalNotesLT applies the LT predicate on the "internal_notes" field.

func InternalNotesLTE

func InternalNotesLTE(v string) predicate.Remediation

InternalNotesLTE applies the LTE predicate on the "internal_notes" field.

func InternalNotesNEQ

func InternalNotesNEQ(v string) predicate.Remediation

InternalNotesNEQ applies the NEQ predicate on the "internal_notes" field.

func InternalNotesNotIn

func InternalNotesNotIn(vs ...string) predicate.Remediation

InternalNotesNotIn applies the NotIn predicate on the "internal_notes" field.

func InternalNotesNotNil

func InternalNotesNotNil() predicate.Remediation

InternalNotesNotNil applies the NotNil predicate on the "internal_notes" field.

func MetadataIsNil

func MetadataIsNil() predicate.Remediation

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

func MetadataNotNil

func MetadataNotNil() predicate.Remediation

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

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Remediation) predicate.Remediation

Or groups predicates with the OR operator between them.

func OwnerID

func OwnerID(v string) predicate.Remediation

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

func OwnerIDContains

func OwnerIDContains(v string) predicate.Remediation

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

func OwnerIDContainsFold

func OwnerIDContainsFold(v string) predicate.Remediation

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

func OwnerIDEQ

func OwnerIDEQ(v string) predicate.Remediation

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

func OwnerIDEqualFold

func OwnerIDEqualFold(v string) predicate.Remediation

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

func OwnerIDGT

func OwnerIDGT(v string) predicate.Remediation

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

func OwnerIDGTE

func OwnerIDGTE(v string) predicate.Remediation

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

func OwnerIDHasPrefix

func OwnerIDHasPrefix(v string) predicate.Remediation

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

func OwnerIDHasSuffix

func OwnerIDHasSuffix(v string) predicate.Remediation

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

func OwnerIDIn

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

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

func OwnerIDIsNil

func OwnerIDIsNil() predicate.Remediation

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

func OwnerIDLT

func OwnerIDLT(v string) predicate.Remediation

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

func OwnerIDLTE

func OwnerIDLTE(v string) predicate.Remediation

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

func OwnerIDNEQ

func OwnerIDNEQ(v string) predicate.Remediation

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

func OwnerIDNotIn

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

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

func OwnerIDNotNil

func OwnerIDNotNil() predicate.Remediation

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

func OwnerReference

func OwnerReference(v string) predicate.Remediation

OwnerReference applies equality check predicate on the "owner_reference" field. It's identical to OwnerReferenceEQ.

func OwnerReferenceContains

func OwnerReferenceContains(v string) predicate.Remediation

OwnerReferenceContains applies the Contains predicate on the "owner_reference" field.

func OwnerReferenceContainsFold

func OwnerReferenceContainsFold(v string) predicate.Remediation

OwnerReferenceContainsFold applies the ContainsFold predicate on the "owner_reference" field.

func OwnerReferenceEQ

func OwnerReferenceEQ(v string) predicate.Remediation

OwnerReferenceEQ applies the EQ predicate on the "owner_reference" field.

func OwnerReferenceEqualFold

func OwnerReferenceEqualFold(v string) predicate.Remediation

OwnerReferenceEqualFold applies the EqualFold predicate on the "owner_reference" field.

func OwnerReferenceGT

func OwnerReferenceGT(v string) predicate.Remediation

OwnerReferenceGT applies the GT predicate on the "owner_reference" field.

func OwnerReferenceGTE

func OwnerReferenceGTE(v string) predicate.Remediation

OwnerReferenceGTE applies the GTE predicate on the "owner_reference" field.

func OwnerReferenceHasPrefix

func OwnerReferenceHasPrefix(v string) predicate.Remediation

OwnerReferenceHasPrefix applies the HasPrefix predicate on the "owner_reference" field.

func OwnerReferenceHasSuffix

func OwnerReferenceHasSuffix(v string) predicate.Remediation

OwnerReferenceHasSuffix applies the HasSuffix predicate on the "owner_reference" field.

func OwnerReferenceIn

func OwnerReferenceIn(vs ...string) predicate.Remediation

OwnerReferenceIn applies the In predicate on the "owner_reference" field.

func OwnerReferenceIsNil

func OwnerReferenceIsNil() predicate.Remediation

OwnerReferenceIsNil applies the IsNil predicate on the "owner_reference" field.

func OwnerReferenceLT

func OwnerReferenceLT(v string) predicate.Remediation

OwnerReferenceLT applies the LT predicate on the "owner_reference" field.

func OwnerReferenceLTE

func OwnerReferenceLTE(v string) predicate.Remediation

OwnerReferenceLTE applies the LTE predicate on the "owner_reference" field.

func OwnerReferenceNEQ

func OwnerReferenceNEQ(v string) predicate.Remediation

OwnerReferenceNEQ applies the NEQ predicate on the "owner_reference" field.

func OwnerReferenceNotIn

func OwnerReferenceNotIn(vs ...string) predicate.Remediation

OwnerReferenceNotIn applies the NotIn predicate on the "owner_reference" field.

func OwnerReferenceNotNil

func OwnerReferenceNotNil() predicate.Remediation

OwnerReferenceNotNil applies the NotNil predicate on the "owner_reference" field.

func PrGeneratedAt

func PrGeneratedAt(v models.DateTime) predicate.Remediation

PrGeneratedAt applies equality check predicate on the "pr_generated_at" field. It's identical to PrGeneratedAtEQ.

func PrGeneratedAtEQ

func PrGeneratedAtEQ(v models.DateTime) predicate.Remediation

PrGeneratedAtEQ applies the EQ predicate on the "pr_generated_at" field.

func PrGeneratedAtGT

func PrGeneratedAtGT(v models.DateTime) predicate.Remediation

PrGeneratedAtGT applies the GT predicate on the "pr_generated_at" field.

func PrGeneratedAtGTE

func PrGeneratedAtGTE(v models.DateTime) predicate.Remediation

PrGeneratedAtGTE applies the GTE predicate on the "pr_generated_at" field.

func PrGeneratedAtIn

func PrGeneratedAtIn(vs ...models.DateTime) predicate.Remediation

PrGeneratedAtIn applies the In predicate on the "pr_generated_at" field.

func PrGeneratedAtIsNil

func PrGeneratedAtIsNil() predicate.Remediation

PrGeneratedAtIsNil applies the IsNil predicate on the "pr_generated_at" field.

func PrGeneratedAtLT

func PrGeneratedAtLT(v models.DateTime) predicate.Remediation

PrGeneratedAtLT applies the LT predicate on the "pr_generated_at" field.

func PrGeneratedAtLTE

func PrGeneratedAtLTE(v models.DateTime) predicate.Remediation

PrGeneratedAtLTE applies the LTE predicate on the "pr_generated_at" field.

func PrGeneratedAtNEQ

func PrGeneratedAtNEQ(v models.DateTime) predicate.Remediation

PrGeneratedAtNEQ applies the NEQ predicate on the "pr_generated_at" field.

func PrGeneratedAtNotIn

func PrGeneratedAtNotIn(vs ...models.DateTime) predicate.Remediation

PrGeneratedAtNotIn applies the NotIn predicate on the "pr_generated_at" field.

func PrGeneratedAtNotNil

func PrGeneratedAtNotNil() predicate.Remediation

PrGeneratedAtNotNil applies the NotNil predicate on the "pr_generated_at" field.

func PullRequestURI

func PullRequestURI(v string) predicate.Remediation

PullRequestURI applies equality check predicate on the "pull_request_uri" field. It's identical to PullRequestURIEQ.

func PullRequestURIContains

func PullRequestURIContains(v string) predicate.Remediation

PullRequestURIContains applies the Contains predicate on the "pull_request_uri" field.

func PullRequestURIContainsFold

func PullRequestURIContainsFold(v string) predicate.Remediation

PullRequestURIContainsFold applies the ContainsFold predicate on the "pull_request_uri" field.

func PullRequestURIEQ

func PullRequestURIEQ(v string) predicate.Remediation

PullRequestURIEQ applies the EQ predicate on the "pull_request_uri" field.

func PullRequestURIEqualFold

func PullRequestURIEqualFold(v string) predicate.Remediation

PullRequestURIEqualFold applies the EqualFold predicate on the "pull_request_uri" field.

func PullRequestURIGT

func PullRequestURIGT(v string) predicate.Remediation

PullRequestURIGT applies the GT predicate on the "pull_request_uri" field.

func PullRequestURIGTE

func PullRequestURIGTE(v string) predicate.Remediation

PullRequestURIGTE applies the GTE predicate on the "pull_request_uri" field.

func PullRequestURIHasPrefix

func PullRequestURIHasPrefix(v string) predicate.Remediation

PullRequestURIHasPrefix applies the HasPrefix predicate on the "pull_request_uri" field.

func PullRequestURIHasSuffix

func PullRequestURIHasSuffix(v string) predicate.Remediation

PullRequestURIHasSuffix applies the HasSuffix predicate on the "pull_request_uri" field.

func PullRequestURIIn

func PullRequestURIIn(vs ...string) predicate.Remediation

PullRequestURIIn applies the In predicate on the "pull_request_uri" field.

func PullRequestURIIsNil

func PullRequestURIIsNil() predicate.Remediation

PullRequestURIIsNil applies the IsNil predicate on the "pull_request_uri" field.

func PullRequestURILT

func PullRequestURILT(v string) predicate.Remediation

PullRequestURILT applies the LT predicate on the "pull_request_uri" field.

func PullRequestURILTE

func PullRequestURILTE(v string) predicate.Remediation

PullRequestURILTE applies the LTE predicate on the "pull_request_uri" field.

func PullRequestURINEQ

func PullRequestURINEQ(v string) predicate.Remediation

PullRequestURINEQ applies the NEQ predicate on the "pull_request_uri" field.

func PullRequestURINotIn

func PullRequestURINotIn(vs ...string) predicate.Remediation

PullRequestURINotIn applies the NotIn predicate on the "pull_request_uri" field.

func PullRequestURINotNil

func PullRequestURINotNil() predicate.Remediation

PullRequestURINotNil applies the NotNil predicate on the "pull_request_uri" field.

func RepositoryURI

func RepositoryURI(v string) predicate.Remediation

RepositoryURI applies equality check predicate on the "repository_uri" field. It's identical to RepositoryURIEQ.

func RepositoryURIContains

func RepositoryURIContains(v string) predicate.Remediation

RepositoryURIContains applies the Contains predicate on the "repository_uri" field.

func RepositoryURIContainsFold

func RepositoryURIContainsFold(v string) predicate.Remediation

RepositoryURIContainsFold applies the ContainsFold predicate on the "repository_uri" field.

func RepositoryURIEQ

func RepositoryURIEQ(v string) predicate.Remediation

RepositoryURIEQ applies the EQ predicate on the "repository_uri" field.

func RepositoryURIEqualFold

func RepositoryURIEqualFold(v string) predicate.Remediation

RepositoryURIEqualFold applies the EqualFold predicate on the "repository_uri" field.

func RepositoryURIGT

func RepositoryURIGT(v string) predicate.Remediation

RepositoryURIGT applies the GT predicate on the "repository_uri" field.

func RepositoryURIGTE

func RepositoryURIGTE(v string) predicate.Remediation

RepositoryURIGTE applies the GTE predicate on the "repository_uri" field.

func RepositoryURIHasPrefix

func RepositoryURIHasPrefix(v string) predicate.Remediation

RepositoryURIHasPrefix applies the HasPrefix predicate on the "repository_uri" field.

func RepositoryURIHasSuffix

func RepositoryURIHasSuffix(v string) predicate.Remediation

RepositoryURIHasSuffix applies the HasSuffix predicate on the "repository_uri" field.

func RepositoryURIIn

func RepositoryURIIn(vs ...string) predicate.Remediation

RepositoryURIIn applies the In predicate on the "repository_uri" field.

func RepositoryURIIsNil

func RepositoryURIIsNil() predicate.Remediation

RepositoryURIIsNil applies the IsNil predicate on the "repository_uri" field.

func RepositoryURILT

func RepositoryURILT(v string) predicate.Remediation

RepositoryURILT applies the LT predicate on the "repository_uri" field.

func RepositoryURILTE

func RepositoryURILTE(v string) predicate.Remediation

RepositoryURILTE applies the LTE predicate on the "repository_uri" field.

func RepositoryURINEQ

func RepositoryURINEQ(v string) predicate.Remediation

RepositoryURINEQ applies the NEQ predicate on the "repository_uri" field.

func RepositoryURINotIn

func RepositoryURINotIn(vs ...string) predicate.Remediation

RepositoryURINotIn applies the NotIn predicate on the "repository_uri" field.

func RepositoryURINotNil

func RepositoryURINotNil() predicate.Remediation

RepositoryURINotNil applies the NotNil predicate on the "repository_uri" field.

func ScopeID added in v1.5.0

func ScopeID(v string) predicate.Remediation

ScopeID applies equality check predicate on the "scope_id" field. It's identical to ScopeIDEQ.

func ScopeIDContains added in v1.5.0

func ScopeIDContains(v string) predicate.Remediation

ScopeIDContains applies the Contains predicate on the "scope_id" field.

func ScopeIDContainsFold added in v1.5.0

func ScopeIDContainsFold(v string) predicate.Remediation

ScopeIDContainsFold applies the ContainsFold predicate on the "scope_id" field.

func ScopeIDEQ added in v1.5.0

func ScopeIDEQ(v string) predicate.Remediation

ScopeIDEQ applies the EQ predicate on the "scope_id" field.

func ScopeIDEqualFold added in v1.5.0

func ScopeIDEqualFold(v string) predicate.Remediation

ScopeIDEqualFold applies the EqualFold predicate on the "scope_id" field.

func ScopeIDGT added in v1.5.0

func ScopeIDGT(v string) predicate.Remediation

ScopeIDGT applies the GT predicate on the "scope_id" field.

func ScopeIDGTE added in v1.5.0

func ScopeIDGTE(v string) predicate.Remediation

ScopeIDGTE applies the GTE predicate on the "scope_id" field.

func ScopeIDHasPrefix added in v1.5.0

func ScopeIDHasPrefix(v string) predicate.Remediation

ScopeIDHasPrefix applies the HasPrefix predicate on the "scope_id" field.

func ScopeIDHasSuffix added in v1.5.0

func ScopeIDHasSuffix(v string) predicate.Remediation

ScopeIDHasSuffix applies the HasSuffix predicate on the "scope_id" field.

func ScopeIDIn added in v1.5.0

func ScopeIDIn(vs ...string) predicate.Remediation

ScopeIDIn applies the In predicate on the "scope_id" field.

func ScopeIDIsNil added in v1.5.0

func ScopeIDIsNil() predicate.Remediation

ScopeIDIsNil applies the IsNil predicate on the "scope_id" field.

func ScopeIDLT added in v1.5.0

func ScopeIDLT(v string) predicate.Remediation

ScopeIDLT applies the LT predicate on the "scope_id" field.

func ScopeIDLTE added in v1.5.0

func ScopeIDLTE(v string) predicate.Remediation

ScopeIDLTE applies the LTE predicate on the "scope_id" field.

func ScopeIDNEQ added in v1.5.0

func ScopeIDNEQ(v string) predicate.Remediation

ScopeIDNEQ applies the NEQ predicate on the "scope_id" field.

func ScopeIDNotIn added in v1.5.0

func ScopeIDNotIn(vs ...string) predicate.Remediation

ScopeIDNotIn applies the NotIn predicate on the "scope_id" field.

func ScopeIDNotNil added in v1.5.0

func ScopeIDNotNil() predicate.Remediation

ScopeIDNotNil applies the NotNil predicate on the "scope_id" field.

func ScopeName added in v1.5.0

func ScopeName(v string) predicate.Remediation

ScopeName applies equality check predicate on the "scope_name" field. It's identical to ScopeNameEQ.

func ScopeNameContains added in v1.5.0

func ScopeNameContains(v string) predicate.Remediation

ScopeNameContains applies the Contains predicate on the "scope_name" field.

func ScopeNameContainsFold added in v1.5.0

func ScopeNameContainsFold(v string) predicate.Remediation

ScopeNameContainsFold applies the ContainsFold predicate on the "scope_name" field.

func ScopeNameEQ added in v1.5.0

func ScopeNameEQ(v string) predicate.Remediation

ScopeNameEQ applies the EQ predicate on the "scope_name" field.

func ScopeNameEqualFold added in v1.5.0

func ScopeNameEqualFold(v string) predicate.Remediation

ScopeNameEqualFold applies the EqualFold predicate on the "scope_name" field.

func ScopeNameGT added in v1.5.0

func ScopeNameGT(v string) predicate.Remediation

ScopeNameGT applies the GT predicate on the "scope_name" field.

func ScopeNameGTE added in v1.5.0

func ScopeNameGTE(v string) predicate.Remediation

ScopeNameGTE applies the GTE predicate on the "scope_name" field.

func ScopeNameHasPrefix added in v1.5.0

func ScopeNameHasPrefix(v string) predicate.Remediation

ScopeNameHasPrefix applies the HasPrefix predicate on the "scope_name" field.

func ScopeNameHasSuffix added in v1.5.0

func ScopeNameHasSuffix(v string) predicate.Remediation

ScopeNameHasSuffix applies the HasSuffix predicate on the "scope_name" field.

func ScopeNameIn added in v1.5.0

func ScopeNameIn(vs ...string) predicate.Remediation

ScopeNameIn applies the In predicate on the "scope_name" field.

func ScopeNameIsNil added in v1.5.0

func ScopeNameIsNil() predicate.Remediation

ScopeNameIsNil applies the IsNil predicate on the "scope_name" field.

func ScopeNameLT added in v1.5.0

func ScopeNameLT(v string) predicate.Remediation

ScopeNameLT applies the LT predicate on the "scope_name" field.

func ScopeNameLTE added in v1.5.0

func ScopeNameLTE(v string) predicate.Remediation

ScopeNameLTE applies the LTE predicate on the "scope_name" field.

func ScopeNameNEQ added in v1.5.0

func ScopeNameNEQ(v string) predicate.Remediation

ScopeNameNEQ applies the NEQ predicate on the "scope_name" field.

func ScopeNameNotIn added in v1.5.0

func ScopeNameNotIn(vs ...string) predicate.Remediation

ScopeNameNotIn applies the NotIn predicate on the "scope_name" field.

func ScopeNameNotNil added in v1.5.0

func ScopeNameNotNil() predicate.Remediation

ScopeNameNotNil applies the NotNil predicate on the "scope_name" field.

func Source

func Source(v string) predicate.Remediation

Source applies equality check predicate on the "source" field. It's identical to SourceEQ.

func SourceContains

func SourceContains(v string) predicate.Remediation

SourceContains applies the Contains predicate on the "source" field.

func SourceContainsFold

func SourceContainsFold(v string) predicate.Remediation

SourceContainsFold applies the ContainsFold predicate on the "source" field.

func SourceEQ

func SourceEQ(v string) predicate.Remediation

SourceEQ applies the EQ predicate on the "source" field.

func SourceEqualFold

func SourceEqualFold(v string) predicate.Remediation

SourceEqualFold applies the EqualFold predicate on the "source" field.

func SourceGT

func SourceGT(v string) predicate.Remediation

SourceGT applies the GT predicate on the "source" field.

func SourceGTE

func SourceGTE(v string) predicate.Remediation

SourceGTE applies the GTE predicate on the "source" field.

func SourceHasPrefix

func SourceHasPrefix(v string) predicate.Remediation

SourceHasPrefix applies the HasPrefix predicate on the "source" field.

func SourceHasSuffix

func SourceHasSuffix(v string) predicate.Remediation

SourceHasSuffix applies the HasSuffix predicate on the "source" field.

func SourceIn

func SourceIn(vs ...string) predicate.Remediation

SourceIn applies the In predicate on the "source" field.

func SourceIsNil

func SourceIsNil() predicate.Remediation

SourceIsNil applies the IsNil predicate on the "source" field.

func SourceLT

func SourceLT(v string) predicate.Remediation

SourceLT applies the LT predicate on the "source" field.

func SourceLTE

func SourceLTE(v string) predicate.Remediation

SourceLTE applies the LTE predicate on the "source" field.

func SourceNEQ

func SourceNEQ(v string) predicate.Remediation

SourceNEQ applies the NEQ predicate on the "source" field.

func SourceNotIn

func SourceNotIn(vs ...string) predicate.Remediation

SourceNotIn applies the NotIn predicate on the "source" field.

func SourceNotNil

func SourceNotNil() predicate.Remediation

SourceNotNil applies the NotNil predicate on the "source" field.

func State

func State(v string) predicate.Remediation

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

func StateContains

func StateContains(v string) predicate.Remediation

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

func StateContainsFold

func StateContainsFold(v string) predicate.Remediation

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

func StateEQ

func StateEQ(v string) predicate.Remediation

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

func StateEqualFold

func StateEqualFold(v string) predicate.Remediation

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

func StateGT

func StateGT(v string) predicate.Remediation

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

func StateGTE

func StateGTE(v string) predicate.Remediation

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

func StateHasPrefix

func StateHasPrefix(v string) predicate.Remediation

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

func StateHasSuffix

func StateHasSuffix(v string) predicate.Remediation

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

func StateIn

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

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

func StateIsNil

func StateIsNil() predicate.Remediation

StateIsNil applies the IsNil predicate on the "state" field.

func StateLT

func StateLT(v string) predicate.Remediation

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

func StateLTE

func StateLTE(v string) predicate.Remediation

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

func StateNEQ

func StateNEQ(v string) predicate.Remediation

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

func StateNotIn

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

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

func StateNotNil

func StateNotNil() predicate.Remediation

StateNotNil applies the NotNil predicate on the "state" field.

func Summary

func Summary(v string) predicate.Remediation

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

func SummaryContains

func SummaryContains(v string) predicate.Remediation

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

func SummaryContainsFold

func SummaryContainsFold(v string) predicate.Remediation

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

func SummaryEQ

func SummaryEQ(v string) predicate.Remediation

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

func SummaryEqualFold

func SummaryEqualFold(v string) predicate.Remediation

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

func SummaryGT

func SummaryGT(v string) predicate.Remediation

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

func SummaryGTE

func SummaryGTE(v string) predicate.Remediation

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

func SummaryHasPrefix

func SummaryHasPrefix(v string) predicate.Remediation

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

func SummaryHasSuffix

func SummaryHasSuffix(v string) predicate.Remediation

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

func SummaryIn

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

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

func SummaryIsNil

func SummaryIsNil() predicate.Remediation

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

func SummaryLT

func SummaryLT(v string) predicate.Remediation

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

func SummaryLTE

func SummaryLTE(v string) predicate.Remediation

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

func SummaryNEQ

func SummaryNEQ(v string) predicate.Remediation

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

func SummaryNotIn

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

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

func SummaryNotNil

func SummaryNotNil() predicate.Remediation

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

func SystemInternalID

func SystemInternalID(v string) predicate.Remediation

SystemInternalID applies equality check predicate on the "system_internal_id" field. It's identical to SystemInternalIDEQ.

func SystemInternalIDContains

func SystemInternalIDContains(v string) predicate.Remediation

SystemInternalIDContains applies the Contains predicate on the "system_internal_id" field.

func SystemInternalIDContainsFold

func SystemInternalIDContainsFold(v string) predicate.Remediation

SystemInternalIDContainsFold applies the ContainsFold predicate on the "system_internal_id" field.

func SystemInternalIDEQ

func SystemInternalIDEQ(v string) predicate.Remediation

SystemInternalIDEQ applies the EQ predicate on the "system_internal_id" field.

func SystemInternalIDEqualFold

func SystemInternalIDEqualFold(v string) predicate.Remediation

SystemInternalIDEqualFold applies the EqualFold predicate on the "system_internal_id" field.

func SystemInternalIDGT

func SystemInternalIDGT(v string) predicate.Remediation

SystemInternalIDGT applies the GT predicate on the "system_internal_id" field.

func SystemInternalIDGTE

func SystemInternalIDGTE(v string) predicate.Remediation

SystemInternalIDGTE applies the GTE predicate on the "system_internal_id" field.

func SystemInternalIDHasPrefix

func SystemInternalIDHasPrefix(v string) predicate.Remediation

SystemInternalIDHasPrefix applies the HasPrefix predicate on the "system_internal_id" field.

func SystemInternalIDHasSuffix

func SystemInternalIDHasSuffix(v string) predicate.Remediation

SystemInternalIDHasSuffix applies the HasSuffix predicate on the "system_internal_id" field.

func SystemInternalIDIn

func SystemInternalIDIn(vs ...string) predicate.Remediation

SystemInternalIDIn applies the In predicate on the "system_internal_id" field.

func SystemInternalIDIsNil

func SystemInternalIDIsNil() predicate.Remediation

SystemInternalIDIsNil applies the IsNil predicate on the "system_internal_id" field.

func SystemInternalIDLT

func SystemInternalIDLT(v string) predicate.Remediation

SystemInternalIDLT applies the LT predicate on the "system_internal_id" field.

func SystemInternalIDLTE

func SystemInternalIDLTE(v string) predicate.Remediation

SystemInternalIDLTE applies the LTE predicate on the "system_internal_id" field.

func SystemInternalIDNEQ

func SystemInternalIDNEQ(v string) predicate.Remediation

SystemInternalIDNEQ applies the NEQ predicate on the "system_internal_id" field.

func SystemInternalIDNotIn

func SystemInternalIDNotIn(vs ...string) predicate.Remediation

SystemInternalIDNotIn applies the NotIn predicate on the "system_internal_id" field.

func SystemInternalIDNotNil

func SystemInternalIDNotNil() predicate.Remediation

SystemInternalIDNotNil applies the NotNil predicate on the "system_internal_id" field.

func SystemOwned

func SystemOwned(v bool) predicate.Remediation

SystemOwned applies equality check predicate on the "system_owned" field. It's identical to SystemOwnedEQ.

func SystemOwnedEQ

func SystemOwnedEQ(v bool) predicate.Remediation

SystemOwnedEQ applies the EQ predicate on the "system_owned" field.

func SystemOwnedIsNil

func SystemOwnedIsNil() predicate.Remediation

SystemOwnedIsNil applies the IsNil predicate on the "system_owned" field.

func SystemOwnedNEQ

func SystemOwnedNEQ(v bool) predicate.Remediation

SystemOwnedNEQ applies the NEQ predicate on the "system_owned" field.

func SystemOwnedNotNil

func SystemOwnedNotNil() predicate.Remediation

SystemOwnedNotNil applies the NotNil predicate on the "system_owned" field.

func TagsIsNil

func TagsIsNil() predicate.Remediation

TagsIsNil applies the IsNil predicate on the "tags" field.

func TagsNotNil

func TagsNotNil() predicate.Remediation

TagsNotNil applies the NotNil predicate on the "tags" field.

func TicketReference

func TicketReference(v string) predicate.Remediation

TicketReference applies equality check predicate on the "ticket_reference" field. It's identical to TicketReferenceEQ.

func TicketReferenceContains

func TicketReferenceContains(v string) predicate.Remediation

TicketReferenceContains applies the Contains predicate on the "ticket_reference" field.

func TicketReferenceContainsFold

func TicketReferenceContainsFold(v string) predicate.Remediation

TicketReferenceContainsFold applies the ContainsFold predicate on the "ticket_reference" field.

func TicketReferenceEQ

func TicketReferenceEQ(v string) predicate.Remediation

TicketReferenceEQ applies the EQ predicate on the "ticket_reference" field.

func TicketReferenceEqualFold

func TicketReferenceEqualFold(v string) predicate.Remediation

TicketReferenceEqualFold applies the EqualFold predicate on the "ticket_reference" field.

func TicketReferenceGT

func TicketReferenceGT(v string) predicate.Remediation

TicketReferenceGT applies the GT predicate on the "ticket_reference" field.

func TicketReferenceGTE

func TicketReferenceGTE(v string) predicate.Remediation

TicketReferenceGTE applies the GTE predicate on the "ticket_reference" field.

func TicketReferenceHasPrefix

func TicketReferenceHasPrefix(v string) predicate.Remediation

TicketReferenceHasPrefix applies the HasPrefix predicate on the "ticket_reference" field.

func TicketReferenceHasSuffix

func TicketReferenceHasSuffix(v string) predicate.Remediation

TicketReferenceHasSuffix applies the HasSuffix predicate on the "ticket_reference" field.

func TicketReferenceIn

func TicketReferenceIn(vs ...string) predicate.Remediation

TicketReferenceIn applies the In predicate on the "ticket_reference" field.

func TicketReferenceIsNil

func TicketReferenceIsNil() predicate.Remediation

TicketReferenceIsNil applies the IsNil predicate on the "ticket_reference" field.

func TicketReferenceLT

func TicketReferenceLT(v string) predicate.Remediation

TicketReferenceLT applies the LT predicate on the "ticket_reference" field.

func TicketReferenceLTE

func TicketReferenceLTE(v string) predicate.Remediation

TicketReferenceLTE applies the LTE predicate on the "ticket_reference" field.

func TicketReferenceNEQ

func TicketReferenceNEQ(v string) predicate.Remediation

TicketReferenceNEQ applies the NEQ predicate on the "ticket_reference" field.

func TicketReferenceNotIn

func TicketReferenceNotIn(vs ...string) predicate.Remediation

TicketReferenceNotIn applies the NotIn predicate on the "ticket_reference" field.

func TicketReferenceNotNil

func TicketReferenceNotNil() predicate.Remediation

TicketReferenceNotNil applies the NotNil predicate on the "ticket_reference" field.

func Title

func Title(v string) predicate.Remediation

Title applies equality check predicate on the "title" field. It's identical to TitleEQ.

func TitleContains

func TitleContains(v string) predicate.Remediation

TitleContains applies the Contains predicate on the "title" field.

func TitleContainsFold

func TitleContainsFold(v string) predicate.Remediation

TitleContainsFold applies the ContainsFold predicate on the "title" field.

func TitleEQ

func TitleEQ(v string) predicate.Remediation

TitleEQ applies the EQ predicate on the "title" field.

func TitleEqualFold

func TitleEqualFold(v string) predicate.Remediation

TitleEqualFold applies the EqualFold predicate on the "title" field.

func TitleGT

func TitleGT(v string) predicate.Remediation

TitleGT applies the GT predicate on the "title" field.

func TitleGTE

func TitleGTE(v string) predicate.Remediation

TitleGTE applies the GTE predicate on the "title" field.

func TitleHasPrefix

func TitleHasPrefix(v string) predicate.Remediation

TitleHasPrefix applies the HasPrefix predicate on the "title" field.

func TitleHasSuffix

func TitleHasSuffix(v string) predicate.Remediation

TitleHasSuffix applies the HasSuffix predicate on the "title" field.

func TitleIn

func TitleIn(vs ...string) predicate.Remediation

TitleIn applies the In predicate on the "title" field.

func TitleIsNil

func TitleIsNil() predicate.Remediation

TitleIsNil applies the IsNil predicate on the "title" field.

func TitleLT

func TitleLT(v string) predicate.Remediation

TitleLT applies the LT predicate on the "title" field.

func TitleLTE

func TitleLTE(v string) predicate.Remediation

TitleLTE applies the LTE predicate on the "title" field.

func TitleNEQ

func TitleNEQ(v string) predicate.Remediation

TitleNEQ applies the NEQ predicate on the "title" field.

func TitleNotIn

func TitleNotIn(vs ...string) predicate.Remediation

TitleNotIn applies the NotIn predicate on the "title" field.

func TitleNotNil

func TitleNotNil() predicate.Remediation

TitleNotNil applies the NotNil predicate on the "title" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Remediation

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Remediation

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Remediation

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Remediation

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.Remediation

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Remediation

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Remediation

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Remediation

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.Remediation

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

func UpdatedBy

func UpdatedBy(v string) predicate.Remediation

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.Remediation

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.Remediation

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.Remediation

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.Remediation

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.Remediation

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.Remediation

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.Remediation

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.Remediation

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.Remediation

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.Remediation

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.Remediation

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.Remediation

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.Remediation

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

func ByActionPlans

func ByActionPlans(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByActionPlans orders the results by action_plans terms.

func ByActionPlansCount

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

ByActionPlansCount orders the results by action_plans count.

func ByAssets

func ByAssets(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByAssets orders the results by assets terms.

func ByAssetsCount

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

ByAssetsCount orders the results by assets count.

func ByBlockedGroups

func ByBlockedGroups(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByBlockedGroups orders the results by blocked_groups terms.

func ByBlockedGroupsCount

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

ByBlockedGroupsCount orders the results by blocked_groups count.

func ByComments

func ByComments(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByComments orders the results by comments terms.

func ByCommentsCount

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

ByCommentsCount orders the results by comments count.

func ByCompletedAt

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

ByCompletedAt orders the results by the completed_at field.

func ByControls

func ByControls(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByControls orders the results by controls terms.

func ByControlsCount

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

ByControlsCount orders the results by controls count.

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 ByDisplayID

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

ByDisplayID orders the results by the display_id field.

func ByDueAt

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

ByDueAt orders the results by the due_at field.

func ByEditors

func ByEditors(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByEditors orders the results by editors terms.

func ByEditorsCount

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

ByEditorsCount orders the results by editors count.

func ByEntities

func ByEntities(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByEntities orders the results by entities terms.

func ByEntitiesCount

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

ByEntitiesCount orders the results by entities count.

func ByEnvironmentField added in v1.5.0

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

ByEnvironmentField orders the results by environment field.

func ByEnvironmentID added in v1.5.0

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

ByEnvironmentID orders the results by the environment_id field.

func ByEnvironmentName added in v1.5.0

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

ByEnvironmentName orders the results by the environment_name field.

func ByError

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

ByError orders the results by the error field.

func ByExplanation

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

ByExplanation orders the results by the explanation field.

func ByExternalID

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

ByExternalID orders the results by the external_id field.

func ByExternalOwnerID

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

ByExternalOwnerID orders the results by the external_owner_id field.

func ByExternalURI

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

ByExternalURI orders the results by the external_uri field.

func ByFiles

func ByFiles(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByFiles orders the results by files terms.

func ByFilesCount

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

ByFilesCount orders the results by files count.

func ByFindings

func ByFindings(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByFindings orders the results by findings terms.

func ByFindingsCount

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

ByFindingsCount orders the results by findings count.

func ByID

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

ByID orders the results by the id field.

func ByInstructions

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

ByInstructions orders the results by the instructions field.

func ByIntegrations

func ByIntegrations(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByIntegrations orders the results by integrations terms.

func ByIntegrationsCount

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

ByIntegrationsCount orders the results by integrations count.

func ByIntent

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

ByIntent orders the results by the intent field.

func ByInternalNotes

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

ByInternalNotes orders the results by the internal_notes 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 ByOwnerReference

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

ByOwnerReference orders the results by the owner_reference field.

func ByPrGeneratedAt

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

ByPrGeneratedAt orders the results by the pr_generated_at field.

func ByPrograms

func ByPrograms(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByPrograms orders the results by programs terms.

func ByProgramsCount

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

ByProgramsCount orders the results by programs count.

func ByPullRequestURI

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

ByPullRequestURI orders the results by the pull_request_uri field.

func ByRepositoryURI

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

ByRepositoryURI orders the results by the repository_uri field.

func ByReviews

func ByReviews(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByReviews orders the results by reviews terms.

func ByReviewsCount

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

ByReviewsCount orders the results by reviews count.

func ByRisks

func ByRisks(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByRisks orders the results by risks terms.

func ByRisksCount

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

ByRisksCount orders the results by risks count.

func ByScans added in v1.5.0

func ByScans(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByScans orders the results by scans terms.

func ByScansCount added in v1.5.0

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

ByScansCount orders the results by scans count.

func ByScopeField added in v1.5.0

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

ByScopeField orders the results by scope field.

func ByScopeID added in v1.5.0

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

ByScopeID orders the results by the scope_id field.

func ByScopeName added in v1.5.0

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

ByScopeName orders the results by the scope_name field.

func BySource

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

BySource orders the results by the source field.

func ByState

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

ByState orders the results by the state field.

func BySubcontrols

func BySubcontrols(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

BySubcontrols orders the results by subcontrols terms.

func BySubcontrolsCount

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

BySubcontrolsCount orders the results by subcontrols count.

func BySummary

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

BySummary orders the results by the summary field.

func BySystemInternalID

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

BySystemInternalID orders the results by the system_internal_id field.

func BySystemOwned

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

BySystemOwned orders the results by the system_owned field.

func ByTasks

func ByTasks(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByTasks orders the results by tasks terms.

func ByTasksCount

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

ByTasksCount orders the results by tasks count.

func ByTicketReference

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

ByTicketReference orders the results by the ticket_reference field.

func ByTitle

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

ByTitle orders the results by the title 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.

func ByViewers

func ByViewers(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByViewers orders the results by viewers terms.

func ByViewersCount

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

ByViewersCount orders the results by viewers count.

func ByVulnerabilities

func ByVulnerabilities(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByVulnerabilities orders the results by vulnerabilities terms.

func ByVulnerabilitiesCount

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

ByVulnerabilitiesCount orders the results by vulnerabilities count.

Jump to

Keyboard shortcuts

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