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
4 changes: 2 additions & 2 deletions .generated-info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"spec_repo_commit": "df31e44",
"generated": "2025-07-28 19:54:26.502"
"spec_repo_commit": "dcf594e",
"generated": "2025-07-31 09:55:36.354"
}
19 changes: 13 additions & 6 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56012,12 +56012,13 @@ paths:
following fields are available for findings:\n- `external_id`: The resource
external ID related to the finding.\n- `description`: The description and
remediation steps for the finding.\n- `datadog_link`: The Datadog relative
link for the finding.\n\n### Response\n\nThe response includes an array of
finding objects, pagination metadata, and a count of items that match the
query.\n\nEach finding object contains the following:\n\n- The finding ID
that can be used in a `GetFinding` request to retrieve the full finding details.\n-
Core attributes, including status, evaluation, high-level resource details,
muted state, and rule details.\n- `evaluation_changed_at` and `resource_discovery_date`
link for the finding.\n- `ip_addresses`: The list of private IP addresses
for the resource related to the finding.\n\n### Response\n\nThe response includes
an array of finding objects, pagination metadata, and a count of items that
match the query.\n\nEach finding object contains the following:\n\n- The finding
ID that can be used in a `GetFinding` request to retrieve the full finding
details.\n- Core attributes, including status, evaluation, high-level resource
details, muted state, and rule details.\n- `evaluation_changed_at` and `resource_discovery_date`
time stamps.\n- An array of associated tags.\n"
operationId: ListFindings
parameters:
Expand Down Expand Up @@ -56088,6 +56089,12 @@ paths:
required: false
schema:
type: string
- description: Return only findings for the specified resource id.
in: query
name: filter[@resource_id]
required: false
schema:
type: string
- description: Return findings that were found on a specified date (Unix ms)
or date range (using comparison operators).
example: '>=1678721573794'
Expand Down
1 change: 1 addition & 0 deletions features/scenarios_model_mapping.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1213,6 +1213,7 @@
"filter_rule_id" => "String",
"filter_rule_name" => "String",
"filter_resource_type" => "String",
"filter_resource_id" => "String",
"filter_discovery_timestamp" => "String",
"filter_evaluation" => "FindingEvaluation",
"filter_status" => "FindingStatus",
Expand Down
3 changes: 3 additions & 0 deletions lib/datadog_api_client/v2/api/security_monitoring_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2491,6 +2491,7 @@ def list_findings(opts = {})
# - `external_id`: The resource external ID related to the finding.
# - `description`: The description and remediation steps for the finding.
# - `datadog_link`: The Datadog relative link for the finding.
# - `ip_addresses`: The list of private IP addresses for the resource related to the finding.
#
# ### Response
#
Expand All @@ -2514,6 +2515,7 @@ def list_findings(opts = {})
# @option opts [String] :filter_rule_id Return findings for the specified rule ID.
# @option opts [String] :filter_rule_name Return findings for the specified rule.
# @option opts [String] :filter_resource_type Return only findings for the specified resource type.
# @option opts [String] :filter_resource_id Return only findings for the specified resource id.
# @option opts [String] :filter_discovery_timestamp Return findings that were found on a specified date (Unix ms) or date range (using comparison operators).
# @option opts [FindingEvaluation] :filter_evaluation Return only `pass` or `fail` findings.
# @option opts [FindingStatus] :filter_status Return only findings with the specified status.
Expand Down Expand Up @@ -2562,6 +2564,7 @@ def list_findings_with_http_info(opts = {})
query_params[:'filter[rule_id]'] = opts[:'filter_rule_id'] if !opts[:'filter_rule_id'].nil?
query_params[:'filter[rule_name]'] = opts[:'filter_rule_name'] if !opts[:'filter_rule_name'].nil?
query_params[:'filter[resource_type]'] = opts[:'filter_resource_type'] if !opts[:'filter_resource_type'].nil?
query_params[:'filter[@resource_id]'] = opts[:'filter_resource_id'] if !opts[:'filter_resource_id'].nil?
query_params[:'filter[discovery_timestamp]'] = opts[:'filter_discovery_timestamp'] if !opts[:'filter_discovery_timestamp'].nil?
query_params[:'filter[evaluation]'] = opts[:'filter_evaluation'] if !opts[:'filter_evaluation'].nil?
query_params[:'filter[status]'] = opts[:'filter_status'] if !opts[:'filter_status'].nil?
Expand Down
Loading