File tree 1 file changed +9
-8
lines changed
proto/spaceone/api/alert_manager/v1
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -101,19 +101,19 @@ message AlertCreateRequest {
101
101
}
102
102
103
103
message AlertUpdateRequest {
104
- enum AlertState {
104
+ enum AlertStatus {
105
105
ALERT_STATE_NONE = 0 ;
106
106
TRIGGERED = 1 ;
107
107
ACKNOWLEDGED = 2 ;
108
108
RESOLVED = 3 ;
109
- ERROR = 4 ;
109
+ IGNORED = 4 ;
110
110
}
111
111
112
112
string alert_id = 1 ;
113
113
// +optional
114
114
string title = 2 ;
115
115
// +optional
116
- AlertState state = 3 ;
116
+ AlertStatus status = 3 ;
117
117
// +optional
118
118
string description = 4 ;
119
119
// +optional
@@ -125,20 +125,21 @@ message AlertRequest {
125
125
}
126
126
127
127
message AlertSearchQuery {
128
- enum AlertState {
128
+ enum AlertStatus {
129
129
ALERT_STATE_NONE = 0 ;
130
130
TRIGGERED = 1 ;
131
131
ACKNOWLEDGED = 2 ;
132
132
RESOLVED = 3 ;
133
- ERROR = 4 ;
133
+ IGNORED = 4 ;
134
+ ERROR = 5 ;
134
135
}
135
136
136
137
// +optional
137
138
spaceone.api.core.v2.Query query = 1 ;
138
139
// +optional
139
140
string alert_id = 2 ;
140
141
// +optional
141
- AlertState state = 3 ;
142
+ AlertStatus status = 3 ;
142
143
// +optional
143
144
AlertUrgency urgency = 4 ;
144
145
// +optional
@@ -173,7 +174,7 @@ message AlertStatQuery {
173
174
}
174
175
175
176
message AlertInfo {
176
- enum AlertState {
177
+ enum AlertStatus {
177
178
ALERT_STATE_NONE = 0 ;
178
179
TRIGGERED = 1 ;
179
180
ACKNOWLEDGED = 2 ;
@@ -190,7 +191,7 @@ message AlertInfo {
190
191
191
192
string alert_id = 1 ;
192
193
string title = 2 ;
193
- AlertState state = 3 ;
194
+ AlertStatus status = 3 ;
194
195
string description = 4 ;
195
196
AlertUrgency urgency = 5 ;
196
197
spaceone.api.alert_manager.v1.EventSeverity severity = 6 ;
You can’t perform that action at this time.
0 commit comments