notification_service_payload.proto 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.saasaccelerator.management.logs.v1;
  16. import "google/protobuf/timestamp.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/cloud/saasaccelerator/management/logs/v1;logs";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "NotificationServicePayloadProto";
  20. option java_package = "com.google.cloud.saasaccelerator.management.logs.v1";
  21. // Payload proto for Notification logs.
  22. message NotificationStage {
  23. // Types of Notification Status.
  24. enum Stage {
  25. // Default.
  26. STAGE_UNSPECIFIED = 0;
  27. // Notification was sent.
  28. SENT = 1;
  29. // Notification failed to send.
  30. SEND_FAILURE = 2;
  31. // Notification was dropped.
  32. DROPPED = 3;
  33. }
  34. // Event that triggered the notification.
  35. enum Event {
  36. // Default value.
  37. EVENT_UNSPECIFIED = 0;
  38. // When a health status has been changed.
  39. HEALTH_STATUS_CHANGE = 1;
  40. }
  41. // The type of the Notification Service event.
  42. Stage stage = 1;
  43. // Time of the NotificationServiceEvent.
  44. google.protobuf.Timestamp event_time = 2;
  45. // The id of the notification.
  46. string notification_id = 3;
  47. // The event that triggered the notification.
  48. Event event = 4;
  49. // Message to denote the error related to the event if applicable.
  50. string message = 5;
  51. }