package cms //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" ) // PutMonitorGroupDynamicRule invokes the cms.PutMonitorGroupDynamicRule API synchronously // api document: https://help.aliyun.com/api/cms/putmonitorgroupdynamicrule.html func (client *Client) PutMonitorGroupDynamicRule(request *PutMonitorGroupDynamicRuleRequest) (response *PutMonitorGroupDynamicRuleResponse, err error) { response = CreatePutMonitorGroupDynamicRuleResponse() err = client.DoAction(request, response) return } // PutMonitorGroupDynamicRuleWithChan invokes the cms.PutMonitorGroupDynamicRule API asynchronously // api document: https://help.aliyun.com/api/cms/putmonitorgroupdynamicrule.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) PutMonitorGroupDynamicRuleWithChan(request *PutMonitorGroupDynamicRuleRequest) (<-chan *PutMonitorGroupDynamicRuleResponse, <-chan error) { responseChan := make(chan *PutMonitorGroupDynamicRuleResponse, 1) errChan := make(chan error, 1) err := client.AddAsyncTask(func() { defer close(responseChan) defer close(errChan) response, err := client.PutMonitorGroupDynamicRule(request) if err != nil { errChan <- err } else { responseChan <- response } }) if err != nil { errChan <- err close(responseChan) close(errChan) } return responseChan, errChan } // PutMonitorGroupDynamicRuleWithCallback invokes the cms.PutMonitorGroupDynamicRule API asynchronously // api document: https://help.aliyun.com/api/cms/putmonitorgroupdynamicrule.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) PutMonitorGroupDynamicRuleWithCallback(request *PutMonitorGroupDynamicRuleRequest, callback func(response *PutMonitorGroupDynamicRuleResponse, err error)) <-chan int { result := make(chan int, 1) err := client.AddAsyncTask(func() { var response *PutMonitorGroupDynamicRuleResponse var err error defer close(result) response, err = client.PutMonitorGroupDynamicRule(request) callback(response, err) result <- 1 }) if err != nil { defer close(result) callback(nil, err) result <- 0 } return result } // PutMonitorGroupDynamicRuleRequest is the request struct for api PutMonitorGroupDynamicRule type PutMonitorGroupDynamicRuleRequest struct { *requests.RpcRequest GroupRules *[]PutMonitorGroupDynamicRuleGroupRules `position:"Query" name:"GroupRules" type:"Repeated"` GroupId requests.Integer `position:"Query" name:"GroupId"` } // PutMonitorGroupDynamicRuleGroupRules is a repeated param struct in PutMonitorGroupDynamicRuleRequest type PutMonitorGroupDynamicRuleGroupRules struct { FilterRelation string `name:"FilterRelation"` Filters *[]PutMonitorGroupDynamicRuleFilters `name:"Filters" type:"Repeated"` Category string `name:"Category"` } // PutMonitorGroupDynamicRuleFilters is a repeated param struct in PutMonitorGroupDynamicRuleRequest type PutMonitorGroupDynamicRuleFilters struct { Function string `name:"Function"` Name string `name:"Name"` Value string `name:"Value"` } // PutMonitorGroupDynamicRuleResponse is the response struct for api PutMonitorGroupDynamicRule type PutMonitorGroupDynamicRuleResponse struct { *responses.BaseResponse RequestId string `json:"RequestId" xml:"RequestId"` Success bool `json:"Success" xml:"Success"` Code int `json:"Code" xml:"Code"` Message string `json:"Message" xml:"Message"` } // CreatePutMonitorGroupDynamicRuleRequest creates a request to invoke PutMonitorGroupDynamicRule API func CreatePutMonitorGroupDynamicRuleRequest() (request *PutMonitorGroupDynamicRuleRequest) { request = &PutMonitorGroupDynamicRuleRequest{ RpcRequest: &requests.RpcRequest{}, } request.InitWithApiInfo("Cms", "2019-01-01", "PutMonitorGroupDynamicRule", "cms", "openAPI") return } // CreatePutMonitorGroupDynamicRuleResponse creates a response to parse from PutMonitorGroupDynamicRule response func CreatePutMonitorGroupDynamicRuleResponse() (response *PutMonitorGroupDynamicRuleResponse) { response = &PutMonitorGroupDynamicRuleResponse{ BaseResponse: &responses.BaseResponse{}, } return }