123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- syntax = "proto3";
- package google.cloud.securitycenter.v1beta1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/securitycenter/v1beta1/security_marks.proto";
- import "google/protobuf/struct.proto";
- import "google/protobuf/timestamp.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/securitycenter/v1beta1;securitycenter";
- option java_multiple_files = true;
- option java_package = "com.google.cloud.securitycenter.v1beta1";
- message Finding {
- option (google.api.resource) = {
- type: "securitycenter.googleapis.com/Finding"
- pattern: "organizations/{organization}/sources/{source}/findings/{finding}"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- ACTIVE = 1;
-
-
- INACTIVE = 2;
- }
-
-
-
-
- string name = 1;
-
-
-
-
-
-
- string parent = 2 [(google.api.field_behavior) = IMMUTABLE];
-
-
-
-
-
-
- string resource_name = 3;
-
- State state = 4;
-
-
-
- string category = 5;
-
-
-
- string external_uri = 6;
-
-
-
-
- map<string, google.protobuf.Value> source_properties = 7;
-
-
-
- SecurityMarks security_marks = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- google.protobuf.Timestamp event_time = 9;
-
- google.protobuf.Timestamp create_time = 10;
- }
|