Browse Source

DCDN SDK Auto Released By xiaoyao,Version:1.47.1

Signed-off-by: yixiong.jxy <yixiong.jxy@alibaba-inc.com>
yixiong.jxy 7 years ago
parent
commit
46a6617bc3
2 changed files with 110 additions and 0 deletions
  1. 3 0
      ChangeLog.txt
  2. 107 0
      services/dcdn/batch_set_dcdn_domain_configs.go

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2018-12-20 Version: 1.47.1
+1, Sync CDN API.
+
 2018-12-20 Version: 1.47.0
 1, Add Dns Sec apis.
 2, Add coupon and promotion fields for order apis.

+ 107 - 0
services/dcdn/batch_set_dcdn_domain_configs.go

@@ -0,0 +1,107 @@
+package dcdn
+
+//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"
+)
+
+// BatchSetDcdnDomainConfigs invokes the dcdn.BatchSetDcdnDomainConfigs API synchronously
+// api document: https://help.aliyun.com/api/dcdn/batchsetdcdndomainconfigs.html
+func (client *Client) BatchSetDcdnDomainConfigs(request *BatchSetDcdnDomainConfigsRequest) (response *BatchSetDcdnDomainConfigsResponse, err error) {
+	response = CreateBatchSetDcdnDomainConfigsResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// BatchSetDcdnDomainConfigsWithChan invokes the dcdn.BatchSetDcdnDomainConfigs API asynchronously
+// api document: https://help.aliyun.com/api/dcdn/batchsetdcdndomainconfigs.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) BatchSetDcdnDomainConfigsWithChan(request *BatchSetDcdnDomainConfigsRequest) (<-chan *BatchSetDcdnDomainConfigsResponse, <-chan error) {
+	responseChan := make(chan *BatchSetDcdnDomainConfigsResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.BatchSetDcdnDomainConfigs(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// BatchSetDcdnDomainConfigsWithCallback invokes the dcdn.BatchSetDcdnDomainConfigs API asynchronously
+// api document: https://help.aliyun.com/api/dcdn/batchsetdcdndomainconfigs.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) BatchSetDcdnDomainConfigsWithCallback(request *BatchSetDcdnDomainConfigsRequest, callback func(response *BatchSetDcdnDomainConfigsResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *BatchSetDcdnDomainConfigsResponse
+		var err error
+		defer close(result)
+		response, err = client.BatchSetDcdnDomainConfigs(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// BatchSetDcdnDomainConfigsRequest is the request struct for api BatchSetDcdnDomainConfigs
+type BatchSetDcdnDomainConfigsRequest struct {
+	*requests.RpcRequest
+	Functions     string           `position:"Query" name:"Functions"`
+	SecurityToken string           `position:"Query" name:"SecurityToken"`
+	DomainNames   string           `position:"Query" name:"DomainNames"`
+	OwnerAccount  string           `position:"Query" name:"OwnerAccount"`
+	OwnerId       requests.Integer `position:"Query" name:"OwnerId"`
+}
+
+// BatchSetDcdnDomainConfigsResponse is the response struct for api BatchSetDcdnDomainConfigs
+type BatchSetDcdnDomainConfigsResponse struct {
+	*responses.BaseResponse
+	RequestId string `json:"RequestId" xml:"RequestId"`
+}
+
+// CreateBatchSetDcdnDomainConfigsRequest creates a request to invoke BatchSetDcdnDomainConfigs API
+func CreateBatchSetDcdnDomainConfigsRequest() (request *BatchSetDcdnDomainConfigsRequest) {
+	request = &BatchSetDcdnDomainConfigsRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("dcdn", "2018-01-15", "BatchSetDcdnDomainConfigs", "dcdn", "openAPI")
+	return
+}
+
+// CreateBatchSetDcdnDomainConfigsResponse creates a response to parse from BatchSetDcdnDomainConfigs response
+func CreateBatchSetDcdnDomainConfigsResponse() (response *BatchSetDcdnDomainConfigsResponse) {
+	response = &BatchSetDcdnDomainConfigsResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}