package cdn //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" ) // SetReqHeaderConfig invokes the cdn.SetReqHeaderConfig API synchronously // api document: https://help.aliyun.com/api/cdn/setreqheaderconfig.html func (client *Client) SetReqHeaderConfig(request *SetReqHeaderConfigRequest) (response *SetReqHeaderConfigResponse, err error) { response = CreateSetReqHeaderConfigResponse() err = client.DoAction(request, response) return } // SetReqHeaderConfigWithChan invokes the cdn.SetReqHeaderConfig API asynchronously // api document: https://help.aliyun.com/api/cdn/setreqheaderconfig.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) SetReqHeaderConfigWithChan(request *SetReqHeaderConfigRequest) (<-chan *SetReqHeaderConfigResponse, <-chan error) { responseChan := make(chan *SetReqHeaderConfigResponse, 1) errChan := make(chan error, 1) err := client.AddAsyncTask(func() { defer close(responseChan) defer close(errChan) response, err := client.SetReqHeaderConfig(request) if err != nil { errChan <- err } else { responseChan <- response } }) if err != nil { errChan <- err close(responseChan) close(errChan) } return responseChan, errChan } // SetReqHeaderConfigWithCallback invokes the cdn.SetReqHeaderConfig API asynchronously // api document: https://help.aliyun.com/api/cdn/setreqheaderconfig.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) SetReqHeaderConfigWithCallback(request *SetReqHeaderConfigRequest, callback func(response *SetReqHeaderConfigResponse, err error)) <-chan int { result := make(chan int, 1) err := client.AddAsyncTask(func() { var response *SetReqHeaderConfigResponse var err error defer close(result) response, err = client.SetReqHeaderConfig(request) callback(response, err) result <- 1 }) if err != nil { defer close(result) callback(nil, err) result <- 0 } return result } // SetReqHeaderConfigRequest is the request struct for api SetReqHeaderConfig type SetReqHeaderConfigRequest struct { *requests.RpcRequest SecurityToken string `position:"Query" name:"SecurityToken"` ConfigId requests.Integer `position:"Query" name:"ConfigId"` DomainName string `position:"Query" name:"DomainName"` OwnerId requests.Integer `position:"Query" name:"OwnerId"` Value string `position:"Query" name:"Value"` Key string `position:"Query" name:"Key"` } // SetReqHeaderConfigResponse is the response struct for api SetReqHeaderConfig type SetReqHeaderConfigResponse struct { *responses.BaseResponse RequestId string `json:"RequestId" xml:"RequestId"` } // CreateSetReqHeaderConfigRequest creates a request to invoke SetReqHeaderConfig API func CreateSetReqHeaderConfigRequest() (request *SetReqHeaderConfigRequest) { request = &SetReqHeaderConfigRequest{ RpcRequest: &requests.RpcRequest{}, } request.InitWithApiInfo("Cdn", "2018-05-10", "SetReqHeaderConfig", "", "") return } // CreateSetReqHeaderConfigResponse creates a response to parse from SetReqHeaderConfig response func CreateSetReqHeaderConfigResponse() (response *SetReqHeaderConfigResponse) { response = &SetReqHeaderConfigResponse{ BaseResponse: &responses.BaseResponse{}, } return }