Merge pull request #47 from yunify/ensureLB

fix wrong type of job id for stop lb output
This commit is contained in:
jolestar 2017-08-28 15:37:12 +08:00 committed by GitHub
commit 80f92f70d0
1 changed files with 1 additions and 1 deletions

View File

@ -1727,7 +1727,7 @@ func (v *StopLoadBalancersInput) Validate() error {
type StopLoadBalancersOutput struct {
Message *string `json:"message" name:"message"`
Action *string `json:"action" name:"action" location:"elements"`
JobID *int `json:"job_id" name:"job_id" location:"elements"`
JobID *string `json:"job_id" name:"job_id" location:"elements"`
RetCode *int `json:"ret_code" name:"ret_code" location:"elements"`
}