Documentation ¶
Index ¶
- type SdHealthCheckType
- func (i SdHealthCheckType) Caption() string
- func (i SdHealthCheckType) CaptionMap() map[SdHealthCheckType]string
- func (i SdHealthCheckType) Description() string
- func (i SdHealthCheckType) DescriptionMap() map[SdHealthCheckType]string
- func (i SdHealthCheckType) IntString() string
- func (i SdHealthCheckType) IntValue() int
- func (i SdHealthCheckType) Key() string
- func (i SdHealthCheckType) KeyMap() map[SdHealthCheckType]string
- func (i SdHealthCheckType) NameMap() map[string]SdHealthCheckType
- func (i SdHealthCheckType) ParseByKey(s string) (SdHealthCheckType, error)
- func (i SdHealthCheckType) ParseByName(s string) (SdHealthCheckType, error)
- func (i SdHealthCheckType) String() string
- func (i SdHealthCheckType) Valid() bool
- func (i SdHealthCheckType) ValueSlice() []SdHealthCheckType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SdHealthCheckType ¶
type SdHealthCheckType int
const ( UNKNOWN SdHealthCheckType = 0 HTTP SdHealthCheckType = 1 HTTPS SdHealthCheckType = 2 TCP SdHealthCheckType = 3 )
func (SdHealthCheckType) Caption ¶
func (i SdHealthCheckType) Caption() string
Caption retrieves a SdHealthCheckType enum string caption
func (SdHealthCheckType) CaptionMap ¶
func (i SdHealthCheckType) CaptionMap() map[SdHealthCheckType]string
CaptionMap returns all captions of the enum SdHealthCheckType in a K:SdHealthCheckType,V:caption map
func (SdHealthCheckType) Description ¶
func (i SdHealthCheckType) Description() string
Description retrieves a SdHealthCheckType enum string description
func (SdHealthCheckType) DescriptionMap ¶
func (i SdHealthCheckType) DescriptionMap() map[SdHealthCheckType]string
DescriptionMap returns all descriptions of the enum SdHealthCheckType in a K:SdHealthCheckType,V:description map
func (SdHealthCheckType) IntString ¶
func (i SdHealthCheckType) IntString() string
IntString gets the intrinsic enum integer value represented in string format
func (SdHealthCheckType) IntValue ¶
func (i SdHealthCheckType) IntValue() int
IntValue gets the intrinsic enum integer value
func (SdHealthCheckType) Key ¶
func (i SdHealthCheckType) Key() string
Key retrieves a SdHealthCheckType enum string key
func (SdHealthCheckType) KeyMap ¶
func (i SdHealthCheckType) KeyMap() map[SdHealthCheckType]string
KeyMap returns all keys of the enum SdHealthCheckType in a K:SdHealthCheckType,V:key map
func (SdHealthCheckType) NameMap ¶
func (i SdHealthCheckType) NameMap() map[string]SdHealthCheckType
NameMap returns all names of the enum SdHealthCheckType in a K:name,V:SdHealthCheckType map
func (SdHealthCheckType) ParseByKey ¶
func (i SdHealthCheckType) ParseByKey(s string) (SdHealthCheckType, error)
ParseByKey retrieves a SdHealthCheckType enum value from the enum string key, throws an error if the param is not part of the enum
func (SdHealthCheckType) ParseByName ¶
func (i SdHealthCheckType) ParseByName(s string) (SdHealthCheckType, error)
ParseByName retrieves a SdHealthCheckType enum value from the enum string name, throws an error if the param is not part of the enum
func (SdHealthCheckType) String ¶
func (i SdHealthCheckType) String() string
func (SdHealthCheckType) Valid ¶
func (i SdHealthCheckType) Valid() bool
Valid returns 'true' if the value is listed in the SdHealthCheckType enum map definition, 'false' otherwise
func (SdHealthCheckType) ValueSlice ¶
func (i SdHealthCheckType) ValueSlice() []SdHealthCheckType
ValueSlice returns all values of the enum SdHealthCheckType in a slice