Skip to content

Commit 862f99f

Browse files
Google APIscopybara-github
authored andcommitted
feat: Added parent display name i.e. source display name for a finding as one of the finding attributes
PiperOrigin-RevId: 474319054
1 parent cec7333 commit 862f99f

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

google/cloud/securitycenter/v1/finding.proto

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -258,13 +258,11 @@ message Finding {
258258
Vulnerability vulnerability = 20;
259259

260260
// Output only. The most recent time this finding was muted or unmuted.
261-
google.protobuf.Timestamp mute_update_time = 21
262-
[(google.api.field_behavior) = OUTPUT_ONLY];
261+
google.protobuf.Timestamp mute_update_time = 21 [(google.api.field_behavior) = OUTPUT_ONLY];
263262

264-
// Output only. Third party SIEM/SOAR fields within SCC, contains external
265-
// system information and external system finding fields.
266-
map<string, ExternalSystem> external_systems = 22
267-
[(google.api.field_behavior) = OUTPUT_ONLY];
263+
// Output only. Third party SIEM/SOAR fields within SCC, contains external system
264+
// information and external system finding fields.
265+
map<string, ExternalSystem> external_systems = 22 [(google.api.field_behavior) = OUTPUT_ONLY];
268266

269267
// MITRE ATT&CK tactics and techniques related to this finding.
270268
// See: https://attack.mitre.org
@@ -286,9 +284,9 @@ message Finding {
286284
// Represents operating system processes associated with the Finding.
287285
repeated Process processes = 30;
288286

289-
// Output only. Map containing the point of contacts for the given finding.
290-
// The key represents the type of contact, while the value contains a list of
291-
// all the contacts that pertain. Please refer to:
287+
// Output only. Map containing the points of contact for the given finding. The key
288+
// represents the type of contact, while the value contains a list of all the
289+
// contacts that pertain. Please refer to:
292290
// https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories
293291
//
294292
// {
@@ -303,13 +301,16 @@ message Finding {
303301
// ]
304302
// }
305303
// }
306-
map<string, ContactDetails> contacts = 33
307-
[(google.api.field_behavior) = OUTPUT_ONLY];
304+
map<string, ContactDetails> contacts = 33 [(google.api.field_behavior) = OUTPUT_ONLY];
308305

309306
// Contains compliance information for security standards associated to the
310307
// finding.
311308
repeated Compliance compliances = 34;
312309

310+
// Output only. The human readable display name of the finding source such as
311+
// "Event Threat Detection" or "Security Health Analytics".
312+
string parent_display_name = 36 [(google.api.field_behavior) = OUTPUT_ONLY];
313+
313314
// Contains more detail about the finding.
314315
string description = 37;
315316

0 commit comments

Comments
 (0)