123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- syntax = "proto3";
- package google.cloud.securitycenter.v1;
- import "google/api/resource.proto";
- import "google/cloud/securitycenter/v1/folder.proto";
- import "google/cloud/securitycenter/v1/security_marks.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 Asset {
- option (google.api.resource) = {
- type: "securitycenter.googleapis.com/Asset"
- pattern: "organizations/{organization}/assets/{asset}"
- pattern: "folders/{folder}/assets/{asset}"
- pattern: "projects/{project}/assets/{asset}"
- };
-
-
- message SecurityCenterProperties {
-
-
-
- string resource_name = 1;
-
-
-
-
- string resource_type = 2;
-
-
- string resource_parent = 3;
-
-
- string resource_project = 4;
-
- repeated string resource_owners = 5;
-
- string resource_display_name = 6;
-
- string resource_parent_display_name = 7;
-
- string resource_project_display_name = 8;
-
-
-
- repeated Folder folders = 10;
- }
-
-
-
-
- message IamPolicy {
-
-
-
- string policy_blob = 1;
- }
-
-
-
-
- string name = 1;
-
-
- SecurityCenterProperties security_center_properties = 2;
-
-
- map<string, google.protobuf.Value> resource_properties = 7;
-
-
- SecurityMarks security_marks = 8;
-
- google.protobuf.Timestamp create_time = 9;
-
- google.protobuf.Timestamp update_time = 10;
-
-
-
-
- IamPolicy iam_policy = 11;
-
-
-
-
-
- string canonical_name = 13;
- }
|