1
0
mirror of https://github.com/zitadel/zitadel.git synced 2024-12-18 13:57:32 +00:00
2022-10-26 13:06:48 +00:00

24 lines
380 B
Go

package domain
const (
IAMID = "IAM"
)
type InstanceState int32
const (
InstanceStateUnspecified InstanceState = iota
InstanceStateActive
InstanceStateRemoved
instanceStateCount
)
func (s InstanceState) Valid() bool {
return s >= 0 && s < instanceStateCount
}
func (s InstanceState) Exists() bool {
return s != InstanceStateUnspecified && s != InstanceStateRemoved
}