浏览代码

INDUSTRY-BRAIN SDK Auto Released By siyu.yusi,Version:1.53.4

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
haowei.yao 6 年之前
父节点
当前提交
4dafae5a96

+ 5 - 0
ChangeLog.txt

@@ -1,3 +1,8 @@
+2019-02-26 Version: 1.53.4
+1, Industry brain v1.3.7 release
+2, Add asynchronous APIs
+3, version 1.3.7
+
 2019-02-26 Version: 1.53.3
 1, Add interface of tag.
 2, Add tag info in DescribeDBClusters and DescribeDBClusterAttribute.

+ 111 - 0
services/industry-brain/async_response_post.go

@@ -0,0 +1,111 @@
+package industry_brain
+
+//Licensed under the Apache License, Version 2.0 (the "License");
+//you may not use this file except in compliance with the License.
+//You may obtain a copy of the License at
+//
+//http://www.apache.org/licenses/LICENSE-2.0
+//
+//Unless required by applicable law or agreed to in writing, software
+//distributed under the License is distributed on an "AS IS" BASIS,
+//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//See the License for the specific language governing permissions and
+//limitations under the License.
+//
+// Code generated by Alibaba Cloud SDK Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is regenerated.
+
+import (
+	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
+	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
+)
+
+// AsyncResponsePost invokes the industry_brain.AsyncResponsePost API synchronously
+// api document: https://help.aliyun.com/api/industry-brain/asyncresponsepost.html
+func (client *Client) AsyncResponsePost(request *AsyncResponsePostRequest) (response *AsyncResponsePostResponse, err error) {
+	response = CreateAsyncResponsePostResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// AsyncResponsePostWithChan invokes the industry_brain.AsyncResponsePost API asynchronously
+// api document: https://help.aliyun.com/api/industry-brain/asyncresponsepost.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) AsyncResponsePostWithChan(request *AsyncResponsePostRequest) (<-chan *AsyncResponsePostResponse, <-chan error) {
+	responseChan := make(chan *AsyncResponsePostResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.AsyncResponsePost(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// AsyncResponsePostWithCallback invokes the industry_brain.AsyncResponsePost API asynchronously
+// api document: https://help.aliyun.com/api/industry-brain/asyncresponsepost.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) AsyncResponsePostWithCallback(request *AsyncResponsePostRequest, callback func(response *AsyncResponsePostResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *AsyncResponsePostResponse
+		var err error
+		defer close(result)
+		response, err = client.AsyncResponsePost(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// AsyncResponsePostRequest is the request struct for api AsyncResponsePost
+type AsyncResponsePostRequest struct {
+	*requests.RpcRequest
+	Data     string         `position:"Query" name:"Data"`
+	Progress requests.Float `position:"Query" name:"Progress"`
+	Message  string         `position:"Query" name:"Message"`
+	TaskId   string         `position:"Query" name:"TaskId"`
+	Status   string         `position:"Query" name:"Status"`
+}
+
+// AsyncResponsePostResponse is the response struct for api AsyncResponsePost
+type AsyncResponsePostResponse struct {
+	*responses.BaseResponse
+	RequestId string `json:"RequestId" xml:"RequestId"`
+	Data      string `json:"Data" xml:"Data"`
+	Status    string `json:"Status" xml:"Status"`
+	Code      string `json:"Code" xml:"Code"`
+	Message   string `json:"Message" xml:"Message"`
+}
+
+// CreateAsyncResponsePostRequest creates a request to invoke AsyncResponsePost API
+func CreateAsyncResponsePostRequest() (request *AsyncResponsePostRequest) {
+	request = &AsyncResponsePostRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("industry-brain", "2018-07-12", "AsyncResponsePost", "", "")
+	return
+}
+
+// CreateAsyncResponsePostResponse creates a response to parse from AsyncResponsePost response
+func CreateAsyncResponsePostResponse() (response *AsyncResponsePostResponse) {
+	response = &AsyncResponsePostResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 3 - 1
services/industry-brain/get_async_service_result.go

@@ -76,7 +76,7 @@ func (client *Client) GetAsyncServiceResultWithCallback(request *GetAsyncService
 // GetAsyncServiceResultRequest is the request struct for api GetAsyncServiceResult
 type GetAsyncServiceResultRequest struct {
 	*requests.RpcRequest
-	ServiceId string `position:"Query" name:"ServiceId"`
+	TaskId string `position:"Query" name:"TaskId"`
 }
 
 // GetAsyncServiceResultResponse is the response struct for api GetAsyncServiceResult
@@ -84,6 +84,8 @@ type GetAsyncServiceResultResponse struct {
 	*responses.BaseResponse
 	RequestId string `json:"RequestId" xml:"RequestId"`
 	Data      string `json:"Data" xml:"Data"`
+	Code      string `json:"Code" xml:"Code"`
+	Message   string `json:"Message" xml:"Message"`
 }
 
 // CreateGetAsyncServiceResultRequest creates a request to invoke GetAsyncServiceResult API

+ 3 - 1
services/industry-brain/get_service_result_async.go

@@ -76,7 +76,7 @@ func (client *Client) GetServiceResultAsyncWithCallback(request *GetServiceResul
 // GetServiceResultAsyncRequest is the request struct for api GetServiceResultAsync
 type GetServiceResultAsyncRequest struct {
 	*requests.RpcRequest
-	ServiceId string `position:"Query" name:"ServiceId"`
+	TaskId string `position:"Query" name:"TaskId"`
 }
 
 // GetServiceResultAsyncResponse is the response struct for api GetServiceResultAsync
@@ -84,6 +84,8 @@ type GetServiceResultAsyncResponse struct {
 	*responses.BaseResponse
 	RequestId string `json:"RequestId" xml:"RequestId"`
 	Data      string `json:"Data" xml:"Data"`
+	Code      string `json:"Code" xml:"Code"`
+	Message   string `json:"Message" xml:"Message"`
 }
 
 // CreateGetServiceResultAsyncRequest creates a request to invoke GetServiceResultAsync API

+ 6 - 2
services/industry-brain/invoke_service_async.go

@@ -76,8 +76,10 @@ func (client *Client) InvokeServiceAsyncWithCallback(request *InvokeServiceAsync
 // InvokeServiceAsyncRequest is the request struct for api InvokeServiceAsync
 type InvokeServiceAsyncRequest struct {
 	*requests.RpcRequest
-	ServiceId string `position:"Query" name:"ServiceId"`
-	Params    string `position:"Body" name:"Params"`
+	IsShowInput requests.Boolean `position:"Query" name:"IsShowInput"`
+	ServiceId   string           `position:"Query" name:"ServiceId"`
+	Params      string           `position:"Query" name:"Params"`
+	RequestData string           `position:"Query" name:"RequestData"`
 }
 
 // InvokeServiceAsyncResponse is the response struct for api InvokeServiceAsync
@@ -85,6 +87,8 @@ type InvokeServiceAsyncResponse struct {
 	*responses.BaseResponse
 	RequestId string `json:"RequestId" xml:"RequestId"`
 	Data      string `json:"Data" xml:"Data"`
+	Code      string `json:"Code" xml:"Code"`
+	Message   string `json:"Message" xml:"Message"`
 }
 
 // CreateInvokeServiceAsyncRequest creates a request to invoke InvokeServiceAsync API