Skip to content

Commit fc859e2

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 266da8c of spec repo (#2777)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 5a87401 commit fc859e2

File tree

6 files changed

+34
-23
lines changed

6 files changed

+34
-23
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52651,6 +52651,9 @@ components:
5265152651
modifiedAt:
5265252652
description: Last modification time of the job.
5265352653
type: string
52654+
signalOutput:
52655+
description: Whether the job outputs signals.
52656+
type: boolean
5265452657
type: object
5265552658
ThreatHuntingJobResponseData:
5265652659
description: Threat hunting job response data.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-10-24T14:24:01.707Z
1+
2025-11-11T21:36:52.314Z

cassettes/features/v2/security_monitoring/Get-a-job-s-details-returns-OK-response.yml

Lines changed: 8 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-10-24T14:24:02.188Z
1+
2025-11-11T21:36:57.169Z

cassettes/features/v2/security_monitoring/List-historical-jobs-returns-OK-response.yml

Lines changed: 8 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/datadog_api_client/v2/models/threat_hunting_job_response_attributes.rb

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ class ThreatHuntingJobResponseAttributes
4545
# Last modification time of the job.
4646
attr_accessor :modified_at
4747

48+
# Whether the job outputs signals.
49+
attr_accessor :signal_output
50+
4851
attr_accessor :additional_properties
4952

5053
# Attribute mapping from ruby-style variable name to JSON key.
@@ -58,7 +61,8 @@ def self.attribute_map
5861
:'job_definition' => :'jobDefinition',
5962
:'job_name' => :'jobName',
6063
:'job_status' => :'jobStatus',
61-
:'modified_at' => :'modifiedAt'
64+
:'modified_at' => :'modifiedAt',
65+
:'signal_output' => :'signalOutput'
6266
}
6367
end
6468

@@ -73,7 +77,8 @@ def self.openapi_types
7377
:'job_definition' => :'JobDefinition',
7478
:'job_name' => :'String',
7579
:'job_status' => :'String',
76-
:'modified_at' => :'String'
80+
:'modified_at' => :'String',
81+
:'signal_output' => :'Boolean'
7782
}
7883
end
7984

@@ -126,6 +131,10 @@ def initialize(attributes = {})
126131
if attributes.key?(:'modified_at')
127132
self.modified_at = attributes[:'modified_at']
128133
end
134+
135+
if attributes.key?(:'signal_output')
136+
self.signal_output = attributes[:'signal_output']
137+
end
129138
end
130139

131140
# Returns the object in the form of hash, with additionalProperties support.
@@ -162,14 +171,15 @@ def ==(o)
162171
job_name == o.job_name &&
163172
job_status == o.job_status &&
164173
modified_at == o.modified_at &&
174+
signal_output == o.signal_output &&
165175
additional_properties == o.additional_properties
166176
end
167177

168178
# Calculates hash code according to all attributes.
169179
# @return [Integer] Hash code
170180
# @!visibility private
171181
def hash
172-
[created_at, created_by_handle, created_by_name, created_from_rule_id, job_definition, job_name, job_status, modified_at, additional_properties].hash
182+
[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
173183
end
174184
end
175185
end

0 commit comments

Comments
 (0)