Merge pull request #91 from yunify/fix-lb-backend-field-type

fix field type
This commit is contained in:
runzexia 2018-01-08 14:49:34 +08:00 committed by GitHub
commit 4ad588f13d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 {