Documentation ¶
Index ¶
- type BatchRegisterInstanceParam
- type ConfigParam
- type DeregisterInstanceParam
- type GetAllServiceInfoParam
- type GetServiceParam
- type Listener
- type NacosClientParam
- type RegisterInstanceParam
- type SearchConfigParam
- type SelectAllInstancesParam
- type SelectInstancesParam
- type SelectOneHealthInstanceParam
- type SubscribeParam
- type UpdateInstanceParam
- type UsageType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BatchRegisterInstanceParam ¶
type BatchRegisterInstanceParam struct { ServiceName string `param:"serviceName"` //required GroupName string `param:"groupName"` //optional,default:DEFAULT_GROUP Instances []RegisterInstanceParam //required }
type ConfigParam ¶
type ConfigParam struct { DataId string `param:"dataId"` //required Group string `param:"group"` //required Content string `param:"content"` //required Tag string `param:"tag"` AppName string `param:"appName"` BetaIps string `param:"betaIps"` CasMd5 string `param:"casMd5"` Type string `param:"type"` SrcUser string `param:"srcUser"` EncryptedDataKey string `param:"encryptedDataKey"` KmsKeyId string `param:"kmsKeyId"` UsageType UsageType `param:"usageType"` OnChange func(namespace, group, dataId, data string) }
type DeregisterInstanceParam ¶
type DeregisterInstanceParam struct { Ip string `param:"ip"` //required Port uint64 `param:"port"` //required Cluster string `param:"cluster"` //optional ServiceName string `param:"serviceName"` //required GroupName string `param:"groupName"` //optional,default:DEFAULT_GROUP Ephemeral bool `param:"ephemeral"` //optional }
type GetAllServiceInfoParam ¶
type GetServiceParam ¶
type NacosClientParam ¶
type NacosClientParam struct { ClientConfig *constant.ClientConfig // optional ServerConfigs []constant.ServerConfig // optional }
type RegisterInstanceParam ¶
type RegisterInstanceParam struct { Ip string `param:"ip"` //required Port uint64 `param:"port"` //required Weight float64 `param:"weight"` //required,it must be lager than 0 Enable bool `param:"enabled"` //required,the instance can be access or not Healthy bool `param:"healthy"` //required,the instance is health or not Metadata map[string]string `param:"metadata"` //optional ClusterName string `param:"clusterName"` //optional ServiceName string `param:"serviceName"` //required GroupName string `param:"groupName"` //optional,default:DEFAULT_GROUP Ephemeral bool `param:"ephemeral"` //optional }
type SearchConfigParam ¶
type SelectAllInstancesParam ¶
type SelectInstancesParam ¶
type SelectInstancesParam struct { Clusters []string `param:"clusters"` //optional ServiceName string `param:"serviceName"` //required GroupName string `param:"groupName"` //optional,default:DEFAULT_GROUP HealthyOnly bool `param:"healthyOnly"` //optional,value = true return only healthy instance, value = false return only unHealthy instance }
type SubscribeParam ¶
type UpdateInstanceParam ¶
type UpdateInstanceParam struct { Ip string `param:"ip"` //required Port uint64 `param:"port"` //required Weight float64 `param:"weight"` //required,it must be lager than 0 Enable bool `param:"enabled"` //required,the instance can be access or not Healthy bool `param:"healthy"` //required,the instance is health or not Metadata map[string]string `param:"metadata"` //optional ClusterName string `param:"clusterName"` //optional ServiceName string `param:"serviceName"` //required GroupName string `param:"groupName"` //optional,default:DEFAULT_GROUP Ephemeral bool `param:"ephemeral"` //optional }
Click to show internal directories.
Click to hide internal directories.