Alerting: Provisioning API - Contact points (#47197)

This commit is contained in:
Jean-Philippe Quéméner
2022-04-13 22:15:55 +02:00
committed by GitHub
parent 5fb80498b1
commit 388ecb4037
20 changed files with 1384 additions and 41 deletions

View File

@@ -3,8 +3,10 @@ package models
type Provenance string
const (
// ProvenanceNone reflects the provenance when no provenance is stored
// for the requested object in the database.
ProvenanceNone Provenance = ""
ProvenanceApi Provenance = "api"
ProvenanceAPI Provenance = "api"
ProvenanceFile Provenance = "file"
)