浏览代码

JARVIS SDK Auto Released By mainri.mxy,Version:1.19.6

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
haowei.yao 7 年之前
父节点
当前提交
a653370e3f

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2018-06-20 Version: 1.19.6
+1, Add InstanceList in product security information query.
+
 2018-06-14 Version: 1.19.5
 1, Add passwordInherit.
 

+ 108 - 0
services/jarvis/describe_access_white_list_eip_list.go

@@ -0,0 +1,108 @@
+package jarvis
+
+//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"
+)
+
+// DescribeAccessWhiteListEipList invokes the jarvis.DescribeAccessWhiteListEipList API synchronously
+// api document: https://help.aliyun.com/api/jarvis/describeaccesswhitelisteiplist.html
+func (client *Client) DescribeAccessWhiteListEipList(request *DescribeAccessWhiteListEipListRequest) (response *DescribeAccessWhiteListEipListResponse, err error) {
+	response = CreateDescribeAccessWhiteListEipListResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// DescribeAccessWhiteListEipListWithChan invokes the jarvis.DescribeAccessWhiteListEipList API asynchronously
+// api document: https://help.aliyun.com/api/jarvis/describeaccesswhitelisteiplist.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeAccessWhiteListEipListWithChan(request *DescribeAccessWhiteListEipListRequest) (<-chan *DescribeAccessWhiteListEipListResponse, <-chan error) {
+	responseChan := make(chan *DescribeAccessWhiteListEipListResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.DescribeAccessWhiteListEipList(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// DescribeAccessWhiteListEipListWithCallback invokes the jarvis.DescribeAccessWhiteListEipList API asynchronously
+// api document: https://help.aliyun.com/api/jarvis/describeaccesswhitelisteiplist.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeAccessWhiteListEipListWithCallback(request *DescribeAccessWhiteListEipListRequest, callback func(response *DescribeAccessWhiteListEipListResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *DescribeAccessWhiteListEipListResponse
+		var err error
+		defer close(result)
+		response, err = client.DescribeAccessWhiteListEipList(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// DescribeAccessWhiteListEipListRequest is the request struct for api DescribeAccessWhiteListEipList
+type DescribeAccessWhiteListEipListRequest struct {
+	*requests.RpcRequest
+	SourceIp   string `position:"Query" name:"SourceIp"`
+	Lang       string `position:"Query" name:"Lang"`
+	SourceCode string `position:"Query" name:"SourceCode"`
+}
+
+// DescribeAccessWhiteListEipListResponse is the response struct for api DescribeAccessWhiteListEipList
+type DescribeAccessWhiteListEipListResponse struct {
+	*responses.BaseResponse
+	RequestId  string `json:"RequestId" xml:"RequestId"`
+	TotalCount int    `json:"TotalCount" xml:"TotalCount"`
+	Module     string `json:"module" xml:"module"`
+	EcsList    []Ecs  `json:"EcsList" xml:"EcsList"`
+}
+
+// CreateDescribeAccessWhiteListEipListRequest creates a request to invoke DescribeAccessWhiteListEipList API
+func CreateDescribeAccessWhiteListEipListRequest() (request *DescribeAccessWhiteListEipListRequest) {
+	request = &DescribeAccessWhiteListEipListRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("jarvis", "2018-02-06", "DescribeAccessWhiteListEipList", "", "")
+	return
+}
+
+// CreateDescribeAccessWhiteListEipListResponse creates a response to parse from DescribeAccessWhiteListEipList response
+func CreateDescribeAccessWhiteListEipListResponse() (response *DescribeAccessWhiteListEipListResponse) {
+	response = &DescribeAccessWhiteListEipListResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 108 - 0
services/jarvis/describe_access_white_list_slb_list.go

@@ -0,0 +1,108 @@
+package jarvis
+
+//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"
+)
+
+// DescribeAccessWhiteListSlbList invokes the jarvis.DescribeAccessWhiteListSlbList API synchronously
+// api document: https://help.aliyun.com/api/jarvis/describeaccesswhitelistslblist.html
+func (client *Client) DescribeAccessWhiteListSlbList(request *DescribeAccessWhiteListSlbListRequest) (response *DescribeAccessWhiteListSlbListResponse, err error) {
+	response = CreateDescribeAccessWhiteListSlbListResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// DescribeAccessWhiteListSlbListWithChan invokes the jarvis.DescribeAccessWhiteListSlbList API asynchronously
+// api document: https://help.aliyun.com/api/jarvis/describeaccesswhitelistslblist.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeAccessWhiteListSlbListWithChan(request *DescribeAccessWhiteListSlbListRequest) (<-chan *DescribeAccessWhiteListSlbListResponse, <-chan error) {
+	responseChan := make(chan *DescribeAccessWhiteListSlbListResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.DescribeAccessWhiteListSlbList(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// DescribeAccessWhiteListSlbListWithCallback invokes the jarvis.DescribeAccessWhiteListSlbList API asynchronously
+// api document: https://help.aliyun.com/api/jarvis/describeaccesswhitelistslblist.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeAccessWhiteListSlbListWithCallback(request *DescribeAccessWhiteListSlbListRequest, callback func(response *DescribeAccessWhiteListSlbListResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *DescribeAccessWhiteListSlbListResponse
+		var err error
+		defer close(result)
+		response, err = client.DescribeAccessWhiteListSlbList(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// DescribeAccessWhiteListSlbListRequest is the request struct for api DescribeAccessWhiteListSlbList
+type DescribeAccessWhiteListSlbListRequest struct {
+	*requests.RpcRequest
+	SourceIp   string `position:"Query" name:"SourceIp"`
+	Lang       string `position:"Query" name:"Lang"`
+	SourceCode string `position:"Query" name:"SourceCode"`
+}
+
+// DescribeAccessWhiteListSlbListResponse is the response struct for api DescribeAccessWhiteListSlbList
+type DescribeAccessWhiteListSlbListResponse struct {
+	*responses.BaseResponse
+	RequestId  string `json:"RequestId" xml:"RequestId"`
+	TotalCount int    `json:"TotalCount" xml:"TotalCount"`
+	Module     string `json:"module" xml:"module"`
+	EcsList    []Ecs  `json:"EcsList" xml:"EcsList"`
+}
+
+// CreateDescribeAccessWhiteListSlbListRequest creates a request to invoke DescribeAccessWhiteListSlbList API
+func CreateDescribeAccessWhiteListSlbListRequest() (request *DescribeAccessWhiteListSlbListRequest) {
+	request = &DescribeAccessWhiteListSlbListRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("jarvis", "2018-02-06", "DescribeAccessWhiteListSlbList", "", "")
+	return
+}
+
+// CreateDescribeAccessWhiteListSlbListResponse creates a response to parse from DescribeAccessWhiteListSlbList response
+func CreateDescribeAccessWhiteListSlbListResponse() (response *DescribeAccessWhiteListSlbListResponse) {
+	response = &DescribeAccessWhiteListSlbListResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 1 - 0
services/jarvis/struct_data.go

@@ -43,6 +43,7 @@ type Data struct {
 	Status           string                 `json:"Status" xml:"Status"`
 	GmtRealExpire    string                 `json:"GmtRealExpire" xml:"GmtRealExpire"`
 	SrcUid           string                 `json:"SrcUid" xml:"SrcUid"`
+	InstanceList     []string               `json:"InstanceList" xml:"InstanceList"`
 	Items            []Item                 `json:"Items" xml:"Items"`
 	RdsWhitelistRisk []RdsWhitelistRiskItem `json:"RdsWhitelistRisk" xml:"RdsWhitelistRisk"`
 	EcsSecGroupRisk  []EcsSecGroupRiskItem  `json:"EcsSecGroupRisk" xml:"EcsSecGroupRisk"`

+ 1 - 1
services/jarvis/struct_ecs.go

@@ -17,7 +17,7 @@ package jarvis
 
 // Ecs is a nested struct in jarvis response
 type Ecs struct {
-	InstanceName string `json:"InstanceName" xml:"InstanceName"`
 	InstanceId   string `json:"InstanceId" xml:"InstanceId"`
 	IP           string `json:"IP" xml:"IP"`
+	InstanceName string `json:"InstanceName" xml:"InstanceName"`
 }

+ 2 - 2
services/jarvis/struct_ecs_list.go → services/jarvis/struct_ecs_list_in_describe_access_white_list_eip_list.go

@@ -15,7 +15,7 @@ package jarvis
 // Code generated by Alibaba Cloud SDK Code Generator.
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
-// EcsList is a nested struct in jarvis response
-type EcsList struct {
+// EcsListInDescribeAccessWhiteListEipList is a nested struct in jarvis response
+type EcsListInDescribeAccessWhiteListEipList struct {
 	Ecs []Ecs `json:"Ecs" xml:"Ecs"`
 }

+ 21 - 0
services/jarvis/struct_ecs_list_in_describe_access_white_list_slb_list.go

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

+ 21 - 0
services/jarvis/struct_ecs_list_in_describe_access_whitelist_ecs_list.go

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

+ 21 - 0
services/jarvis/struct_instance_list.go

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