File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -213,6 +213,18 @@ service Compliance {
213
213
};
214
214
}
215
215
216
+ rpc DeleteAllListEntries (DeleteAllListEntriesRequest ) returns (DeleteAllListEntriesResponse ) {
217
+ option (google.api.http ).post = "/api/v0alpha/compliance/deletealllistentries" ;
218
+ option (google.api.http ).body = "*" ;
219
+ option (annotations.authz ) = {
220
+ sets : [
221
+ {
222
+ permissions : [PERMISSION_COMPLIANCE]
223
+ }
224
+ ]
225
+ };
226
+ }
227
+
216
228
rpc GetScrubList (GetScrubListReq ) returns (ScrubListRes ) {
217
229
option (google.api.http ).post = "/api/v0alpha/compliance/getScrublist" ;
218
230
option (google.api.http ).body = "*" ;
@@ -1794,3 +1806,9 @@ message ScrubListDownloadRequest {
1794
1806
message ConsentListDownloadRequest {
1795
1807
string consent_profile_id = 4 ;
1796
1808
}
1809
+
1810
+ message DeleteAllListEntriesRequest {
1811
+ string list_id = 2 ;
1812
+ }
1813
+
1814
+ message DeleteAllListEntriesResponse {}
You can’t perform that action at this time.
0 commit comments