Skip to content

Commit 53f9922

Browse files
feat: add user_name field to the finding access (#3743)
* feat: add user_name field to the finding access PiperOrigin-RevId: 495123979 Source-Link: googleapis/googleapis@fe20b12 Source-Link: googleapis/googleapis-gen@8d4762d Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLXNlY3VyaXR5Y2VudGVyLy5Pd2xCb3QueWFtbCIsImgiOiI4ZDQ3NjJkMDkzM2RhYjZlYTQ1ZjMwMWI0NTI1ZWVlOGJjYjgzMjgxIn0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 9db90e8 commit 53f9922

File tree

4 files changed

+44
-2
lines changed

4 files changed

+44
-2
lines changed

packages/google-cloud-securitycenter/protos/google/cloud/securitycenter/v1/access.proto

+11-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ message Access {
4242
// The caller IP's geolocation, which identifies where the call came from.
4343
Geolocation caller_ip_geo = 3;
4444

45-
// What kind of user agent is associated, e.g. operating system shells,
45+
// What kind of user agent is associated, for example operating system shells,
4646
// embedded or stand-alone applications, etc.
4747
string user_agent_family = 4;
4848

@@ -76,6 +76,15 @@ message Access {
7676
// authorities are present, they are guaranteed to be sorted based on the
7777
// original ordering of the identity delegation events.
7878
repeated ServiceAccountDelegationInfo service_account_delegation_info = 9;
79+
80+
// A string that represents the username of a user, user account, or other
81+
// entity involved in the access event. What the entity is and what its role
82+
// in the access event is depends on the finding that this field appears in.
83+
// The entity is likely not an IAM principal, but could be a user that is
84+
// logged into an operating system, if the finding is VM-related, or a user
85+
// that is logged into some type of application that is involved in the
86+
// access event.
87+
string user_name = 11;
7988
}
8089

8190
// Identity delegation history of an authenticated service account.
@@ -97,4 +106,4 @@ message ServiceAccountDelegationInfo {
97106
message Geolocation {
98107
// A CLDR.
99108
string region_code = 1;
100-
}
109+
}

packages/google-cloud-securitycenter/protos/protos.d.ts

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-cloud-securitycenter/protos/protos.js

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-cloud-securitycenter/protos/protos.json

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)