package vpc //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" ) // DescribeVpnSslServerLogs invokes the vpc.DescribeVpnSslServerLogs API synchronously // api document: https://help.aliyun.com/api/vpc/describevpnsslserverlogs.html func (client *Client) DescribeVpnSslServerLogs(request *DescribeVpnSslServerLogsRequest) (response *DescribeVpnSslServerLogsResponse, err error) { response = CreateDescribeVpnSslServerLogsResponse() err = client.DoAction(request, response) return } // DescribeVpnSslServerLogsWithChan invokes the vpc.DescribeVpnSslServerLogs API asynchronously // api document: https://help.aliyun.com/api/vpc/describevpnsslserverlogs.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) DescribeVpnSslServerLogsWithChan(request *DescribeVpnSslServerLogsRequest) (<-chan *DescribeVpnSslServerLogsResponse, <-chan error) { responseChan := make(chan *DescribeVpnSslServerLogsResponse, 1) errChan := make(chan error, 1) err := client.AddAsyncTask(func() { defer close(responseChan) defer close(errChan) response, err := client.DescribeVpnSslServerLogs(request) if err != nil { errChan <- err } else { responseChan <- response } }) if err != nil { errChan <- err close(responseChan) close(errChan) } return responseChan, errChan } // DescribeVpnSslServerLogsWithCallback invokes the vpc.DescribeVpnSslServerLogs API asynchronously // api document: https://help.aliyun.com/api/vpc/describevpnsslserverlogs.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) DescribeVpnSslServerLogsWithCallback(request *DescribeVpnSslServerLogsRequest, callback func(response *DescribeVpnSslServerLogsResponse, err error)) <-chan int { result := make(chan int, 1) err := client.AddAsyncTask(func() { var response *DescribeVpnSslServerLogsResponse var err error defer close(result) response, err = client.DescribeVpnSslServerLogs(request) callback(response, err) result <- 1 }) if err != nil { defer close(result) callback(nil, err) result <- 0 } return result } // DescribeVpnSslServerLogsRequest is the request struct for api DescribeVpnSslServerLogs type DescribeVpnSslServerLogsRequest struct { *requests.RpcRequest ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"` PageNumber requests.Integer `position:"Query" name:"PageNumber"` MinutePeriod requests.Integer `position:"Query" name:"MinutePeriod"` PageSize requests.Integer `position:"Query" name:"PageSize"` VpnSslServerId string `position:"Query" name:"VpnSslServerId"` From requests.Integer `position:"Query" name:"From"` ResourceOwnerAccount string `position:"Query" name:"ResourceOwnerAccount"` OwnerAccount string `position:"Query" name:"OwnerAccount"` OwnerId requests.Integer `position:"Query" name:"OwnerId"` To requests.Integer `position:"Query" name:"To"` } // DescribeVpnSslServerLogsResponse is the response struct for api DescribeVpnSslServerLogs type DescribeVpnSslServerLogsResponse struct { *responses.BaseResponse RequestId string `json:"RequestId" xml:"RequestId"` Count int `json:"Count" xml:"Count"` IsCompleted bool `json:"IsCompleted" xml:"IsCompleted"` PageNumber int `json:"PageNumber" xml:"PageNumber"` PageSize int `json:"PageSize" xml:"PageSize"` Data Data `json:"Data" xml:"Data"` } // CreateDescribeVpnSslServerLogsRequest creates a request to invoke DescribeVpnSslServerLogs API func CreateDescribeVpnSslServerLogsRequest() (request *DescribeVpnSslServerLogsRequest) { request = &DescribeVpnSslServerLogsRequest{ RpcRequest: &requests.RpcRequest{}, } request.InitWithApiInfo("Vpc", "2016-04-28", "DescribeVpnSslServerLogs", "vpc", "openAPI") return } // CreateDescribeVpnSslServerLogsResponse creates a response to parse from DescribeVpnSslServerLogs response func CreateDescribeVpnSslServerLogsResponse() (response *DescribeVpnSslServerLogsResponse) { response = &DescribeVpnSslServerLogsResponse{ BaseResponse: &responses.BaseResponse{}, } return }