Skip to content

Commit

Permalink
Add editable field to suppression rule (#1673)
Browse files Browse the repository at this point in the history
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
  • Loading branch information
api-clients-generation-pipeline[bot] and ci.datadog-api-spec authored Aug 21, 2024
1 parent 5c5e892 commit 749562e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-08-21 16:52:41.809373",
"spec_repo_commit": "ffed3856"
"regenerated": "2024-08-21 17:41:02.666521",
"spec_repo_commit": "e8ef24a7"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-08-21 16:52:41.835691",
"spec_repo_commit": "ffed3856"
"regenerated": "2024-08-21 17:41:02.685109",
"spec_repo_commit": "e8ef24a7"
}
}
}
4 changes: 4 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19603,6 +19603,10 @@ components:
description: A description for the suppression rule.
example: This rule suppresses low-severity signals in staging environments.
type: string
editable:
description: Whether the suppression rule is editable.
example: true
type: boolean
enabled:
description: Whether the suppression rule is enabled.
example: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ export class SecurityMonitoringSuppressionAttributes {
* A description for the suppression rule.
*/
"description"?: string;
/**
* Whether the suppression rule is editable.
*/
"editable"?: boolean;
/**
* Whether the suppression rule is enabled.
*/
Expand Down Expand Up @@ -93,6 +97,10 @@ export class SecurityMonitoringSuppressionAttributes {
baseName: "description",
type: "string",
},
editable: {
baseName: "editable",
type: "boolean",
},
enabled: {
baseName: "enabled",
type: "boolean",
Expand Down

0 comments on commit 749562e

Please sign in to comment.