Skip to content

Commit 9904da5

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Update worked_by param to accept handle instead of UUID (#1793)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 11ea086 commit 9904da5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173909,7 +173909,7 @@ paths:
173909173909
schema:
173910173910
default: true
173911173911
type: boolean
173912-
- description: Filter indicators whose triage state was updated by a specific user UUID.
173912+
- description: Filter indicators whose triage state was updated by a specific user identified by their handle.
173913173913
in: query
173914173914
name: worked_by
173915173915
required: false

src/datadogV2/api/api_security_monitoring.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ pub struct ListIndicatorsOfCompromiseOptionalParams {
613613
pub sort_order: Option<String>,
614614
/// When true, return only OCSF field-based matches. When false, return regex/message-based matches.
615615
pub ocsf: Option<bool>,
616-
/// Filter indicators whose triage state was updated by a specific user UUID.
616+
/// Filter indicators whose triage state was updated by a specific user identified by their handle.
617617
pub worked_by: Option<String>,
618618
/// Filter by triage state.
619619
pub triage_state: Option<crate::datadogV2::model::IoCTriageState>,
@@ -650,7 +650,7 @@ impl ListIndicatorsOfCompromiseOptionalParams {
650650
self.ocsf = Some(value);
651651
self
652652
}
653-
/// Filter indicators whose triage state was updated by a specific user UUID.
653+
/// Filter indicators whose triage state was updated by a specific user identified by their handle.
654654
pub fn worked_by(mut self, value: String) -> Self {
655655
self.worked_by = Some(value);
656656
self

0 commit comments

Comments
 (0)