فهرست منبع

Supported API GetTxtRecordForVerify.

sdk-team 6 سال پیش
والد
کامیت
0f0c4d0eb7
3فایلهای تغییر یافته به همراه218 افزوده شده و 0 حذف شده
  1. 4 0
      ChangeLog.txt
  2. 109 0
      services/alidns/get_txt_record_for_verify.go
  3. 105 0
      services/alidns/retrieve_domain.go

+ 4 - 0
ChangeLog.txt

@@ -1,3 +1,7 @@
+2019-11-28 Version: v1.60.274
+- Supported API GetTxtRecordForVerify.
+- Supported API RetrieveDomain.
+
 2019-11-28 Version: v1.60.273
 - Supported dash for compress.
 

+ 109 - 0
services/alidns/get_txt_record_for_verify.go

@@ -0,0 +1,109 @@
+package alidns
+
+//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"
+)
+
+// GetTxtRecordForVerify invokes the alidns.GetTxtRecordForVerify API synchronously
+// api document: https://help.aliyun.com/api/alidns/gettxtrecordforverify.html
+func (client *Client) GetTxtRecordForVerify(request *GetTxtRecordForVerifyRequest) (response *GetTxtRecordForVerifyResponse, err error) {
+	response = CreateGetTxtRecordForVerifyResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// GetTxtRecordForVerifyWithChan invokes the alidns.GetTxtRecordForVerify API asynchronously
+// api document: https://help.aliyun.com/api/alidns/gettxtrecordforverify.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) GetTxtRecordForVerifyWithChan(request *GetTxtRecordForVerifyRequest) (<-chan *GetTxtRecordForVerifyResponse, <-chan error) {
+	responseChan := make(chan *GetTxtRecordForVerifyResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.GetTxtRecordForVerify(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// GetTxtRecordForVerifyWithCallback invokes the alidns.GetTxtRecordForVerify API asynchronously
+// api document: https://help.aliyun.com/api/alidns/gettxtrecordforverify.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) GetTxtRecordForVerifyWithCallback(request *GetTxtRecordForVerifyRequest, callback func(response *GetTxtRecordForVerifyResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *GetTxtRecordForVerifyResponse
+		var err error
+		defer close(result)
+		response, err = client.GetTxtRecordForVerify(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// GetTxtRecordForVerifyRequest is the request struct for api GetTxtRecordForVerify
+type GetTxtRecordForVerifyRequest struct {
+	*requests.RpcRequest
+	DomainName   string `position:"Query" name:"DomainName"`
+	Type         string `position:"Query" name:"Type"`
+	UserClientIp string `position:"Query" name:"UserClientIp"`
+	Lang         string `position:"Query" name:"Lang"`
+}
+
+// GetTxtRecordForVerifyResponse is the response struct for api GetTxtRecordForVerify
+type GetTxtRecordForVerifyResponse struct {
+	*responses.BaseResponse
+	RequestId  string `json:"RequestId" xml:"RequestId"`
+	DomainName string `json:"DomainName" xml:"DomainName"`
+	RR         string `json:"RR" xml:"RR"`
+	Value      string `json:"Value" xml:"Value"`
+}
+
+// CreateGetTxtRecordForVerifyRequest creates a request to invoke GetTxtRecordForVerify API
+func CreateGetTxtRecordForVerifyRequest() (request *GetTxtRecordForVerifyRequest) {
+	request = &GetTxtRecordForVerifyRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("Alidns", "2015-01-09", "GetTxtRecordForVerify", "alidns", "openAPI")
+	return
+}
+
+// CreateGetTxtRecordForVerifyResponse creates a response to parse from GetTxtRecordForVerify response
+func CreateGetTxtRecordForVerifyResponse() (response *GetTxtRecordForVerifyResponse) {
+	response = &GetTxtRecordForVerifyResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 105 - 0
services/alidns/retrieve_domain.go

@@ -0,0 +1,105 @@
+package alidns
+
+//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"
+)
+
+// RetrieveDomain invokes the alidns.RetrieveDomain API synchronously
+// api document: https://help.aliyun.com/api/alidns/retrievedomain.html
+func (client *Client) RetrieveDomain(request *RetrieveDomainRequest) (response *RetrieveDomainResponse, err error) {
+	response = CreateRetrieveDomainResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// RetrieveDomainWithChan invokes the alidns.RetrieveDomain API asynchronously
+// api document: https://help.aliyun.com/api/alidns/retrievedomain.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) RetrieveDomainWithChan(request *RetrieveDomainRequest) (<-chan *RetrieveDomainResponse, <-chan error) {
+	responseChan := make(chan *RetrieveDomainResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.RetrieveDomain(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// RetrieveDomainWithCallback invokes the alidns.RetrieveDomain API asynchronously
+// api document: https://help.aliyun.com/api/alidns/retrievedomain.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) RetrieveDomainWithCallback(request *RetrieveDomainRequest, callback func(response *RetrieveDomainResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *RetrieveDomainResponse
+		var err error
+		defer close(result)
+		response, err = client.RetrieveDomain(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// RetrieveDomainRequest is the request struct for api RetrieveDomain
+type RetrieveDomainRequest struct {
+	*requests.RpcRequest
+	DomainName   string `position:"Query" name:"DomainName"`
+	UserClientIp string `position:"Query" name:"UserClientIp"`
+	Lang         string `position:"Query" name:"Lang"`
+}
+
+// RetrieveDomainResponse is the response struct for api RetrieveDomain
+type RetrieveDomainResponse struct {
+	*responses.BaseResponse
+	RequestId string `json:"RequestId" xml:"RequestId"`
+}
+
+// CreateRetrieveDomainRequest creates a request to invoke RetrieveDomain API
+func CreateRetrieveDomainRequest() (request *RetrieveDomainRequest) {
+	request = &RetrieveDomainRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("Alidns", "2015-01-09", "RetrieveDomain", "alidns", "openAPI")
+	return
+}
+
+// CreateRetrieveDomainResponse creates a response to parse from RetrieveDomain response
+func CreateRetrieveDomainResponse() (response *RetrieveDomainResponse) {
+	response = &RetrieveDomainResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}