notification_config.proto 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. // Copyright 2021 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.securitycenter.v1p1beta1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. option csharp_namespace = "Google.Cloud.SecurityCenter.V1P1Beta1";
  19. option go_package = "google.golang.org/genproto/googleapis/cloud/securitycenter/v1p1beta1;securitycenter";
  20. option java_multiple_files = true;
  21. option java_package = "com.google.cloud.securitycenter.v1p1beta1";
  22. option php_namespace = "Google\\Cloud\\SecurityCenter\\V1p1beta1";
  23. option ruby_package = "Google::Cloud::SecurityCenter::V1p1beta1";
  24. option (google.api.resource_definition) = {
  25. type: "pubsub.googleapis.com/Topic"
  26. pattern: "projects/{project}/topics/{topic}"
  27. };
  28. // Security Command Center notification configs.
  29. //
  30. // A notification config is a Security Command Center resource that contains the
  31. // configuration to send notifications for create/update events of findings,
  32. // assets and etc.
  33. message NotificationConfig {
  34. option (google.api.resource) = {
  35. type: "securitycenter.googleapis.com/NotificationConfig"
  36. pattern: "organizations/{organization}/notificationConfigs/{notification_config}"
  37. };
  38. // The config for streaming-based notifications, which send each event as soon
  39. // as it is detected.
  40. message StreamingConfig {
  41. // Expression that defines the filter to apply across create/update events
  42. // of assets or findings as specified by the event type. The expression is a
  43. // list of zero or more restrictions combined via logical operators `AND`
  44. // and `OR`. Parentheses are supported, and `OR` has higher precedence than
  45. // `AND`.
  46. //
  47. // Restrictions have the form `<field> <operator> <value>` and may have a
  48. // `-` character in front of them to indicate negation. The fields map to
  49. // those defined in the corresponding resource.
  50. //
  51. // The supported operators are:
  52. //
  53. // * `=` for all value types.
  54. // * `>`, `<`, `>=`, `<=` for integer values.
  55. // * `:`, meaning substring matching, for strings.
  56. //
  57. // The supported value types are:
  58. //
  59. // * string literals in quotes.
  60. // * integer literals without quotes.
  61. // * boolean literals `true` and `false` without quotes.
  62. string filter = 1;
  63. }
  64. // The type of events.
  65. enum EventType {
  66. // Unspecified event type.
  67. EVENT_TYPE_UNSPECIFIED = 0;
  68. // Events for findings.
  69. FINDING = 1;
  70. }
  71. // The relative resource name of this notification config. See:
  72. // https://cloud.google.com/apis/design/resource_names#relative_resource_name
  73. // Example:
  74. // "organizations/{organization_id}/notificationConfigs/notify_public_bucket".
  75. string name = 1;
  76. // The description of the notification config (max of 1024 characters).
  77. string description = 2;
  78. // The type of events the config is for, e.g. FINDING.
  79. EventType event_type = 3;
  80. // The Pub/Sub topic to send notifications to. Its format is
  81. // "projects/[project_id]/topics/[topic]".
  82. string pubsub_topic = 4 [(google.api.resource_reference) = {
  83. type: "pubsub.googleapis.com/Topic"
  84. }];
  85. // Output only. The service account that needs "pubsub.topics.publish"
  86. // permission to publish to the Pub/Sub topic.
  87. string service_account = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  88. // The config for triggering notifications.
  89. oneof notify_config {
  90. // The config for triggering streaming-based notifications.
  91. StreamingConfig streaming_config = 6;
  92. }
  93. }