You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package option
-
- type CloudOption struct {
- Name string `json:"name"`
- AdapterIds []string `json:"adapterIds"`
- ClusterIds []string `json:"clusterIds"`
- Strategy string `json:"strategy"`
- StaticWeightMap map[string]int32 `json:"staticWeightMap,optional"`
- ReqBody []string `json:"reqBody"`
- Replica int32 `json:"replicas,string"`
- }
-
- func (c CloudOption) GetOptionType() string {
- return CLOUD
- }
|