Browse Source

Merge branch 'master' of github.com:aliyun/alibaba-cloud-sdk-go

yixiong.jxy 7 years ago
parent
commit
89a49455ac

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2018-08-24 Version: 1.27.3
+1, Add api: DetectQRCode
+
 2018-08-23 Version: 1.27.2
 1, RunInstance add privateIpAddress.
 

+ 106 - 0
services/imm/detect_qr_codes.go

@@ -0,0 +1,106 @@
+package imm
+
+//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"
+)
+
+// DetectQRCodes invokes the imm.DetectQRCodes API synchronously
+// api document: https://help.aliyun.com/api/imm/detectqrcodes.html
+func (client *Client) DetectQRCodes(request *DetectQRCodesRequest) (response *DetectQRCodesResponse, err error) {
+	response = CreateDetectQRCodesResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// DetectQRCodesWithChan invokes the imm.DetectQRCodes API asynchronously
+// api document: https://help.aliyun.com/api/imm/detectqrcodes.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DetectQRCodesWithChan(request *DetectQRCodesRequest) (<-chan *DetectQRCodesResponse, <-chan error) {
+	responseChan := make(chan *DetectQRCodesResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.DetectQRCodes(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// DetectQRCodesWithCallback invokes the imm.DetectQRCodes API asynchronously
+// api document: https://help.aliyun.com/api/imm/detectqrcodes.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DetectQRCodesWithCallback(request *DetectQRCodesRequest, callback func(response *DetectQRCodesResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *DetectQRCodesResponse
+		var err error
+		defer close(result)
+		response, err = client.DetectQRCodes(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// DetectQRCodesRequest is the request struct for api DetectQRCodes
+type DetectQRCodesRequest struct {
+	*requests.RpcRequest
+	SrcUris string `position:"Query" name:"SrcUris"`
+	Project string `position:"Query" name:"Project"`
+}
+
+// DetectQRCodesResponse is the response struct for api DetectQRCodes
+type DetectQRCodesResponse struct {
+	*responses.BaseResponse
+	RequestId      string               `json:"RequestId" xml:"RequestId"`
+	SuccessDetails []SuccessDetailsItem `json:"SuccessDetails" xml:"SuccessDetails"`
+	FailDetails    []FailDetailsItem    `json:"FailDetails" xml:"FailDetails"`
+}
+
+// CreateDetectQRCodesRequest creates a request to invoke DetectQRCodes API
+func CreateDetectQRCodesRequest() (request *DetectQRCodesRequest) {
+	request = &DetectQRCodesRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("imm", "2017-09-06", "DetectQRCodes", "imm", "openAPI")
+	return
+}
+
+// CreateDetectQRCodesResponse creates a response to parse from DetectQRCodes response
+func CreateDetectQRCodesResponse() (response *DetectQRCodesResponse) {
+	response = &DetectQRCodesResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 21 - 0
services/imm/struct_fail_details_in_detect_qr_codes.go

@@ -0,0 +1,21 @@
+package imm
+
+//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.
+
+// FailDetailsInDetectQRCodes is a nested struct in imm response
+type FailDetailsInDetectQRCodes struct {
+	FailDetailsItem []FailDetailsItem `json:"FailDetailsItem" xml:"FailDetailsItem"`
+}

+ 24 - 0
services/imm/struct_qr_codes_rectangle.go

@@ -0,0 +1,24 @@
+package imm
+
+//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.
+
+// QRCodesRectangle is a nested struct in imm response
+type QRCodesRectangle struct {
+	Left   int `json:"Left" xml:"Left"`
+	Top    int `json:"Top" xml:"Top"`
+	Width  int `json:"Width" xml:"Width"`
+	Height int `json:"Height" xml:"Height"`
+}

+ 21 - 0
services/imm/struct_success_details_in_detect_qr_codes.go

@@ -0,0 +1,21 @@
+package imm
+
+//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.
+
+// SuccessDetailsInDetectQRCodes is a nested struct in imm response
+type SuccessDetailsInDetectQRCodes struct {
+	SuccessDetailsItem []SuccessDetailsItem `json:"SuccessDetailsItem" xml:"SuccessDetailsItem"`
+}

+ 6 - 4
services/imm/struct_success_details_item.go

@@ -17,8 +17,10 @@ package imm
 
 // SuccessDetailsItem is a nested struct in imm response
 type SuccessDetailsItem struct {
-	PhotoId string      `json:"PhotoId" xml:"PhotoId"`
-	SrcUri  string      `json:"SrcUri" xml:"SrcUri"`
-	Faces   []FacesItem `json:"Faces" xml:"Faces"`
-	Tags    []TagsItem  `json:"Tags" xml:"Tags"`
+	PhotoId          string           `json:"PhotoId" xml:"PhotoId"`
+	Result           string           `json:"Result" xml:"Result"`
+	SrcUri           string           `json:"SrcUri" xml:"SrcUri"`
+	QRCodesRectangle QRCodesRectangle `json:"QRCodesRectangle" xml:"QRCodesRectangle"`
+	Faces            []FacesItem      `json:"Faces" xml:"Faces"`
+	Tags             []TagsItem       `json:"Tags" xml:"Tags"`
 }