Skip to content

Commit

Permalink
Merge pull request #91 from yunify/fix-lb-backend-field-type
Browse files Browse the repository at this point in the history
fix field type
  • Loading branch information
runzexia authored Jan 8, 2018
2 parents da57260 + 19602d1 commit 4ad588f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/load_balancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -1330,8 +1330,8 @@ type ModifyLoadBalancerBackendAttributesInput struct {
LoadBalancerBackend *string `json:"loadbalancer_backend" name:"loadbalancer_backend" location:"params"`
LoadBalancerBackendName *string `json:"loadbalancer_backend_name" name:"loadbalancer_backend_name" location:"params"`
LoadBalancerPolicyID *string `json:"loadbalancer_policy_id" name:"loadbalancer_policy_id" location:"params"`
Port *string `json:"port" name:"port" location:"params"`
Weight *string `json:"weight" name:"weight" location:"params"`
Port *int `json:"port" name:"port" location:"params"`
Weight *int `json:"weight" name:"weight" location:"params"`
}

func (v *ModifyLoadBalancerBackendAttributesInput) Validate() error {
Expand Down

0 comments on commit 4ad588f

Please sign in to comment.