Browse Source

Move StartExecution params to body.

sdk-team 6 years ago
parent
commit
c1672045b3
2 changed files with 5 additions and 2 deletions
  1. 3 0
      ChangeLog.txt
  2. 2 2
      services/fnf/start_execution.go

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2019-08-21 Version: 1.60.114
+- Move StartExecution params to body.
+
 2019-08-21 Version: 1.60.113
 - Return backup job id when create backup.
 - Return backup set size when describe backups.

+ 2 - 2
services/fnf/start_execution.go

@@ -77,9 +77,9 @@ func (client *Client) StartExecutionWithCallback(request *StartExecutionRequest,
 type StartExecutionRequest struct {
 	*requests.RpcRequest
 	Input         string `position:"Body" name:"Input"`
-	ExecutionName string `position:"Query" name:"ExecutionName"`
+	ExecutionName string `position:"Body" name:"ExecutionName"`
 	RequestId     string `position:"Query" name:"RequestId"`
-	FlowName      string `position:"Query" name:"FlowName"`
+	FlowName      string `position:"Body" name:"FlowName"`
 }
 
 // StartExecutionResponse is the response struct for api StartExecution