Browse Source

JARVIS-PUBLIC SDK Auto Released By shenshi,Version:1.53.31

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
haowei.yao 6 years ago
parent
commit
eff1b24733

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2019-03-13 Version: 1.53.31
+1, Update Dependency
+
 2019-03-13 Version: 1.53.30
 1, Update Dependency
 

+ 113 - 0
services/jarvis-public/describe_attack_event.go

@@ -0,0 +1,113 @@
+package jarvis_public
+
+//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"
+)
+
+// DescribeAttackEvent invokes the jarvis_public.DescribeAttackEvent API synchronously
+// api document: https://help.aliyun.com/api/jarvis-public/describeattackevent.html
+func (client *Client) DescribeAttackEvent(request *DescribeAttackEventRequest) (response *DescribeAttackEventResponse, err error) {
+	response = CreateDescribeAttackEventResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// DescribeAttackEventWithChan invokes the jarvis_public.DescribeAttackEvent API asynchronously
+// api document: https://help.aliyun.com/api/jarvis-public/describeattackevent.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeAttackEventWithChan(request *DescribeAttackEventRequest) (<-chan *DescribeAttackEventResponse, <-chan error) {
+	responseChan := make(chan *DescribeAttackEventResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.DescribeAttackEvent(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// DescribeAttackEventWithCallback invokes the jarvis_public.DescribeAttackEvent API asynchronously
+// api document: https://help.aliyun.com/api/jarvis-public/describeattackevent.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeAttackEventWithCallback(request *DescribeAttackEventRequest, callback func(response *DescribeAttackEventResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *DescribeAttackEventResponse
+		var err error
+		defer close(result)
+		response, err = client.DescribeAttackEvent(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// DescribeAttackEventRequest is the request struct for api DescribeAttackEvent
+type DescribeAttackEventRequest struct {
+	*requests.RpcRequest
+	SourceIp     string           `position:"Query" name:"SourceIp"`
+	ServerIpList string           `position:"Query" name:"ServerIpList"`
+	PageSize     requests.Integer `position:"Query" name:"PageSize"`
+	EndTime      requests.Integer `position:"Query" name:"EndTime"`
+	CurrentPage  requests.Integer `position:"Query" name:"CurrentPage"`
+	StartTime    requests.Integer `position:"Query" name:"StartTime"`
+	Lang         string           `position:"Query" name:"Lang"`
+	Region       string           `position:"Query" name:"Region"`
+	ProductType  string           `position:"Query" name:"ProductType"`
+}
+
+// DescribeAttackEventResponse is the response struct for api DescribeAttackEvent
+type DescribeAttackEventResponse struct {
+	*responses.BaseResponse
+	RequestId string  `json:"RequestId" xml:"RequestId"`
+	Module    string  `json:"Module" xml:"Module"`
+	EventList []Event `json:"EventList" xml:"EventList"`
+}
+
+// CreateDescribeAttackEventRequest creates a request to invoke DescribeAttackEvent API
+func CreateDescribeAttackEventRequest() (request *DescribeAttackEventRequest) {
+	request = &DescribeAttackEventRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("jarvis-public", "2018-06-21", "DescribeAttackEvent", "jarvis-public", "openAPI")
+	return
+}
+
+// CreateDescribeAttackEventResponse creates a response to parse from DescribeAttackEvent response
+func CreateDescribeAttackEventResponse() (response *DescribeAttackEventResponse) {
+	response = &DescribeAttackEventResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 113 - 0
services/jarvis-public/describe_attacked_ip.go

@@ -0,0 +1,113 @@
+package jarvis_public
+
+//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"
+)
+
+// DescribeAttackedIp invokes the jarvis_public.DescribeAttackedIp API synchronously
+// api document: https://help.aliyun.com/api/jarvis-public/describeattackedip.html
+func (client *Client) DescribeAttackedIp(request *DescribeAttackedIpRequest) (response *DescribeAttackedIpResponse, err error) {
+	response = CreateDescribeAttackedIpResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// DescribeAttackedIpWithChan invokes the jarvis_public.DescribeAttackedIp API asynchronously
+// api document: https://help.aliyun.com/api/jarvis-public/describeattackedip.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeAttackedIpWithChan(request *DescribeAttackedIpRequest) (<-chan *DescribeAttackedIpResponse, <-chan error) {
+	responseChan := make(chan *DescribeAttackedIpResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.DescribeAttackedIp(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// DescribeAttackedIpWithCallback invokes the jarvis_public.DescribeAttackedIp API asynchronously
+// api document: https://help.aliyun.com/api/jarvis-public/describeattackedip.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeAttackedIpWithCallback(request *DescribeAttackedIpRequest, callback func(response *DescribeAttackedIpResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *DescribeAttackedIpResponse
+		var err error
+		defer close(result)
+		response, err = client.DescribeAttackedIp(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// DescribeAttackedIpRequest is the request struct for api DescribeAttackedIp
+type DescribeAttackedIpRequest struct {
+	*requests.RpcRequest
+	SourceIp     string           `position:"Query" name:"SourceIp"`
+	ServerIpList string           `position:"Query" name:"ServerIpList"`
+	PageSize     requests.Integer `position:"Query" name:"PageSize"`
+	EndTime      requests.Integer `position:"Query" name:"EndTime"`
+	CurrentPage  requests.Integer `position:"Query" name:"CurrentPage"`
+	StartTime    requests.Integer `position:"Query" name:"StartTime"`
+	Lang         string           `position:"Query" name:"Lang"`
+	Region       string           `position:"Query" name:"Region"`
+	ProductType  string           `position:"Query" name:"ProductType"`
+}
+
+// DescribeAttackedIpResponse is the response struct for api DescribeAttackedIp
+type DescribeAttackedIpResponse struct {
+	*responses.BaseResponse
+	RequestId string   `json:"RequestId" xml:"RequestId"`
+	Module    string   `json:"Module" xml:"Module"`
+	IpList    []string `json:"IpList" xml:"IpList"`
+}
+
+// CreateDescribeAttackedIpRequest creates a request to invoke DescribeAttackedIp API
+func CreateDescribeAttackedIpRequest() (request *DescribeAttackedIpRequest) {
+	request = &DescribeAttackedIpRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("jarvis-public", "2018-06-21", "DescribeAttackedIp", "jarvis-public", "openAPI")
+	return
+}
+
+// CreateDescribeAttackedIpResponse creates a response to parse from DescribeAttackedIp response
+func CreateDescribeAttackedIpResponse() (response *DescribeAttackedIpResponse) {
+	response = &DescribeAttackedIpResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 113 - 0
services/jarvis-public/describe_count_attack_event.go

@@ -0,0 +1,113 @@
+package jarvis_public
+
+//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"
+)
+
+// DescribeCountAttackEvent invokes the jarvis_public.DescribeCountAttackEvent API synchronously
+// api document: https://help.aliyun.com/api/jarvis-public/describecountattackevent.html
+func (client *Client) DescribeCountAttackEvent(request *DescribeCountAttackEventRequest) (response *DescribeCountAttackEventResponse, err error) {
+	response = CreateDescribeCountAttackEventResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// DescribeCountAttackEventWithChan invokes the jarvis_public.DescribeCountAttackEvent API asynchronously
+// api document: https://help.aliyun.com/api/jarvis-public/describecountattackevent.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeCountAttackEventWithChan(request *DescribeCountAttackEventRequest) (<-chan *DescribeCountAttackEventResponse, <-chan error) {
+	responseChan := make(chan *DescribeCountAttackEventResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.DescribeCountAttackEvent(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// DescribeCountAttackEventWithCallback invokes the jarvis_public.DescribeCountAttackEvent API asynchronously
+// api document: https://help.aliyun.com/api/jarvis-public/describecountattackevent.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeCountAttackEventWithCallback(request *DescribeCountAttackEventRequest, callback func(response *DescribeCountAttackEventResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *DescribeCountAttackEventResponse
+		var err error
+		defer close(result)
+		response, err = client.DescribeCountAttackEvent(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// DescribeCountAttackEventRequest is the request struct for api DescribeCountAttackEvent
+type DescribeCountAttackEventRequest struct {
+	*requests.RpcRequest
+	SourceIp     string           `position:"Query" name:"SourceIp"`
+	ServerIpList string           `position:"Query" name:"ServerIpList"`
+	PageSize     requests.Integer `position:"Query" name:"PageSize"`
+	EndTime      requests.Integer `position:"Query" name:"EndTime"`
+	CurrentPage  requests.Integer `position:"Query" name:"CurrentPage"`
+	StartTime    requests.Integer `position:"Query" name:"StartTime"`
+	Lang         string           `position:"Query" name:"Lang"`
+	Region       string           `position:"Query" name:"Region"`
+	ProductType  string           `position:"Query" name:"ProductType"`
+}
+
+// DescribeCountAttackEventResponse is the response struct for api DescribeCountAttackEvent
+type DescribeCountAttackEventResponse struct {
+	*responses.BaseResponse
+	RequestId string `json:"RequestId" xml:"RequestId"`
+	Module    string `json:"Module" xml:"Module"`
+	Count     int    `json:"Count" xml:"Count"`
+}
+
+// CreateDescribeCountAttackEventRequest creates a request to invoke DescribeCountAttackEvent API
+func CreateDescribeCountAttackEventRequest() (request *DescribeCountAttackEventRequest) {
+	request = &DescribeCountAttackEventRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("jarvis-public", "2018-06-21", "DescribeCountAttackEvent", "jarvis-public", "openAPI")
+	return
+}
+
+// CreateDescribeCountAttackEventResponse creates a response to parse from DescribeCountAttackEvent response
+func CreateDescribeCountAttackEventResponse() (response *DescribeCountAttackEventResponse) {
+	response = &DescribeCountAttackEventResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 1 - 1
services/jarvis-public/describe_phone_info.go

@@ -97,7 +97,7 @@ func CreateDescribePhoneInfoRequest() (request *DescribePhoneInfoRequest) {
 	request = &DescribePhoneInfoRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("jarvis-public", "2018-06-21", "DescribePhoneInfo", "", "")
+	request.InitWithApiInfo("jarvis-public", "2018-06-21", "DescribePhoneInfo", "jarvis-public", "openAPI")
 	return
 }
 

+ 27 - 0
services/jarvis-public/struct_event.go

@@ -0,0 +1,27 @@
+package jarvis_public
+
+//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.
+
+// Event is a nested struct in jarvis_public response
+type Event struct {
+	VmIp           string `json:"VmIp" xml:"VmIp"`
+	SourceIp       string `json:"SourceIp" xml:"SourceIp"`
+	Url            string `json:"Url" xml:"Url"`
+	AttackType     string `json:"AttackType" xml:"AttackType"`
+	GmtCreate      string `json:"GmtCreate" xml:"GmtCreate"`
+	GmtCreateStamp int    `json:"GmtCreateStamp" xml:"GmtCreateStamp"`
+	GmtModified    string `json:"GmtModified" xml:"GmtModified"`
+}

+ 21 - 0
services/jarvis-public/struct_event_list.go

@@ -0,0 +1,21 @@
+package jarvis_public
+
+//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.
+
+// EventList is a nested struct in jarvis_public response
+type EventList struct {
+	Event []Event `json:"Event" xml:"Event"`
+}

+ 21 - 0
services/jarvis-public/struct_ip_list.go

@@ -0,0 +1,21 @@
+package jarvis_public
+
+//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.
+
+// IpList is a nested struct in jarvis_public response
+type IpList struct {
+	IpList []string `json:"IpList" xml:"IpList"`
+}