github.com/Rookout/GoSDK@v0.1.48/pkg/types/rules.go (about)

     1  package types
     2  
     3  type AugID = string
     4  
     5  type AugConfiguration map[string]interface{}
     6  
     7  type AugStatus = string
     8  
     9  const (
    10  	Pending AugStatus = "Pending"
    11  	Active  AugStatus = "Active"
    12  	Warning AugStatus = "Warning"
    13  	Error   AugStatus = "Error"
    14  	Deleted AugStatus = "Deleted"
    15  )