Documentation ¶
Index ¶
Constants ¶
View Source
const (
// ConfigVersion - 설정 구조에 대한 버전
ConfigVersion = 1
)
Variables ¶
This section is empty.
Functions ¶
func GetConnectInfos ¶
GetConnectInfos - 연결정보 통합 제공
Types ¶
type ConnectInfo ¶
type ConnectInfo struct { ConfigName string `yaml:"ConfigName" json:"ConfigName"` ProviderName string `yaml:"ProviderName" json:"ProviderName"` Driver DriverInfo `yaml:"Driver" json:"Driver"` Credential CredentialInfo `yaml:"Credential" json:"Credential"` Region RegionInfo `yaml:"Region" json:"Region"` }
ConnectInfo -
type ConnectInfosConfig ¶
type ConnectInfosConfig struct { Version int `yaml:"Version" json:"Version"` ConnectInfoList []ConnectInfo `yaml:"ConnectInfos" json:"ConnectInfos"` }
ConnectInfosConfig -
type CredentialInfo ¶
type CredentialInfo struct { CredentialName string `yaml:"CredentialName" json:"CredentialName"` KeyValueInfoList []KeyValueInfo `yaml:"KeyValueInfoList" json:"KeyValueInfoList"` }
CredentialInfo -
type DriverInfo ¶
type DriverInfo struct { DriverName string `yaml:"DriverName" json:"DriverName"` DriverLibFileName string `yaml:"DriverLibFileName" json:"DriverLibFileName"` }
DriverInfo -
type KeyValueInfo ¶
type KeyValueInfo struct { Key string `yaml:"Key" json:"Key"` Value string `yaml:"Value" json:"Value"` }
KeyValueInfo -
type RegionInfo ¶
type RegionInfo struct { RegionName string `yaml:"RegionName" json:"RegionName"` KeyValueInfoList []KeyValueInfo `yaml:"KeyValueInfoList" json:"KeyValueInfoList"` }
RegionInfo -
Click to show internal directories.
Click to hide internal directories.