Skip to content

Commit 9a463fa

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit e8ef24a7 of spec repo
1 parent a6d9e8e commit 9a463fa

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2024-08-21 16:52:47.024586",
8-
"spec_repo_commit": "ffed3856"
7+
"regenerated": "2024-08-21 17:41:03.044848",
8+
"spec_repo_commit": "e8ef24a7"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-08-21 16:52:47.050568",
13-
"spec_repo_commit": "ffed3856"
12+
"regenerated": "2024-08-21 17:41:03.070369",
13+
"spec_repo_commit": "e8ef24a7"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19603,6 +19603,10 @@ components:
1960319603
description: A description for the suppression rule.
1960419604
example: This rule suppresses low-severity signals in staging environments.
1960519605
type: string
19606+
editable:
19607+
description: Whether the suppression rule is editable.
19608+
example: true
19609+
type: boolean
1960619610
enabled:
1960719611
description: Whether the suppression rule is enabled.
1960819612
example: true

src/datadog_api_client/v2/model/security_monitoring_suppression_attributes.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def openapi_types(_):
3333
"creator": (SecurityMonitoringUser,),
3434
"data_exclusion_query": (str,),
3535
"description": (str,),
36+
"editable": (bool,),
3637
"enabled": (bool,),
3738
"expiration_date": (int,),
3839
"name": (str,),
@@ -48,6 +49,7 @@ def openapi_types(_):
4849
"creator": "creator",
4950
"data_exclusion_query": "data_exclusion_query",
5051
"description": "description",
52+
"editable": "editable",
5153
"enabled": "enabled",
5254
"expiration_date": "expiration_date",
5355
"name": "name",
@@ -64,6 +66,7 @@ def __init__(
6466
creator: Union[SecurityMonitoringUser, UnsetType] = unset,
6567
data_exclusion_query: Union[str, UnsetType] = unset,
6668
description: Union[str, UnsetType] = unset,
69+
editable: Union[bool, UnsetType] = unset,
6770
enabled: Union[bool, UnsetType] = unset,
6871
expiration_date: Union[int, UnsetType] = unset,
6972
name: Union[str, UnsetType] = unset,
@@ -89,6 +92,9 @@ def __init__(
8992
:param description: A description for the suppression rule.
9093
:type description: str, optional
9194
95+
:param editable: Whether the suppression rule is editable.
96+
:type editable: bool, optional
97+
9298
:param enabled: Whether the suppression rule is enabled.
9399
:type enabled: bool, optional
94100
@@ -121,6 +127,8 @@ def __init__(
121127
kwargs["data_exclusion_query"] = data_exclusion_query
122128
if description is not unset:
123129
kwargs["description"] = description
130+
if editable is not unset:
131+
kwargs["editable"] = editable
124132
if enabled is not unset:
125133
kwargs["enabled"] = enabled
126134
if expiration_date is not unset:

0 commit comments

Comments
 (0)