ing
This commit is contained in:
parent
bb07118097
commit
364679d149
|
@ -18,6 +18,8 @@ type MetaServiceTypeEnum int
|
|||
const (
|
||||
MetaServiceTypeEnumUNKNOWN MetaServiceTypeEnum = iota + 1
|
||||
MetaServiceTypeEnumNetwork
|
||||
MetaServiceTypeEnumDirectory
|
||||
MetaServiceTypeEnumMonitoring
|
||||
MetaServiceTypeEnumDatabase
|
||||
MetaServiceTypeEnumNoSQL
|
||||
MetaServiceTypeEnumMail
|
||||
|
@ -30,6 +32,8 @@ var (
|
|||
metaServiceTypeEnumID = map[MetaServiceTypeEnum]string{
|
||||
MetaServiceTypeEnumUNKNOWN: "UNKNOWN",
|
||||
MetaServiceTypeEnumNetwork: "NETWORK",
|
||||
MetaServiceTypeEnumMonitoring: "MONITORING",
|
||||
MetaServiceTypeEnumDirectory: "DIRECTORY",
|
||||
MetaServiceTypeEnumDatabase: "DATABASE",
|
||||
MetaServiceTypeEnumNoSQL: "NOSQL",
|
||||
MetaServiceTypeEnumMail: "MAIL",
|
||||
|
@ -41,6 +45,8 @@ var (
|
|||
metaServiceTypeEnumKey = map[string]MetaServiceTypeEnum{
|
||||
"UNKNOWN": MetaServiceTypeEnumUNKNOWN,
|
||||
"NETWORK": MetaServiceTypeEnumNetwork,
|
||||
"MONITORING": MetaServiceTypeEnumMonitoring,
|
||||
"DIRECTORY": MetaServiceTypeEnumDirectory,
|
||||
"DATABASE": MetaServiceTypeEnumDatabase,
|
||||
"NOSQL": MetaServiceTypeEnumNoSQL,
|
||||
"MAIL": MetaServiceTypeEnumMail,
|
||||
|
|
Loading…
Reference in New Issue
Block a user