You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
886 B
54 lines
886 B
// Grafana Alerting API.
|
|
//
|
|
// Package definitions includes the types required for generating or consuming an OpenAPI
|
|
// spec for the Grafana Alerting API.
|
|
//
|
|
//
|
|
// Schemes: http, https
|
|
// BasePath: /api/v1
|
|
// Version: 1.1.0
|
|
//
|
|
// Consumes:
|
|
// - application/json
|
|
//
|
|
// Produces:
|
|
// - application/json
|
|
//
|
|
// Security:
|
|
// - basic
|
|
//
|
|
// SecurityDefinitions:
|
|
// basic:
|
|
// type: basic
|
|
//
|
|
// swagger:meta
|
|
package definitions
|
|
|
|
// swagger:model
|
|
type ValidationError struct {
|
|
Msg string `json:"msg"`
|
|
}
|
|
|
|
// swagger:model
|
|
type Ack struct{}
|
|
|
|
type Backend int
|
|
|
|
const (
|
|
GrafanaBackend Backend = iota
|
|
AlertmanagerBackend
|
|
LoTexRulerBackend
|
|
)
|
|
|
|
func (b Backend) String() string {
|
|
switch b {
|
|
case GrafanaBackend:
|
|
return "grafana"
|
|
case AlertmanagerBackend:
|
|
return "alertmanager"
|
|
case LoTexRulerBackend:
|
|
return "lotex"
|
|
default:
|
|
return ""
|
|
}
|
|
}
|
|
|