Skip to content

Commit c268002

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 8ff9b6bd of spec repo
1 parent fcaefc1 commit c268002

File tree

7 files changed

+10
-18
lines changed

7 files changed

+10
-18
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": "2025-04-17 13:26:11.571880",
8-
"spec_repo_commit": "12ab5180"
7+
"regenerated": "2025-04-18 16:37:11.871236",
8+
"spec_repo_commit": "8ff9b6bd"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-04-17 13:26:11.587151",
13-
"spec_repo_commit": "12ab5180"
12+
"regenerated": "2025-04-18 16:37:11.886494",
13+
"spec_repo_commit": "8ff9b6bd"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52698,7 +52698,6 @@ paths:
5269852698
operator: OR
5269952699
permissions:
5270052700
- security_monitoring_rules_read
52701-
x-unstable: '**Note**: This endpoint is in beta and may be subject to changes.'
5270252701
/api/v2/security_monitoring/signals:
5270352702
get:
5270452703
description: 'The list endpoint returns security signals that match a search

examples/v2/security-monitoring/GetRuleVersionHistory.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from datadog_api_client.v2.api.security_monitoring_api import SecurityMonitoringApi
77

88
configuration = Configuration()
9-
configuration.unstable_operations["get_rule_version_history"] = True
109
with ApiClient(configuration) as api_client:
1110
api_instance = SecurityMonitoringApi(api_client)
1211
response = api_instance.get_rule_version_history(

examples/v2/security-monitoring/GetRuleVersionHistory_2467565841.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
SECURITY_RULE_ID = environ["SECURITY_RULE_ID"]
1111

1212
configuration = Configuration()
13-
configuration.unstable_operations["get_rule_version_history"] = True
1413
with ApiClient(configuration) as api_client:
1514
api_instance = SecurityMonitoringApi(api_client)
1615
response = api_instance.get_rule_version_history(

src/datadog_api_client/configuration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,6 @@ def __init__(
288288
"v2.delete_historical_job": False,
289289
"v2.get_finding": False,
290290
"v2.get_historical_job": False,
291-
"v2.get_rule_version_history": False,
292291
"v2.get_sbom": False,
293292
"v2.list_findings": False,
294293
"v2.list_historical_jobs": False,

tests/v2/features/on-call.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Feature: On-Call
3333
When the request is sent
3434
Then the response status is 400 Bad Request
3535

36-
@team:DataDog/bugle
36+
@skip-python @team:DataDog/bugle
3737
Scenario: Create on-call schedule returns "Created" response
3838
Given new "CreateOnCallSchedule" request
3939
And there is a valid "user" in the system
@@ -159,7 +159,7 @@ Feature: On-Call
159159
When the request is sent
160160
Then the response status is 404 Not Found
161161

162-
@team:DataDog/bugle
162+
@skip-python @team:DataDog/bugle
163163
Scenario: Update on-call schedule returns "OK" response
164164
Given new "UpdateOnCallSchedule" request
165165
And there is a valid "schedule" in the system

tests/v2/features/security_monitoring.feature

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -604,24 +604,21 @@ Feature: Security Monitoring
604604

605605
@generated @skip @team:DataDog/k9-cloud-security-platform
606606
Scenario: Get a rule's version history returns "Bad Request" response
607-
Given operation "GetRuleVersionHistory" enabled
608-
And new "GetRuleVersionHistory" request
607+
Given new "GetRuleVersionHistory" request
609608
And request contains "rule_id" parameter from "REPLACE.ME"
610609
When the request is sent
611610
Then the response status is 400 Bad Request
612611

613612
@generated @skip @team:DataDog/k9-cloud-security-platform
614613
Scenario: Get a rule's version history returns "Not Found" response
615-
Given operation "GetRuleVersionHistory" enabled
616-
And new "GetRuleVersionHistory" request
614+
Given new "GetRuleVersionHistory" request
617615
And request contains "rule_id" parameter from "REPLACE.ME"
618616
When the request is sent
619617
Then the response status is 404 Not Found
620618

621619
@generated @skip @team:DataDog/k9-cloud-security-platform
622620
Scenario: Get a rule's version history returns "OK" response
623-
Given operation "GetRuleVersionHistory" enabled
624-
And new "GetRuleVersionHistory" request
621+
Given new "GetRuleVersionHistory" request
625622
And request contains "rule_id" parameter from "REPLACE.ME"
626623
When the request is sent
627624
Then the response status is 200 OK
@@ -737,8 +734,7 @@ Feature: Security Monitoring
737734

738735
@skip-go @skip-java @skip-ruby @team:DataDog/k9-cloud-security-platform
739736
Scenario: Get rule version history returns "OK" response
740-
Given operation "GetRuleVersionHistory" enabled
741-
And new "GetRuleVersionHistory" request
737+
Given new "GetRuleVersionHistory" request
742738
And there is a valid "security_rule" in the system
743739
And request contains "rule_id" parameter from "security_rule.id"
744740
When the request is sent

0 commit comments

Comments
 (0)