Skip to content

Commit 06ecec0

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Remove logs-app from SDS spec codeowners (#2100)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent a6a1023 commit 06ecec0

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
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-11-12 21:11:37.117849",
8-
"spec_repo_commit": "9a869b6b"
7+
"regenerated": "2024-11-13 15:00:41.714511",
8+
"spec_repo_commit": "1406acd6"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-11-12 21:11:37.136968",
13-
"spec_repo_commit": "9a869b6b"
12+
"regenerated": "2024-11-13 15:00:41.733043",
13+
"spec_repo_commit": "1406acd6"
1414
}
1515
}
1616
}

features/v2/sensitive_data_scanner.feature

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ Feature: Sensitive Data Scanner
1010
And a valid "appKeyAuth" key in the system
1111
And an instance of "SensitiveDataScanner" API
1212

13-
@generated @skip @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
13+
@generated @skip @team:DataDog/sensitive-data-scanner
1414
Scenario: Create Scanning Group returns "Bad Request" response
1515
Given new "CreateScanningGroup" request
1616
And body with value {"data": {"attributes": {"filter": {}, "product_list": ["logs"]}, "relationships": {"configuration": {"data": {"type": "sensitive_data_scanner_configuration"}}, "rules": {"data": [{"type": "sensitive_data_scanner_rule"}]}}, "type": "sensitive_data_scanner_group"}, "meta": {"version": 0}}
1717
When the request is sent
1818
Then the response status is 400 Bad Request
1919

20-
@team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
20+
@team:DataDog/sensitive-data-scanner
2121
Scenario: Create Scanning Group returns "OK" response
2222
Given a valid "configuration" in the system
2323
And new "CreateScanningGroup" request
@@ -27,7 +27,7 @@ Feature: Sensitive Data Scanner
2727
And the response "data.type" is equal to "sensitive_data_scanner_group"
2828
And the response "data.attributes.name" is equal to "{{ unique }}"
2929

30-
@team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
30+
@team:DataDog/sensitive-data-scanner
3131
Scenario: Create Scanning Rule returns "Bad Request" response
3232
Given a valid "configuration" in the system
3333
And there is a valid "scanning_group" in the system
@@ -36,7 +36,7 @@ Feature: Sensitive Data Scanner
3636
When the request is sent
3737
Then the response status is 400 Bad Request
3838

39-
@team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
39+
@team:DataDog/sensitive-data-scanner
4040
Scenario: Create Scanning Rule returns "OK" response
4141
Given a valid "configuration" in the system
4242
And there is a valid "scanning_group" in the system
@@ -50,23 +50,23 @@ Feature: Sensitive Data Scanner
5050
And the response "data.attributes.included_keyword_configuration.character_count" is equal to 35
5151
And the response "data.attributes.included_keyword_configuration.keywords[0]" is equal to "credit card"
5252

53-
@generated @skip @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
53+
@generated @skip @team:DataDog/sensitive-data-scanner
5454
Scenario: Delete Scanning Group returns "Bad Request" response
5555
Given new "DeleteScanningGroup" request
5656
And request contains "group_id" parameter from "REPLACE.ME"
5757
And body with value {"meta": {"version": 0}}
5858
When the request is sent
5959
Then the response status is 400 Bad Request
6060

61-
@generated @skip @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
61+
@generated @skip @team:DataDog/sensitive-data-scanner
6262
Scenario: Delete Scanning Group returns "Not Found" response
6363
Given new "DeleteScanningGroup" request
6464
And request contains "group_id" parameter from "REPLACE.ME"
6565
And body with value {"meta": {"version": 0}}
6666
When the request is sent
6767
Then the response status is 404 Not Found
6868

69-
@team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
69+
@team:DataDog/sensitive-data-scanner
7070
Scenario: Delete Scanning Group returns "OK" response
7171
Given a valid "configuration" in the system
7272
And there is a valid "scanning_group" in the system
@@ -76,23 +76,23 @@ Feature: Sensitive Data Scanner
7676
When the request is sent
7777
Then the response status is 200 OK
7878

79-
@generated @skip @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
79+
@generated @skip @team:DataDog/sensitive-data-scanner
8080
Scenario: Delete Scanning Rule returns "Bad Request" response
8181
Given new "DeleteScanningRule" request
8282
And request contains "rule_id" parameter from "REPLACE.ME"
8383
And body with value {"meta": {"version": 0}}
8484
When the request is sent
8585
Then the response status is 400 Bad Request
8686

87-
@generated @skip @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
87+
@generated @skip @team:DataDog/sensitive-data-scanner
8888
Scenario: Delete Scanning Rule returns "Not Found" response
8989
Given new "DeleteScanningRule" request
9090
And request contains "rule_id" parameter from "REPLACE.ME"
9191
And body with value {"meta": {"version": 0}}
9292
When the request is sent
9393
Then the response status is 404 Not Found
9494

95-
@team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
95+
@team:DataDog/sensitive-data-scanner
9696
Scenario: Delete Scanning Rule returns "OK" response
9797
Given a valid "configuration" in the system
9898
And there is a valid "scanning_group" in the system
@@ -103,13 +103,13 @@ Feature: Sensitive Data Scanner
103103
When the request is sent
104104
Then the response status is 200 OK
105105

106-
@generated @skip @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
106+
@generated @skip @team:DataDog/sensitive-data-scanner
107107
Scenario: List Scanning Groups returns "Bad Request" response
108108
Given new "ListScanningGroups" request
109109
When the request is sent
110110
Then the response status is 400 Bad Request
111111

112-
@team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
112+
@team:DataDog/sensitive-data-scanner
113113
Scenario: List Scanning Groups returns "OK" response
114114
Given a valid "configuration" in the system
115115
And there is a valid "scanning_group" in the system
@@ -118,19 +118,19 @@ Feature: Sensitive Data Scanner
118118
Then the response status is 200 OK
119119
And the response "included" has item with field "id" with value "{{ group.data.id }}"
120120

121-
@generated @skip @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
121+
@generated @skip @team:DataDog/sensitive-data-scanner
122122
Scenario: List standard patterns returns "Bad Request" response
123123
Given new "ListStandardPatterns" request
124124
When the request is sent
125125
Then the response status is 400 Bad Request
126126

127-
@integration-only @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
127+
@integration-only @team:DataDog/sensitive-data-scanner
128128
Scenario: List standard patterns returns "OK" response
129129
Given new "ListStandardPatterns" request
130130
When the request is sent
131131
Then the response status is 200 OK
132132

133-
@team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
133+
@team:DataDog/sensitive-data-scanner
134134
Scenario: Reorder Groups returns "Bad Request" response
135135
Given a valid "configuration" in the system
136136
And there is a valid "scanning_group" in the system
@@ -139,7 +139,7 @@ Feature: Sensitive Data Scanner
139139
When the request is sent
140140
Then the response status is 400 Bad Request
141141

142-
@replay-only @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
142+
@replay-only @team:DataDog/sensitive-data-scanner
143143
Scenario: Reorder Groups returns "OK" response
144144
Given a valid "configuration" in the system
145145
And there is a valid "scanning_group" in the system
@@ -148,23 +148,23 @@ Feature: Sensitive Data Scanner
148148
When the request is sent
149149
Then the response status is 200 OK
150150

151-
@generated @skip @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
151+
@generated @skip @team:DataDog/sensitive-data-scanner
152152
Scenario: Update Scanning Group returns "Bad Request" response
153153
Given new "UpdateScanningGroup" request
154154
And request contains "group_id" parameter from "REPLACE.ME"
155155
And body with value {"data": {"attributes": {"filter": {}, "product_list": ["logs"]}, "relationships": {"configuration": {"data": {"type": "sensitive_data_scanner_configuration"}}, "rules": {"data": [{"type": "sensitive_data_scanner_rule"}]}}, "type": "sensitive_data_scanner_group"}, "meta": {"version": 0}}
156156
When the request is sent
157157
Then the response status is 400 Bad Request
158158

159-
@generated @skip @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
159+
@generated @skip @team:DataDog/sensitive-data-scanner
160160
Scenario: Update Scanning Group returns "Not Found" response
161161
Given new "UpdateScanningGroup" request
162162
And request contains "group_id" parameter from "REPLACE.ME"
163163
And body with value {"data": {"attributes": {"filter": {}, "product_list": ["logs"]}, "relationships": {"configuration": {"data": {"type": "sensitive_data_scanner_configuration"}}, "rules": {"data": [{"type": "sensitive_data_scanner_rule"}]}}, "type": "sensitive_data_scanner_group"}, "meta": {"version": 0}}
164164
When the request is sent
165165
Then the response status is 404 Not Found
166166

167-
@team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
167+
@team:DataDog/sensitive-data-scanner
168168
Scenario: Update Scanning Group returns "OK" response
169169
Given a valid "configuration" in the system
170170
And there is a valid "scanning_group" in the system
@@ -174,7 +174,7 @@ Feature: Sensitive Data Scanner
174174
When the request is sent
175175
Then the response status is 200 OK
176176

177-
@team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
177+
@team:DataDog/sensitive-data-scanner
178178
Scenario: Update Scanning Rule returns "Bad Request" response
179179
Given a valid "configuration" in the system
180180
And there is a valid "scanning_group" in the system
@@ -185,15 +185,15 @@ Feature: Sensitive Data Scanner
185185
When the request is sent
186186
Then the response status is 400 Bad Request
187187

188-
@generated @skip @team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
188+
@generated @skip @team:DataDog/sensitive-data-scanner
189189
Scenario: Update Scanning Rule returns "Not Found" response
190190
Given new "UpdateScanningRule" request
191191
And request contains "rule_id" parameter from "REPLACE.ME"
192192
And body with value {"data": {"attributes": {"excluded_namespaces": ["admin.name"], "included_keyword_configuration": {"character_count": 30, "keywords": ["credit card", "cc"]}, "namespaces": ["admin"], "tags": [], "text_replacement": {"type": "none"}}, "relationships": {"group": {"data": {"type": "sensitive_data_scanner_group"}}, "standard_pattern": {"data": {"type": "sensitive_data_scanner_standard_pattern"}}}, "type": "sensitive_data_scanner_rule"}, "meta": {"version": 0}}
193193
When the request is sent
194194
Then the response status is 404 Not Found
195195

196-
@team:DataDog/logs-app @team:DataDog/sensitive-data-scanner
196+
@team:DataDog/sensitive-data-scanner
197197
Scenario: Update Scanning Rule returns "OK" response
198198
Given a valid "configuration" in the system
199199
And there is a valid "scanning_group" in the system

0 commit comments

Comments
 (0)