Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52651,6 +52651,9 @@ components:
modifiedAt:
description: Last modification time of the job.
type: string
signalOutput:
description: Whether the job outputs signals.
type: boolean
type: object
ThreatHuntingJobResponseData:
description: Threat hunting job response data.
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2025-10-24T14:24:01.707Z
2025-11-11T21:36:52.314Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2025-10-24T14:24:02.188Z
2025-11-11T21:36:57.169Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ class ThreatHuntingJobResponseAttributes
# Last modification time of the job.
attr_accessor :modified_at

# Whether the job outputs signals.
attr_accessor :signal_output

attr_accessor :additional_properties

# Attribute mapping from ruby-style variable name to JSON key.
Expand All @@ -58,7 +61,8 @@ def self.attribute_map
:'job_definition' => :'jobDefinition',
:'job_name' => :'jobName',
:'job_status' => :'jobStatus',
:'modified_at' => :'modifiedAt'
:'modified_at' => :'modifiedAt',
:'signal_output' => :'signalOutput'
}
end

Expand All @@ -73,7 +77,8 @@ def self.openapi_types
:'job_definition' => :'JobDefinition',
:'job_name' => :'String',
:'job_status' => :'String',
:'modified_at' => :'String'
:'modified_at' => :'String',
:'signal_output' => :'Boolean'
}
end

Expand Down Expand Up @@ -126,6 +131,10 @@ def initialize(attributes = {})
if attributes.key?(:'modified_at')
self.modified_at = attributes[:'modified_at']
end

if attributes.key?(:'signal_output')
self.signal_output = attributes[:'signal_output']
end
end

# Returns the object in the form of hash, with additionalProperties support.
Expand Down Expand Up @@ -162,14 +171,15 @@ def ==(o)
job_name == o.job_name &&
job_status == o.job_status &&
modified_at == o.modified_at &&
signal_output == o.signal_output &&
additional_properties == o.additional_properties
end

# Calculates hash code according to all attributes.
# @return [Integer] Hash code
# @!visibility private
def hash
[created_at, created_by_handle, created_by_name, created_from_rule_id, job_definition, job_name, job_status, modified_at, additional_properties].hash
[created_at, created_by_handle, created_by_name, created_from_rule_id, job_definition, job_name, job_status, modified_at, signal_output, additional_properties].hash
end
end
end
Loading