1package kms
2
3//Licensed under the Apache License, Version 2.0 (the "License");
4//you may not use this file except in compliance with the License.
5//You may obtain a copy of the License at
6//
7//http://www.apache.org/licenses/LICENSE-2.0
8//
9//Unless required by applicable law or agreed to in writing, software
10//distributed under the License is distributed on an "AS IS" BASIS,
11//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//See the License for the specific language governing permissions and
13//limitations under the License.
14//
15// Code generated by Alibaba Cloud SDK Code Generator.
16// Changes may cause incorrect behavior and will be lost if the code is regenerated.
17
18import (
19	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
20	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
21)
22
23// Decrypt invokes the kms.Decrypt API synchronously
24func (client *Client) Decrypt(request *DecryptRequest) (response *DecryptResponse, err error) {
25	response = CreateDecryptResponse()
26	err = client.DoAction(request, response)
27	return
28}
29
30// DecryptWithChan invokes the kms.Decrypt API asynchronously
31func (client *Client) DecryptWithChan(request *DecryptRequest) (<-chan *DecryptResponse, <-chan error) {
32	responseChan := make(chan *DecryptResponse, 1)
33	errChan := make(chan error, 1)
34	err := client.AddAsyncTask(func() {
35		defer close(responseChan)
36		defer close(errChan)
37		response, err := client.Decrypt(request)
38		if err != nil {
39			errChan <- err
40		} else {
41			responseChan <- response
42		}
43	})
44	if err != nil {
45		errChan <- err
46		close(responseChan)
47		close(errChan)
48	}
49	return responseChan, errChan
50}
51
52// DecryptWithCallback invokes the kms.Decrypt API asynchronously
53func (client *Client) DecryptWithCallback(request *DecryptRequest, callback func(response *DecryptResponse, err error)) <-chan int {
54	result := make(chan int, 1)
55	err := client.AddAsyncTask(func() {
56		var response *DecryptResponse
57		var err error
58		defer close(result)
59		response, err = client.Decrypt(request)
60		callback(response, err)
61		result <- 1
62	})
63	if err != nil {
64		defer close(result)
65		callback(nil, err)
66		result <- 0
67	}
68	return result
69}
70
71// DecryptRequest is the request struct for api Decrypt
72type DecryptRequest struct {
73	*requests.RpcRequest
74	EncryptionContext string `position:"Query" name:"EncryptionContext"`
75	CiphertextBlob    string `position:"Query" name:"CiphertextBlob"`
76}
77
78// DecryptResponse is the response struct for api Decrypt
79type DecryptResponse struct {
80	*responses.BaseResponse
81	Plaintext    string `json:"Plaintext" xml:"Plaintext"`
82	KeyId        string `json:"KeyId" xml:"KeyId"`
83	RequestId    string `json:"RequestId" xml:"RequestId"`
84	KeyVersionId string `json:"KeyVersionId" xml:"KeyVersionId"`
85}
86
87// CreateDecryptRequest creates a request to invoke Decrypt API
88func CreateDecryptRequest() (request *DecryptRequest) {
89	request = &DecryptRequest{
90		RpcRequest: &requests.RpcRequest{},
91	}
92	request.InitWithApiInfo("Kms", "2016-01-20", "Decrypt", "kms", "openAPI")
93	request.Method = requests.POST
94	return
95}
96
97// CreateDecryptResponse creates a response to parse from Decrypt response
98func CreateDecryptResponse() (response *DecryptResponse) {
99	response = &DecryptResponse{
100		BaseResponse: &responses.BaseResponse{},
101	}
102	return
103}
104