123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- syntax = "proto3";
- package google.cloud.securitycenter.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/securitycenter/v1/access.proto";
- import "google/cloud/securitycenter/v1/compliance.proto";
- import "google/cloud/securitycenter/v1/connection.proto";
- import "google/cloud/securitycenter/v1/contact_details.proto";
- import "google/cloud/securitycenter/v1/container.proto";
- import "google/cloud/securitycenter/v1/database.proto";
- import "google/cloud/securitycenter/v1/exfiltration.proto";
- import "google/cloud/securitycenter/v1/external_system.proto";
- import "google/cloud/securitycenter/v1/file.proto";
- import "google/cloud/securitycenter/v1/iam_binding.proto";
- import "google/cloud/securitycenter/v1/indicator.proto";
- import "google/cloud/securitycenter/v1/kubernetes.proto";
- import "google/cloud/securitycenter/v1/mitre_attack.proto";
- import "google/cloud/securitycenter/v1/process.proto";
- import "google/cloud/securitycenter/v1/security_marks.proto";
- import "google/cloud/securitycenter/v1/vulnerability.proto";
- import "google/protobuf/struct.proto";
- import "google/protobuf/timestamp.proto";
- 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_package = "com.google.cloud.securitycenter.v1";
- option php_namespace = "Google\\Cloud\\SecurityCenter\\V1";
- option ruby_package = "Google::Cloud::SecurityCenter::V1";
- message Finding {
- option (google.api.resource) = {
- type: "securitycenter.googleapis.com/Finding"
- pattern: "organizations/{organization}/sources/{source}/findings/{finding}"
- pattern: "folders/{folder}/sources/{source}/findings/{finding}"
- pattern: "projects/{project}/sources/{source}/findings/{finding}"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- ACTIVE = 1;
-
-
- INACTIVE = 2;
- }
-
- enum Severity {
-
-
- SEVERITY_UNSPECIFIED = 0;
-
-
-
-
-
-
-
-
-
-
- CRITICAL = 1;
-
-
-
-
-
-
-
-
-
-
-
-
-
- HIGH = 2;
-
-
-
-
-
-
-
-
-
-
-
-
- MEDIUM = 3;
-
-
-
-
-
-
-
-
-
- LOW = 4;
- }
-
- enum Mute {
-
- MUTE_UNSPECIFIED = 0;
-
- MUTED = 1;
-
- UNMUTED = 2;
-
- UNDEFINED = 4;
- }
-
- enum FindingClass {
-
- FINDING_CLASS_UNSPECIFIED = 0;
-
- THREAT = 1;
-
-
- VULNERABILITY = 2;
-
-
- MISCONFIGURATION = 3;
-
- OBSERVATION = 4;
-
- SCC_ERROR = 5;
- }
-
-
-
-
- string name = 1;
-
-
-
-
-
- string parent = 2;
-
-
-
-
-
-
- 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;
-
-
- Severity severity = 12;
-
-
-
-
-
-
- string canonical_name = 14;
-
-
-
- Mute mute = 15;
-
- FindingClass finding_class = 17;
-
-
-
-
-
- Indicator indicator = 18;
-
-
-
- Vulnerability vulnerability = 20;
-
- google.protobuf.Timestamp mute_update_time = 21 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- map<string, ExternalSystem> external_systems = 22 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- MitreAttack mitre_attack = 25;
-
-
- Access access = 26;
-
- repeated Connection connections = 31;
-
-
-
-
- string mute_initiator = 28;
-
- repeated Process processes = 30;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- map<string, ContactDetails> contacts = 33 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- repeated Compliance compliances = 34;
-
-
- string parent_display_name = 36 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string description = 37;
-
- Exfiltration exfiltration = 38;
-
- repeated IamBinding iam_bindings = 39;
-
- string next_steps = 40;
-
-
- repeated Container containers = 42;
-
- Kubernetes kubernetes = 43;
-
- Database database = 44;
-
- repeated File files = 46;
- }
|