Skip to content

Commit 6d186f6

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 69f53eae of spec repo
1 parent cbdeb9c commit 6d186f6

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-06-27 17:06:08.975577",
8-
"spec_repo_commit": "5ebef994"
7+
"regenerated": "2024-06-28 08:59:09.487105",
8+
"spec_repo_commit": "69f53eae"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-06-27 17:06:08.992296",
13-
"spec_repo_commit": "5ebef994"
12+
"regenerated": "2024-06-28 08:59:09.503669",
13+
"spec_repo_commit": "69f53eae"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18849,6 +18849,10 @@ components:
1884918849
description: A description for the suppression rule.
1885018850
example: This rule suppresses low-severity signals in staging environments.
1885118851
type: string
18852+
editable:
18853+
description: Indicates if the suppression rule can be modified.
18854+
example: true
18855+
type: boolean
1885218856
enabled:
1885318857
description: Whether the suppression rule is enabled.
1885418858
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: Indicates if the suppression rule can be modified.
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)