123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- syntax = "proto3";
- package google.cloud.securitycenter.v1;
- option csharp_namespace = "Google.Cloud.SecurityCenter.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/securitycenter/v1;securitycenter";
- option java_multiple_files = true;
- option java_outer_classname = "AccessProto";
- option java_package = "com.google.cloud.securitycenter.v1";
- option php_namespace = "Google\\Cloud\\SecurityCenter\\V1";
- option ruby_package = "Google::Cloud::SecurityCenter::V1";
- message Access {
-
-
-
-
-
-
-
-
- string principal_email = 1;
-
- string caller_ip = 2;
-
- Geolocation caller_ip_geo = 3;
-
-
- string user_agent_family = 4;
-
-
- string service_name = 5;
-
- string method_name = 6;
-
-
-
-
-
-
-
- string principal_subject = 7;
-
-
-
-
-
-
- string service_account_key_name = 8;
-
-
-
-
-
- repeated ServiceAccountDelegationInfo service_account_delegation_info = 9;
- }
- message ServiceAccountDelegationInfo {
-
- string principal_email = 1;
-
-
-
-
-
-
-
- string principal_subject = 2;
- }
- message Geolocation {
-
- string region_code = 1;
- }
|