github.com/cloudwan/edgelq-sdk@v1.15.4/alerting/proto/v1/alert_custom.proto (about) 1 syntax = "proto3"; 2 3 package ntt.alerting.v1; 4 5 import "edgelq-sdk/alerting/proto/v1/alert.proto"; 6 import "edgelq-sdk/alerting/proto/v1/alert_change.proto"; 7 import "google/protobuf/field_mask.proto"; 8 9 option go_package = "github.com/cloudwan/edgelq-sdk/alerting/client/v1/alert;alert_client"; 10 option java_multiple_files = false; 11 option java_outer_classname = "AlertCustomProto"; 12 option java_package = "com.ntt.alerting.pb.v1"; 13 14 // A request message of the BulkSaveAlerts method. 15 message BulkSaveAlertsRequest { 16 string project = 1; 17 18 repeated Alert alerts = 3; 19 20 google.protobuf.FieldMask update_mask = 4; 21 } 22 23 // A response message of the BulkSaveAlerts method. 24 message BulkSaveAlertsResponse { repeated Alert alerts = 1; } 25 26 message BulkMarkAsNotifiedRequest { 27 string project = 1; 28 29 repeated string alerts = 2; 30 31 repeated string channels = 3; 32 } 33 34 message BulkMarkAsNotifiedResponse {}