class

PlaceOS::Model::AiAgentRun

Inherits PlaceOS::Model::Timestamps < PlaceOS::Model::Scope < PlaceOS::Model::Associations < PlaceOS::Model::ModelWithAutoKey < Neuroplastic < PgORM::Base < PgORM::Validators < PgORM::Table < PgORM::Persistence < PgORM::Associations < ActiveModel::Callbacks < ActiveModel::Validation < ActiveModel::Model < DB::Mappable < DB::Serializable < YAML::Serializable < JSON::Serializable < Reference < Object

Constants

CALLBACKS = { before_save: [] of Nil, after_save: [] of Nil, before_create: [do self.created_at = self.updated_at = Time.utc end] of Nil, after_create: [] of Nil, before_update: [do self.updated_at = Time.utc end] of Nil, after_update: [] of Nil, before_destroy: [] of Nil, after_destroy: [] of Nil, }
Log = ::Log.for(self)
PRIMARY_KEY_TYPES = {:id => (Int64 | Nil)} of Nil => Nil

macro level key => type

PRIMARY_KEYS = [{:id}]

Constructors

from_json(string_or_io : String | IO, trusted : Bool = false) : self
from_json(string_or_io : String | IO, root : String, trusted : Bool = false) : self

Deserializes the given JSON in string_or_io into an instance of self, assuming the JSON consists of an JSON object with key root, and whose value is the value to deserialize. Will not deserialise from fields with mass_assign: false

class User < ActiveModel::Model
  attribute name : String
  attribute google_id : UUID, mass_assign: false
end

User.from_json(%({"main": {"name": "Jason", "google_id": "f6f70bfb-c882-446d-8758-7ce47db39620"}}), root: "main") # => #<User:0x103131b20 @name="Jason">
from_trusted_json(string_or_io : String | IO, root : String) : self
from_trusted_json(string_or_io : String | IO) : self

Serialize from a trusted JSON source

from_trusted_yaml(string_or_io : String | IO) : self

Serialize from a trusted YAML source

from_yaml(string_or_io : String | IO, trusted : Bool = false) : self
new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
Source
new(pull : JSON::PullParser)
Source
new(rs : DB::ResultSet)
new(incident_id : String | Nil | ActiveModel::Model::None = ::ActiveModel::Model::None.new, correlation_key : String | ActiveModel::Model::None = ::ActiveModel::Model::None.new, classification : String | ActiveModel::Model::None = ::ActiveModel::Model::None.new, confidence : Float64 | ActiveModel::Model::None = ::ActiveModel::Model::None.new, plan_json : JSON::Any | Nil | ActiveModel::Model::None = ::ActiveModel::Model::None.new, investigation_json : JSON::Any | ActiveModel::Model::None = ::ActiveModel::Model::None.new, decision_json : JSON::Any | Nil | ActiveModel::Model::None = ::ActiveModel::Model::None.new, remediation_proposal_json : JSON::Any | Nil | ActiveModel::Model::None = ::ActiveModel::Model::None.new, id : Int64 | Nil | ActiveModel::Model::None = ::ActiveModel::Model::None.new, created_at : Time | ActiveModel::Model::None = ::ActiveModel::Model::None.new, updated_at : Time | ActiveModel::Model::None = ::ActiveModel::Model::None.new)
new(params : HTTP::Params | Hash(String, String) | Tuple(String, String))

Initialize PlaceOS::Model::AiAgentRun from HTTP::Params.

Class methods

attributes

Returns all attribute keys.

by_incident_id(id)

Look up instances of this model dependent on the foreign key

Source
changes(id : Int64 | Nil | Nil = nil) : ChangeFeed

Changefeed at row (if id passed) or whole table level. Returns a ChangeFeed instance which can be used to invoke async callbacks via on or use blocking Iterator via each method.

elastic
from_rs(__temp_1572 : DB::ResultSet)
on_error(err : Exception | IO::Error)
primary_key

Base class for all models which have auto-generated bigint as pk and doesn't require string based auto generated pk

Source
table_name

Instance methods

__ai_incident
__ai_incident=(__ai_incident : AiIncident | Nil)
after_create

Base class for all models which have auto-generated bigint as pk and doesn't require string based auto generated pk

after_destroy

Base class for all models which have auto-generated bigint as pk and doesn't require string based auto generated pk

after_initialize(trusted : Bool)
after_save

Base class for all models which have auto-generated bigint as pk and doesn't require string based auto generated pk

after_update

Base class for all models which have auto-generated bigint as pk and doesn't require string based auto generated pk

ai_incident

Retrieves the parent relationship

Source
ai_incident!
Source
ai_incident=(parent : AiIncident)

Sets the parent relationship

Source
apply_defaults

Generate code to apply default values

assign_attributes(incident_id : String | Nil | Missing = Missing, correlation_key : String | Missing = Missing, classification : String | Missing = Missing, confidence : Float64 | Missing = Missing, plan_json : JSON::Any | Nil | Missing = Missing, investigation_json : JSON::Any | Missing = Missing, decision_json : JSON::Any | Nil | Missing = Missing, remediation_proposal_json : JSON::Any | Nil | Missing = Missing, id : Int64 | Nil | Missing = Missing, created_at : Time | Missing = Missing, updated_at : Time | Missing = Missing)

Assign to multiple attributes.

assign_attributes(params : HTTP::Params | Hash(String, String) | Tuple(String, String))

Assign to multiple attributes via HTTP::Params.

assign_attributes(model : PlaceOS::Model::AiAgentRun)

Assign to multiple attributes from a model object

assign_attributes_from_json(json, root : String)
assign_attributes_from_json(json)
assign_attributes_from_trusted_json(json, root : String)
assign_attributes_from_trusted_json(json)

Assign each field from JSON if field exists in JSON and has changed in model

assign_attributes_from_trusted_yaml(yaml)
assign_attributes_from_yaml(yaml)

Uses the YAML parser as JSON is valid YAML

attributes

Returns a Hash of all attribute values

attributes_tuple

Returns a NamedTuple of all attribute values.

before_create

Base class for all models which have auto-generated bigint as pk and doesn't require string based auto generated pk

before_destroy

Base class for all models which have auto-generated bigint as pk and doesn't require string based auto generated pk

before_save

Base class for all models which have auto-generated bigint as pk and doesn't require string based auto generated pk

before_update

Base class for all models which have auto-generated bigint as pk and doesn't require string based auto generated pk

changed?

Check if any attributes have changed.

changed_attributes

Returns a Hash with all changed attributes.

changed_json(io : IO) : Nil

Serialize the set of changed attributes to JSON.

changed_json

Serialize the set of changed attributes to JSON.

changed_persist_attributes
changed_yaml(io : IO) : Nil

Serialize the set of changed attributes to YAML.

changed_yaml

Serialize the set of changed attributes to YAML.

classification

classification getter

classification=(value : String)

classification setter

classification?

NOTE: use getter / getter! (not property / property!) so that the setter defined later in __create_initializer__ is the only setter on the field. Crystal's overload resolution silently fails to replace a property-defined setter with one of identical signature for generic types (e.g. Set(String)?, Array(String)?, String | Array(String)), although it does work for non-generic ones like String?. Defining the setter only once via __create_initializer__ ensures change tracking, sanitization, and custom setter blocks run uniformly across all types.

classification_assigned?
classification_change

Returns a Tuple of the previous and the current value of an instance variable if it has changed

classification_changed?
classification_default

classification's default value

Source
classification_present?
classification_removed?
classification_was
classification_will_change!

Include classification in the set of changed attributes, whether it has changed or not.

clear_changes_information

Reset changes for all attributes.

confidence

confidence getter

confidence=(value : Float64)

confidence setter

confidence?

NOTE: use getter / getter! (not property / property!) so that the setter defined later in __create_initializer__ is the only setter on the field. Crystal's overload resolution silently fails to replace a property-defined setter with one of identical signature for generic types (e.g. Set(String)?, Array(String)?, String | Array(String)), although it does work for non-generic ones like String?. Defining the setter only once via __create_initializer__ ensures change tracking, sanitization, and custom setter blocks run uniformly across all types.

confidence_assigned?
confidence_change

Returns a Tuple of the previous and the current value of an instance variable if it has changed

confidence_changed?
confidence_default

confidence's default value

Source
confidence_present?
confidence_removed?
confidence_was
confidence_will_change!

Include confidence in the set of changed attributes, whether it has changed or not.

correlation_key

correlation_key getter

correlation_key=(value : String)

correlation_key setter

correlation_key?

NOTE: use getter / getter! (not property / property!) so that the setter defined later in __create_initializer__ is the only setter on the field. Crystal's overload resolution silently fails to replace a property-defined setter with one of identical signature for generic types (e.g. Set(String)?, Array(String)?, String | Array(String)), although it does work for non-generic ones like String?. Defining the setter only once via __create_initializer__ ensures change tracking, sanitization, and custom setter blocks run uniformly across all types.

correlation_key_assigned?
correlation_key_change

Returns a Tuple of the previous and the current value of an instance variable if it has changed

correlation_key_changed?
correlation_key_default

correlation_key's default value

Source
correlation_key_present?
correlation_key_removed?
correlation_key_was
correlation_key_will_change!

Include correlation_key in the set of changed attributes, whether it has changed or not.

created_at

created_at getter

created_at=(value : Time)

created_at setter

created_at?

NOTE: use getter / getter! (not property / property!) so that the setter defined later in __create_initializer__ is the only setter on the field. Crystal's overload resolution silently fails to replace a property-defined setter with one of identical signature for generic types (e.g. Set(String)?, Array(String)?, String | Array(String)), although it does work for non-generic ones like String?. Defining the setter only once via __create_initializer__ ensures change tracking, sanitization, and custom setter blocks run uniformly across all types.

created_at_assigned?
created_at_change

Returns a Tuple of the previous and the current value of an instance variable if it has changed

created_at_changed?
created_at_default

created_at's default value

created_at_present?
created_at_removed?
created_at_was
created_at_will_change!

Include created_at in the set of changed attributes, whether it has changed or not.

decision_json

decision_json getter

decision_json=(value : JSON::Any | Nil)

decision_json setter

decision_json_assigned?
decision_json_change

Returns a Tuple of the previous and the current value of an instance variable if it has changed

decision_json_changed?
decision_json_default

decision_json's default value

Source
decision_json_present?
decision_json_removed?
decision_json_was
decision_json_will_change!

Include decision_json in the set of changed attributes, whether it has changed or not.

id

id getter

id=(value : Int64 | Nil)

id setter

id?
id_assigned?
id_change

Returns a Tuple of the previous and the current value of an instance variable if it has changed

id_changed?
id_default

id's default value

id_present?
id_removed?
id_was
id_will_change!

Include id in the set of changed attributes, whether it has changed or not.

incident_id

incident_id getter

incident_id=(value : String | Nil)

Setters incident_id setter

incident_id?

NOTE: use getter / getter! (not property / property!) so that the setter defined later in __create_initializer__ is the only setter on the field. Crystal's overload resolution silently fails to replace a property-defined setter with one of identical signature for generic types (e.g. Set(String)?, Array(String)?, String | Array(String)), although it does work for non-generic ones like String?. Defining the setter only once via __create_initializer__ ensures change tracking, sanitization, and custom setter blocks run uniformly across all types.

incident_id_assigned?
incident_id_change

Returns a Tuple of the previous and the current value of an instance variable if it has changed

incident_id_changed?
incident_id_default

incident_id's default value

incident_id_present?
incident_id_removed?
incident_id_was
incident_id_will_change!

Include incident_id in the set of changed attributes, whether it has changed or not.

investigation_json

investigation_json getter

investigation_json=(value : JSON::Any)

investigation_json setter

investigation_json?

NOTE: use getter / getter! (not property / property!) so that the setter defined later in __create_initializer__ is the only setter on the field. Crystal's overload resolution silently fails to replace a property-defined setter with one of identical signature for generic types (e.g. Set(String)?, Array(String)?, String | Array(String)), although it does work for non-generic ones like String?. Defining the setter only once via __create_initializer__ ensures change tracking, sanitization, and custom setter blocks run uniformly across all types.

investigation_json_assigned?
investigation_json_change

Returns a Tuple of the previous and the current value of an instance variable if it has changed

investigation_json_changed?
investigation_json_default

investigation_json's default value

Source
investigation_json_present?
investigation_json_removed?
investigation_json_was
investigation_json_will_change!

Include investigation_json in the set of changed attributes, whether it has changed or not.

invoke_props

Base class for all models which have auto-generated bigint as pk and doesn't require string based auto generated pk

persistent_attributes

Returns a Hash of all attributes that can be persisted.

plan_json

plan_json getter

plan_json=(value : JSON::Any | Nil)

plan_json setter

plan_json_assigned?
plan_json_change

Returns a Tuple of the previous and the current value of an instance variable if it has changed

plan_json_changed?
plan_json_default

plan_json's default value

Source
plan_json_present?
plan_json_removed?
plan_json_was
plan_json_will_change!

Include plan_json in the set of changed attributes, whether it has changed or not.

primary_key

Base class for all models which have auto-generated bigint as pk and doesn't require string based auto generated pk

Source
primary_key_hash
remediation_proposal_json

remediation_proposal_json getter

remediation_proposal_json=(value : JSON::Any | Nil)

remediation_proposal_json setter

remediation_proposal_json_assigned?
remediation_proposal_json_change

Returns a Tuple of the previous and the current value of an instance variable if it has changed

remediation_proposal_json_changed?
remediation_proposal_json_default

remediation_proposal_json's default value

Source
remediation_proposal_json_present?
remediation_proposal_json_removed?
remediation_proposal_json_was
remediation_proposal_json_will_change!

Include remediation_proposal_json in the set of changed attributes, whether it has changed or not.

reset_associations
Source
restore_attributes

Reset each attribute to their previous values and clears all changes.

table_name
updated_at

updated_at getter

updated_at=(value : Time)

updated_at setter

updated_at?

NOTE: use getter / getter! (not property / property!) so that the setter defined later in __create_initializer__ is the only setter on the field. Crystal's overload resolution silently fails to replace a property-defined setter with one of identical signature for generic types (e.g. Set(String)?, Array(String)?, String | Array(String)), although it does work for non-generic ones like String?. Defining the setter only once via __create_initializer__ ensures change tracking, sanitization, and custom setter blocks run uniformly across all types.

updated_at_assigned?
updated_at_change

Returns a Tuple of the previous and the current value of an instance variable if it has changed

updated_at_changed?
updated_at_default

updated_at's default value

updated_at_present?
updated_at_removed?
updated_at_was
updated_at_will_change!

Include updated_at in the set of changed attributes, whether it has changed or not.

validate_nilability

Validate that all non-nillable fields have values.

Macros

scope(name, &block)

Nested types