File tree 1 file changed +7
-2
lines changed
proto/spaceone/api/alert_manager/v1
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ service NotificationProtocol {
29
29
body : "*"
30
30
};
31
31
}
32
- rpc verify_plugin ( NotificationProtocolRequest ) returns (google . protobuf . Empty ) {
32
+ rpc update_secret_data ( NotificationProtocolUpdateSecretDataRequest ) returns (NotificationProtocolInfo ) {
33
33
option (google.api.http ) = {
34
- post : "/alert-manager/v1/notification-protocol/verify-plugin "
34
+ post : "/alert-manager/v1/notification-protocol/update-secret-data "
35
35
body : "*"
36
36
};
37
37
}
@@ -110,6 +110,11 @@ message NotificationProtocolRequest {
110
110
string protocol_id = 1 ;
111
111
}
112
112
113
+ message NotificationProtocolUpdateSecretDataRequest {
114
+ string protocol_id = 1 ;
115
+ google.protobuf.Struct secret_data = 2 ;
116
+ }
117
+
113
118
message NotificationProtocolSearchQuery {
114
119
enum NotificationProtocolState {
115
120
PROTOCOL_STATE_NONE = 0 ;
You can’t perform that action at this time.
0 commit comments