index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeHistogramResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeHistogramResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeHistogramResponse extends AcsResponse {
private String requestId;
private List<ItemsItem> items;
private List<String> categories;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<ItemsItem> getItems() {
return this.items;
}
public void setItems(List<ItemsItem> items) {
this.items = items;
}
public List<String> getCategories() {
return this.categories;
}
public void setCategories(List<String> categories) {
this.categories = categories;
}
public static class ItemsItem {
private List<String> data;
public List<String> getData() {
return this.data;
}
public void setData(List<String> data) {
this.data = data;
}
}
@Override
public DescribeHistogramResponse getInstance(UnmarshallerContext context) {
return DescribeHistogramResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeInstanceStatisticsRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeInstanceStatisticsRequest extends RpcAcsRequest<DescribeInstanceStatisticsResponse> {
public DescribeInstanceStatisticsRequest() {
super("aegis", "2016-11-11", "DescribeInstanceStatistics", "vipaegis");
}
private String sourceIp;
private String lang;
private String uuid;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public String getUuid() {
return this.uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
if(uuid != null){
putQueryParameter("Uuid", uuid);
}
}
@Override
public Class<DescribeInstanceStatisticsResponse> getResponseClass() {
return DescribeInstanceStatisticsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeInstanceStatisticsResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeInstanceStatisticsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeInstanceStatisticsResponse extends AcsResponse {
private String requestId;
private List<Entity> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Entity> getData() {
return this.data;
}
public void setData(List<Entity> data) {
this.data = data;
}
public static class Entity {
private String uuid;
private Integer account;
private Integer health;
private Integer trojan;
private Integer suspicious;
private Integer vul;
public String getUuid() {
return this.uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public Integer getAccount() {
return this.account;
}
public void setAccount(Integer account) {
this.account = account;
}
public Integer getHealth() {
return this.health;
}
public void setHealth(Integer health) {
this.health = health;
}
public Integer getTrojan() {
return this.trojan;
}
public void setTrojan(Integer trojan) {
this.trojan = trojan;
}
public Integer getSuspicious() {
return this.suspicious;
}
public void setSuspicious(Integer suspicious) {
this.suspicious = suspicious;
}
public Integer getVul() {
return this.vul;
}
public void setVul(Integer vul) {
this.vul = vul;
}
}
@Override
public DescribeInstanceStatisticsResponse getInstance(UnmarshallerContext context) {
return DescribeInstanceStatisticsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeJoinRuleListRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeJoinRuleListRequest extends RpcAcsRequest<DescribeJoinRuleListResponse> {
public DescribeJoinRuleListRequest() {
super("aegis", "2016-11-11", "DescribeJoinRuleList", "vipaegis");
}
private String warnLevel;
private Integer pageSize;
private Long remark;
private Integer currentPage;
public String getWarnLevel() {
return this.warnLevel;
}
public void setWarnLevel(String warnLevel) {
this.warnLevel = warnLevel;
if(warnLevel != null){
putQueryParameter("WarnLevel", warnLevel);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Long getRemark() {
return this.remark;
}
public void setRemark(Long remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("remark", remark.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
@Override
public Class<DescribeJoinRuleListResponse> getResponseClass() {
return DescribeJoinRuleListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeJoinRuleListResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeJoinRuleListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeJoinRuleListResponse extends AcsResponse {
private String requestId;
private List<JoinRuleListItem> joinRuleList;
private PageInfo pageInfo;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<JoinRuleListItem> getJoinRuleList() {
return this.joinRuleList;
}
public void setJoinRuleList(List<JoinRuleListItem> joinRuleList) {
this.joinRuleList = joinRuleList;
}
public PageInfo getPageInfo() {
return this.pageInfo;
}
public void setPageInfo(PageInfo pageInfo) {
this.pageInfo = pageInfo;
}
public static class JoinRuleListItem {
private Integer timeWindow;
private String warnLevel;
private Integer dataSourceId1;
private String description;
private String ruleName;
private String joinRelation;
private Integer dataSourceId2;
private String expression2;
private Integer ruleId;
private String expression1;
private String actions;
private String statisticsRules;
private Boolean needGroup;
private String statusCode;
public Integer getTimeWindow() {
return this.timeWindow;
}
public void setTimeWindow(Integer timeWindow) {
this.timeWindow = timeWindow;
}
public String getWarnLevel() {
return this.warnLevel;
}
public void setWarnLevel(String warnLevel) {
this.warnLevel = warnLevel;
}
public Integer getDataSourceId1() {
return this.dataSourceId1;
}
public void setDataSourceId1(Integer dataSourceId1) {
this.dataSourceId1 = dataSourceId1;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
public String getJoinRelation() {
return this.joinRelation;
}
public void setJoinRelation(String joinRelation) {
this.joinRelation = joinRelation;
}
public Integer getDataSourceId2() {
return this.dataSourceId2;
}
public void setDataSourceId2(Integer dataSourceId2) {
this.dataSourceId2 = dataSourceId2;
}
public String getExpression2() {
return this.expression2;
}
public void setExpression2(String expression2) {
this.expression2 = expression2;
}
public Integer getRuleId() {
return this.ruleId;
}
public void setRuleId(Integer ruleId) {
this.ruleId = ruleId;
}
public String getExpression1() {
return this.expression1;
}
public void setExpression1(String expression1) {
this.expression1 = expression1;
}
public String getActions() {
return this.actions;
}
public void setActions(String actions) {
this.actions = actions;
}
public String getStatisticsRules() {
return this.statisticsRules;
}
public void setStatisticsRules(String statisticsRules) {
this.statisticsRules = statisticsRules;
}
public Boolean getNeedGroup() {
return this.needGroup;
}
public void setNeedGroup(Boolean needGroup) {
this.needGroup = needGroup;
}
public String getStatusCode() {
return this.statusCode;
}
public void setStatusCode(String statusCode) {
this.statusCode = statusCode;
}
}
public static class PageInfo {
private Integer count;
private Integer pageSize;
private Integer currentPage;
private Integer totalCount;
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
}
@Override
public DescribeJoinRuleListResponse getInstance(UnmarshallerContext context) {
return DescribeJoinRuleListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeListAccessKeyIdAuthRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeListAccessKeyIdAuthRequest extends RpcAcsRequest<DescribeListAccessKeyIdAuthResponse> {
public DescribeListAccessKeyIdAuthRequest() {
super("aegis", "2016-11-11", "DescribeListAccessKeyIdAuth", "vipaegis");
}
@Override
public Class<DescribeListAccessKeyIdAuthResponse> getResponseClass() {
return DescribeListAccessKeyIdAuthResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeListAccessKeyIdAuthResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeListAccessKeyIdAuthResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeListAccessKeyIdAuthResponse extends AcsResponse {
private String requestId;
private Boolean auth;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getAuth() {
return this.auth;
}
public void setAuth(Boolean auth) {
this.auth = auth;
}
@Override
public DescribeListAccessKeyIdAuthResponse getInstance(UnmarshallerContext context) {
return DescribeListAccessKeyIdAuthResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogInfoRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeLogInfoRequest extends RpcAcsRequest<DescribeLogInfoResponse> {
public DescribeLogInfoRequest() {
super("aegis", "2016-11-11", "DescribeLogInfo", "vipaegis");
}
private String sourceIp;
private String query;
private String pageSize;
private String endTime;
private String currentPage;
private String startTime;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getQuery() {
return this.query;
}
public void setQuery(String query) {
this.query = query;
if(query != null){
putQueryParameter("Query", query);
}
}
public String getPageSize() {
return this.pageSize;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize);
}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(String currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
@Override
public Class<DescribeLogInfoResponse> getResponseClass() {
return DescribeLogInfoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogInfoResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeLogInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeLogInfoResponse extends AcsResponse {
private String requestId;
private Integer totalCount;
private List<Item> logInfoItems;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<Item> getLogInfoItems() {
return this.logInfoItems;
}
public void setLogInfoItems(List<Item> logInfoItems) {
this.logInfoItems = logInfoItems;
}
public static class Item {
private String name;
private String id;
private List<Field> fields;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public List<Field> getFields() {
return this.fields;
}
public void setFields(List<Field> fields) {
this.fields = fields;
}
public static class Field {
private String name;
private String type;
private String desc;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getDesc() {
return this.desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
}
}
@Override
public DescribeLogInfoResponse getInstance(UnmarshallerContext context) {
return DescribeLogInfoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogItemsRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeLogItemsRequest extends RpcAcsRequest<DescribeLogItemsResponse> {
public DescribeLogItemsRequest() {
super("aegis", "2016-11-11", "DescribeLogItems", "vipaegis");
}
private Integer loginOffset;
private Integer processSnapshotOffset;
private Integer portSnapshotOffset;
private String query;
private String endTime;
private String currentPage;
private Integer networkOffset;
private String startTime;
private Integer accountSnapshotOffset;
private Integer processOffset;
private String sourceIp;
private Integer crackOffset;
private String pageSize;
public Integer getLoginOffset() {
return this.loginOffset;
}
public void setLoginOffset(Integer loginOffset) {
this.loginOffset = loginOffset;
if(loginOffset != null){
putQueryParameter("LoginOffset", loginOffset.toString());
}
}
public Integer getProcessSnapshotOffset() {
return this.processSnapshotOffset;
}
public void setProcessSnapshotOffset(Integer processSnapshotOffset) {
this.processSnapshotOffset = processSnapshotOffset;
if(processSnapshotOffset != null){
putQueryParameter("ProcessSnapshotOffset", processSnapshotOffset.toString());
}
}
public Integer getPortSnapshotOffset() {
return this.portSnapshotOffset;
}
public void setPortSnapshotOffset(Integer portSnapshotOffset) {
this.portSnapshotOffset = portSnapshotOffset;
if(portSnapshotOffset != null){
putQueryParameter("PortSnapshotOffset", portSnapshotOffset.toString());
}
}
public String getQuery() {
return this.query;
}
public void setQuery(String query) {
this.query = query;
if(query != null){
putQueryParameter("Query", query);
}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(String currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage);
}
}
public Integer getNetworkOffset() {
return this.networkOffset;
}
public void setNetworkOffset(Integer networkOffset) {
this.networkOffset = networkOffset;
if(networkOffset != null){
putQueryParameter("NetworkOffset", networkOffset.toString());
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
public Integer getAccountSnapshotOffset() {
return this.accountSnapshotOffset;
}
public void setAccountSnapshotOffset(Integer accountSnapshotOffset) {
this.accountSnapshotOffset = accountSnapshotOffset;
if(accountSnapshotOffset != null){
putQueryParameter("AccountSnapshotOffset", accountSnapshotOffset.toString());
}
}
public Integer getProcessOffset() {
return this.processOffset;
}
public void setProcessOffset(Integer processOffset) {
this.processOffset = processOffset;
if(processOffset != null){
putQueryParameter("ProcessOffset", processOffset.toString());
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Integer getCrackOffset() {
return this.crackOffset;
}
public void setCrackOffset(Integer crackOffset) {
this.crackOffset = crackOffset;
if(crackOffset != null){
putQueryParameter("CrackOffset", crackOffset.toString());
}
}
public String getPageSize() {
return this.pageSize;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize);
}
}
@Override
public Class<DescribeLogItemsResponse> getResponseClass() {
return DescribeLogItemsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogItemsResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeLogItemsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeLogItemsResponse extends AcsResponse {
private String requestId;
private Integer totalCount;
private Integer crackTotalCount;
private Integer setPageSize;
private Integer processOffset;
private Integer networkOffset;
private Integer portSnapshotOffset;
private Integer processSnapshotTotalCount;
private Integer crackOffset;
private Integer networkTotalCount;
private Integer portSnapshotTotalCount;
private Integer processSnapshotOffset;
private Integer processTotalCount;
private Integer loginTotalCount;
private Integer currentPage;
private Integer accountSnapshotOffset;
private Integer accountSnapshotTotalCount;
private List<LogsListItem> logsList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getCrackTotalCount() {
return this.crackTotalCount;
}
public void setCrackTotalCount(Integer crackTotalCount) {
this.crackTotalCount = crackTotalCount;
}
public Integer getSetPageSize() {
return this.setPageSize;
}
public void setSetPageSize(Integer setPageSize) {
this.setPageSize = setPageSize;
}
public Integer getProcessOffset() {
return this.processOffset;
}
public void setProcessOffset(Integer processOffset) {
this.processOffset = processOffset;
}
public Integer getNetworkOffset() {
return this.networkOffset;
}
public void setNetworkOffset(Integer networkOffset) {
this.networkOffset = networkOffset;
}
public Integer getPortSnapshotOffset() {
return this.portSnapshotOffset;
}
public void setPortSnapshotOffset(Integer portSnapshotOffset) {
this.portSnapshotOffset = portSnapshotOffset;
}
public Integer getProcessSnapshotTotalCount() {
return this.processSnapshotTotalCount;
}
public void setProcessSnapshotTotalCount(Integer processSnapshotTotalCount) {
this.processSnapshotTotalCount = processSnapshotTotalCount;
}
public Integer getCrackOffset() {
return this.crackOffset;
}
public void setCrackOffset(Integer crackOffset) {
this.crackOffset = crackOffset;
}
public Integer getNetworkTotalCount() {
return this.networkTotalCount;
}
public void setNetworkTotalCount(Integer networkTotalCount) {
this.networkTotalCount = networkTotalCount;
}
public Integer getPortSnapshotTotalCount() {
return this.portSnapshotTotalCount;
}
public void setPortSnapshotTotalCount(Integer portSnapshotTotalCount) {
this.portSnapshotTotalCount = portSnapshotTotalCount;
}
public Integer getProcessSnapshotOffset() {
return this.processSnapshotOffset;
}
public void setProcessSnapshotOffset(Integer processSnapshotOffset) {
this.processSnapshotOffset = processSnapshotOffset;
}
public Integer getProcessTotalCount() {
return this.processTotalCount;
}
public void setProcessTotalCount(Integer processTotalCount) {
this.processTotalCount = processTotalCount;
}
public Integer getLoginTotalCount() {
return this.loginTotalCount;
}
public void setLoginTotalCount(Integer loginTotalCount) {
this.loginTotalCount = loginTotalCount;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getAccountSnapshotOffset() {
return this.accountSnapshotOffset;
}
public void setAccountSnapshotOffset(Integer accountSnapshotOffset) {
this.accountSnapshotOffset = accountSnapshotOffset;
}
public Integer getAccountSnapshotTotalCount() {
return this.accountSnapshotTotalCount;
}
public void setAccountSnapshotTotalCount(Integer accountSnapshotTotalCount) {
this.accountSnapshotTotalCount = accountSnapshotTotalCount;
}
public List<LogsListItem> getLogsList() {
return this.logsList;
}
public void setLogsList(List<LogsListItem> logsList) {
this.logsList = logsList;
}
public static class LogsListItem {
private String mLogTime;
private String logSourceId;
private String logSource;
private List<MContentsItem> mContents;
public String getMLogTime() {
return this.mLogTime;
}
public void setMLogTime(String mLogTime) {
this.mLogTime = mLogTime;
}
public String getLogSourceId() {
return this.logSourceId;
}
public void setLogSourceId(String logSourceId) {
this.logSourceId = logSourceId;
}
public String getLogSource() {
return this.logSource;
}
public void setLogSource(String logSource) {
this.logSource = logSource;
}
public List<MContentsItem> getMContents() {
return this.mContents;
}
public void setMContents(List<MContentsItem> mContents) {
this.mContents = mContents;
}
public static class MContentsItem {
private String mKey;
private String mValue;
public String getMKey() {
return this.mKey;
}
public void setMKey(String mKey) {
this.mKey = mKey;
}
public String getMValue() {
return this.mValue;
}
public void setMValue(String mValue) {
this.mValue = mValue;
}
}
}
@Override
public DescribeLogItemsResponse getInstance(UnmarshallerContext context) {
return DescribeLogItemsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogMetaRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeLogMetaRequest extends RpcAcsRequest<DescribeLogMetaResponse> {
public DescribeLogMetaRequest() {
super("aegis", "2016-11-11", "DescribeLogMeta", "vipaegis");
}
private String sourceIp;
private String from;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
if(from != null){
putQueryParameter("From", from);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeLogMetaResponse> getResponseClass() {
return DescribeLogMetaResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogMetaResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeLogMetaResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeLogMetaResponse extends AcsResponse {
private String requestId;
private Integer totalCount;
private List<LogMeta> logMetaList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<LogMeta> getLogMetaList() {
return this.logMetaList;
}
public void setLogMetaList(List<LogMeta> logMetaList) {
this.logMetaList = logMetaList;
}
public static class LogMeta {
private String project;
private String userProject;
private String logStore;
private String logDesc;
private String category;
private String status;
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
}
public String getUserProject() {
return this.userProject;
}
public void setUserProject(String userProject) {
this.userProject = userProject;
}
public String getLogStore() {
return this.logStore;
}
public void setLogStore(String logStore) {
this.logStore = logStore;
}
public String getLogDesc() {
return this.logDesc;
}
public void setLogDesc(String logDesc) {
this.logDesc = logDesc;
}
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
}
@Override
public DescribeLogMetaResponse getInstance(UnmarshallerContext context) {
return DescribeLogMetaResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogQueryRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeLogQueryRequest extends RpcAcsRequest<DescribeLogQueryResponse> {
public DescribeLogQueryRequest() {
super("aegis", "2016-11-11", "DescribeLogQuery", "vipaegis");
}
private String sourceIp;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
@Override
public Class<DescribeLogQueryResponse> getResponseClass() {
return DescribeLogQueryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogQueryResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeLogQueryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeLogQueryResponse extends AcsResponse {
private String requestId;
private Integer listTotal;
private List<QueryItemsItem> queryItems;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getListTotal() {
return this.listTotal;
}
public void setListTotal(Integer listTotal) {
this.listTotal = listTotal;
}
public List<QueryItemsItem> getQueryItems() {
return this.queryItems;
}
public void setQueryItems(List<QueryItemsItem> queryItems) {
this.queryItems = queryItems;
}
public static class QueryItemsItem {
private String queryDetail;
private String queryName;
private String conditions;
public String getQueryDetail() {
return this.queryDetail;
}
public void setQueryDetail(String queryDetail) {
this.queryDetail = queryDetail;
}
public String getQueryName() {
return this.queryName;
}
public void setQueryName(String queryName) {
this.queryName = queryName;
}
public String getConditions() {
return this.conditions;
}
public void setConditions(String conditions) {
this.conditions = conditions;
}
}
@Override
public DescribeLogQueryResponse getInstance(UnmarshallerContext context) {
return DescribeLogQueryResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogShipperStatusRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeLogShipperStatusRequest extends RpcAcsRequest<DescribeLogShipperStatusResponse> {
public DescribeLogShipperStatusRequest() {
super("aegis", "2016-11-11", "DescribeLogShipperStatus", "vipaegis");
}
private String sourceIp;
private String from;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
if(from != null){
putQueryParameter("From", from);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeLogShipperStatusResponse> getResponseClass() {
return DescribeLogShipperStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogShipperStatusResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeLogShipperStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeLogShipperStatusResponse extends AcsResponse {
private String requestId;
private LogShipperStatus logShipperStatus;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public LogShipperStatus getLogShipperStatus() {
return this.logShipperStatus;
}
public void setLogShipperStatus(LogShipperStatus logShipperStatus) {
this.logShipperStatus = logShipperStatus;
}
public static class LogShipperStatus {
private String buyStatus;
private String authStatus;
private String openStatus;
private String slsServiceStatus;
public String getBuyStatus() {
return this.buyStatus;
}
public void setBuyStatus(String buyStatus) {
this.buyStatus = buyStatus;
}
public String getAuthStatus() {
return this.authStatus;
}
public void setAuthStatus(String authStatus) {
this.authStatus = authStatus;
}
public String getOpenStatus() {
return this.openStatus;
}
public void setOpenStatus(String openStatus) {
this.openStatus = openStatus;
}
public String getSlsServiceStatus() {
return this.slsServiceStatus;
}
public void setSlsServiceStatus(String slsServiceStatus) {
this.slsServiceStatus = slsServiceStatus;
}
}
@Override
public DescribeLogShipperStatusResponse getInstance(UnmarshallerContext context) {
return DescribeLogShipperStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLoginLogsRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeLoginLogsRequest extends RpcAcsRequest<DescribeLoginLogsResponse> {
public DescribeLoginLogsRequest() {
super("aegis", "2016-11-11", "DescribeLoginLogs", "vipaegis");
}
private String types;
private String sourceIp;
private Integer pageSize;
private String statuses;
private Integer currentPage;
private String remark;
private String tag;
public String getTypes() {
return this.types;
}
public void setTypes(String types) {
this.types = types;
if(types != null){
putQueryParameter("Types", types);
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getStatuses() {
return this.statuses;
}
public void setStatuses(String statuses) {
this.statuses = statuses;
if(statuses != null){
putQueryParameter("Statuses", statuses);
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
if(tag != null){
putQueryParameter("Tag", tag);
}
}
@Override
public Class<DescribeLoginLogsResponse> getResponseClass() {
return DescribeLoginLogsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLoginLogsResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeLoginLogsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeLoginLogsResponse extends AcsResponse {
private String requestId;
private Integer pageSize;
private Integer currentPage;
private Integer totalCount;
private List<LogListItem> logList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<LogListItem> getLogList() {
return this.logList;
}
public void setLogList(List<LogListItem> logList) {
this.logList = logList;
}
public static class LogListItem {
private String loginSourceIp;
private String instanceName;
private Long groupId;
private String ip;
private String type;
private String userName;
private String uuid;
private Integer protocol;
private Long loginTime;
private String instanceId;
private String osVersion;
private String protocolName;
private String online;
private String location;
private Long id;
private String region;
private Integer status;
public String getLoginSourceIp() {
return this.loginSourceIp;
}
public void setLoginSourceIp(String loginSourceIp) {
this.loginSourceIp = loginSourceIp;
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public Long getGroupId() {
return this.groupId;
}
public void setGroupId(Long groupId) {
this.groupId = groupId;
}
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUuid() {
return this.uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public Integer getBizProtocol() {
return this.protocol;
}
public void setBizProtocol(Integer protocol) {
this.protocol = protocol;
}
/**
* @deprecated use getBizProtocol instead of this.
*/
@Deprecated
public Integer getProtocol() {
return this.protocol;
}
/**
* @deprecated use setBizProtocol instead of this.
*/
@Deprecated
public void setProtocol(Integer protocol) {
this.protocol = protocol;
}
public Long getLoginTime() {
return this.loginTime;
}
public void setLoginTime(Long loginTime) {
this.loginTime = loginTime;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getOsVersion() {
return this.osVersion;
}
public void setOsVersion(String osVersion) {
this.osVersion = osVersion;
}
public String getProtocolName() {
return this.protocolName;
}
public void setProtocolName(String protocolName) {
this.protocolName = protocolName;
}
public String getOnline() {
return this.online;
}
public void setOnline(String online) {
this.online = online;
}
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
}
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
}
@Override
public DescribeLoginLogsResponse getInstance(UnmarshallerContext context) {
return DescribeLoginLogsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogstoreStorageRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeLogstoreStorageRequest extends RpcAcsRequest<DescribeLogstoreStorageResponse> {
public DescribeLogstoreStorageRequest() {
super("aegis", "2016-11-11", "DescribeLogstoreStorage", "vipaegis");
}
private String from;
private String lang;
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
if(from != null){
putQueryParameter("From", from);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeLogstoreStorageResponse> getResponseClass() {
return DescribeLogstoreStorageResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeLogstoreStorageResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeLogstoreStorageResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeLogstoreStorageResponse extends AcsResponse {
private String requestId;
private String logstore;
private Integer ttl;
private Long preserve;
private Long used;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getLogstore() {
return this.logstore;
}
public void setLogstore(String logstore) {
this.logstore = logstore;
}
public Integer getTtl() {
return this.ttl;
}
public void setTtl(Integer ttl) {
this.ttl = ttl;
}
public Long getPreserve() {
return this.preserve;
}
public void setPreserve(Long preserve) {
this.preserve = preserve;
}
public Long getUsed() {
return this.used;
}
public void setUsed(Long used) {
this.used = used;
}
@Override
public DescribeLogstoreStorageResponse getInstance(UnmarshallerContext context) {
return DescribeLogstoreStorageResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeMacConfigRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeMacConfigRequest extends RpcAcsRequest<DescribeMacConfigResponse> {
public DescribeMacConfigRequest() {
super("aegis", "2016-11-11", "DescribeMacConfig", "vipaegis");
}
private Long resourceOwnerId;
private String types;
private String sourceIp;
private String extern;
private String type;
private String config;
private String target;
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getTypes() {
return this.types;
}
public void setTypes(String types) {
this.types = types;
if(types != null){
putQueryParameter("Types", types);
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getExtern() {
return this.extern;
}
public void setExtern(String extern) {
this.extern = extern;
if(extern != null){
putQueryParameter("Extern", extern);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getConfig() {
return this.config;
}
public void setConfig(String config) {
this.config = config;
if(config != null){
putQueryParameter("Config", config);
}
}
public String getTarget() {
return this.target;
}
public void setTarget(String target) {
this.target = target;
if(target != null){
putQueryParameter("Target", target);
}
}
@Override
public Class<DescribeMacConfigResponse> getResponseClass() {
return DescribeMacConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeMacConfigResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeMacConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeMacConfigResponse extends AcsResponse {
private String requestId;
private Integer count;
private Integer pageSize;
private Integer currentPage;
private Integer totalCount;
private List<Config> configs;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<Config> getConfigs() {
return this.configs;
}
public void setConfigs(List<Config> configs) {
this.configs = configs;
}
public static class Config {
private String startTime;
private String endTime;
private String ip;
private Long strategyId;
private String account;
private String location;
private String switcher;
private String vulType;
private Integer uuidCount;
private Integer totalCount;
private List<Target> targetList;
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public Long getStrategyId() {
return this.strategyId;
}
public void setStrategyId(Long strategyId) {
this.strategyId = strategyId;
}
public String getAccount() {
return this.account;
}
public void setAccount(String account) {
this.account = account;
}
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
}
public String getSwitcher() {
return this.switcher;
}
public void setSwitcher(String switcher) {
this.switcher = switcher;
}
public String getVulType() {
return this.vulType;
}
public void setVulType(String vulType) {
this.vulType = vulType;
}
public Integer getUuidCount() {
return this.uuidCount;
}
public void setUuidCount(Integer uuidCount) {
this.uuidCount = uuidCount;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<Target> getTargetList() {
return this.targetList;
}
public void setTargetList(List<Target> targetList) {
this.targetList = targetList;
}
public static class Target {
private String flag;
private String targetType;
private String target;
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public String getTargetType() {
return this.targetType;
}
public void setTargetType(String targetType) {
this.targetType = targetType;
}
public String getTarget() {
return this.target;
}
public void setTarget(String target) {
this.target = target;
}
}
}
@Override
public DescribeMacConfigResponse getInstance(UnmarshallerContext context) {
return DescribeMacConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeMachineConfigRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeMachineConfigRequest extends RpcAcsRequest<DescribeMachineConfigResponse> {
public DescribeMachineConfigRequest() {
super("aegis", "2016-11-11", "DescribeMachineConfig", "vipaegis");
}
private Long resourceOwnerId;
private String types;
private String sourceIp;
private Integer pageSize;
private Integer currentPage;
private String type;
private String lang;
private String config;
private String target;
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getTypes() {
return this.types;
}
public void setTypes(String types) {
this.types = types;
if(types != null){
putQueryParameter("Types", types);
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public String getConfig() {
return this.config;
}
public void setConfig(String config) {
this.config = config;
if(config != null){
putQueryParameter("Config", config);
}
}
public String getTarget() {
return this.target;
}
public void setTarget(String target) {
this.target = target;
if(target != null){
putQueryParameter("Target", target);
}
}
@Override
public Class<DescribeMachineConfigResponse> getResponseClass() {
return DescribeMachineConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeMachineConfigResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeMachineConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeMachineConfigResponse extends AcsResponse {
private String requestId;
private Integer count;
private List<ConfigTarget> configTargets;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public List<ConfigTarget> getConfigTargets() {
return this.configTargets;
}
public void setConfigTargets(List<ConfigTarget> configTargets) {
this.configTargets = configTargets;
}
public static class ConfigTarget {
private String targetType;
private String target;
private String flag;
public String getTargetType() {
return this.targetType;
}
public void setTargetType(String targetType) {
this.targetType = targetType;
}
public String getTarget() {
return this.target;
}
public void setTarget(String target) {
this.target = target;
}
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
}
@Override
public DescribeMachineConfigResponse getInstance(UnmarshallerContext context) {
return DescribeMachineConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeMetaDataRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeMetaDataRequest extends RpcAcsRequest<DescribeMetaDataResponse> {
public DescribeMetaDataRequest() {
super("aegis", "2016-11-11", "DescribeMetaData", "vipaegis");
}
private String projectName;
private String logStoreName;
private String regionNo;
public String getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
if(projectName != null){
putQueryParameter("ProjectName", projectName);
}
}
public String getLogStoreName() {
return this.logStoreName;
}
public void setLogStoreName(String logStoreName) {
this.logStoreName = logStoreName;
if(logStoreName != null){
putQueryParameter("LogStoreName", logStoreName);
}
}
public String getRegionNo() {
return this.regionNo;
}
public void setRegionNo(String regionNo) {
this.regionNo = regionNo;
if(regionNo != null){
putQueryParameter("RegionNo", regionNo);
}
}
@Override
public Class<DescribeMetaDataResponse> getResponseClass() {
return DescribeMetaDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeMetaDataResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeMetaDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeMetaDataResponse extends AcsResponse {
private String requestId;
private MetaData metaData;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public MetaData getMetaData() {
return this.metaData;
}
public void setMetaData(MetaData metaData) {
this.metaData = metaData;
}
public static class MetaData {
private String logStoreName;
private String projectName;
private Integer status;
private List<DatasourceField> datasourceFieldList;
public String getLogStoreName() {
return this.logStoreName;
}
public void setLogStoreName(String logStoreName) {
this.logStoreName = logStoreName;
}
public String getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public List<DatasourceField> getDatasourceFieldList() {
return this.datasourceFieldList;
}
public void setDatasourceFieldList(List<DatasourceField> datasourceFieldList) {
this.datasourceFieldList = datasourceFieldList;
}
public static class DatasourceField {
private String fieldName;
private String valueType;
private String fieldDescription;
private String fieldAliasName;
private String fieldType;
private String fieldValue;
private Integer isIdentification;
public String getFieldName() {
return this.fieldName;
}
public void setFieldName(String fieldName) {
this.fieldName = fieldName;
}
public String getValueType() {
return this.valueType;
}
public void setValueType(String valueType) {
this.valueType = valueType;
}
public String getFieldDescription() {
return this.fieldDescription;
}
public void setFieldDescription(String fieldDescription) {
this.fieldDescription = fieldDescription;
}
public String getFieldAliasName() {
return this.fieldAliasName;
}
public void setFieldAliasName(String fieldAliasName) {
this.fieldAliasName = fieldAliasName;
}
public String getFieldType() {
return this.fieldType;
}
public void setFieldType(String fieldType) {
this.fieldType = fieldType;
}
public String getFieldValue() {
return this.fieldValue;
}
public void setFieldValue(String fieldValue) {
this.fieldValue = fieldValue;
}
public Integer getIsIdentification() {
return this.isIdentification;
}
public void setIsIdentification(Integer isIdentification) {
this.isIdentification = isIdentification;
}
}
}
@Override
public DescribeMetaDataResponse getInstance(UnmarshallerContext context) {
return DescribeMetaDataResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeNsasSuspEventTypeRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeNsasSuspEventTypeRequest extends RpcAcsRequest<DescribeNsasSuspEventTypeResponse> {
public DescribeNsasSuspEventTypeRequest() {
super("aegis", "2016-11-11", "DescribeNsasSuspEventType", "vipaegis");
}
private String sourceIp;
private String name;
private String remark;
private String from;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
if(from != null){
putQueryParameter("From", from);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeNsasSuspEventTypeResponse> getResponseClass() {
return DescribeNsasSuspEventTypeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeNsasSuspEventTypeResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeNsasSuspEventTypeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeNsasSuspEventTypeResponse extends AcsResponse {
private String requestId;
private List<Data> eventTypes;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Data> getEventTypes() {
return this.eventTypes;
}
public void setEventTypes(List<Data> eventTypes) {
this.eventTypes = eventTypes;
}
public static class Data {
private String name;
private String type;
private Integer suspEventCount;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public Integer getSuspEventCount() {
return this.suspEventCount;
}
public void setSuspEventCount(Integer suspEventCount) {
this.suspEventCount = suspEventCount;
}
}
@Override
public DescribeNsasSuspEventTypeResponse getInstance(UnmarshallerContext context) {
return DescribeNsasSuspEventTypeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeOperateInfoRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeOperateInfoRequest extends RpcAcsRequest<DescribeOperateInfoResponse> {
public DescribeOperateInfoRequest() {
super("aegis", "2016-11-11", "DescribeOperateInfo", "vipaegis");
}
private String sourceIp;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeOperateInfoResponse> getResponseClass() {
return DescribeOperateInfoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeOperateInfoResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeOperateInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeOperateInfoResponse extends AcsResponse {
private String requestId;
private Integer healthCheckDealedCount;
private Integer securityEventDealedCount;
private Integer vulnerabilityDealedCount;
private Boolean success;
private List<String> suspEventValueArray;
private List<String> suspEventAaggregatValueArray;
private List<String> vulValueArray;
private List<String> vulAaggregatValueArray;
private List<String> dateArray;
private List<String> healthCheckValueArray;
private List<String> healthCheckAaggregatValueArray;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHealthCheckDealedCount() {
return this.healthCheckDealedCount;
}
public void setHealthCheckDealedCount(Integer healthCheckDealedCount) {
this.healthCheckDealedCount = healthCheckDealedCount;
}
public Integer getSecurityEventDealedCount() {
return this.securityEventDealedCount;
}
public void setSecurityEventDealedCount(Integer securityEventDealedCount) {
this.securityEventDealedCount = securityEventDealedCount;
}
public Integer getVulnerabilityDealedCount() {
return this.vulnerabilityDealedCount;
}
public void setVulnerabilityDealedCount(Integer vulnerabilityDealedCount) {
this.vulnerabilityDealedCount = vulnerabilityDealedCount;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<String> getSuspEventValueArray() {
return this.suspEventValueArray;
}
public void setSuspEventValueArray(List<String> suspEventValueArray) {
this.suspEventValueArray = suspEventValueArray;
}
public List<String> getSuspEventAaggregatValueArray() {
return this.suspEventAaggregatValueArray;
}
public void setSuspEventAaggregatValueArray(List<String> suspEventAaggregatValueArray) {
this.suspEventAaggregatValueArray = suspEventAaggregatValueArray;
}
public List<String> getVulValueArray() {
return this.vulValueArray;
}
public void setVulValueArray(List<String> vulValueArray) {
this.vulValueArray = vulValueArray;
}
public List<String> getVulAaggregatValueArray() {
return this.vulAaggregatValueArray;
}
public void setVulAaggregatValueArray(List<String> vulAaggregatValueArray) {
this.vulAaggregatValueArray = vulAaggregatValueArray;
}
public List<String> getDateArray() {
return this.dateArray;
}
public void setDateArray(List<String> dateArray) {
this.dateArray = dateArray;
}
public List<String> getHealthCheckValueArray() {
return this.healthCheckValueArray;
}
public void setHealthCheckValueArray(List<String> healthCheckValueArray) {
this.healthCheckValueArray = healthCheckValueArray;
}
public List<String> getHealthCheckAaggregatValueArray() {
return this.healthCheckAaggregatValueArray;
}
public void setHealthCheckAaggregatValueArray(List<String> healthCheckAaggregatValueArray) {
this.healthCheckAaggregatValueArray = healthCheckAaggregatValueArray;
}
@Override
public DescribeOperateInfoResponse getInstance(UnmarshallerContext context) {
return DescribeOperateInfoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeQuaraFileRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeQuaraFileRequest extends RpcAcsRequest<DescribeQuaraFileResponse> {
public DescribeQuaraFileRequest() {
super("aegis", "2016-11-11", "DescribeQuaraFile", "vipaegis");
}
private String sourceIp;
private Integer pageSize;
private Integer currentPage;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
@Override
public Class<DescribeQuaraFileResponse> getResponseClass() {
return DescribeQuaraFileResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeQuaraFileResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeQuaraFileResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeQuaraFileResponse extends AcsResponse {
private String requestId;
private Integer pageSize;
private Integer totalCount;
private Integer currentPage;
private List<QuaraFile> quaraFiles;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public List<QuaraFile> getQuaraFiles() {
return this.quaraFiles;
}
public void setQuaraFiles(List<QuaraFile> quaraFiles) {
this.quaraFiles = quaraFiles;
}
public static class QuaraFile {
private String path;
private String eventName;
private Boolean online;
private String eventType;
private String tag;
private String uuid;
private String fileStatus;
private String md5;
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
public String getEventName() {
return this.eventName;
}
public void setEventName(String eventName) {
this.eventName = eventName;
}
public Boolean getOnline() {
return this.online;
}
public void setOnline(Boolean online) {
this.online = online;
}
public String getEventType() {
return this.eventType;
}
public void setEventType(String eventType) {
this.eventType = eventType;
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getUuid() {
return this.uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getFileStatus() {
return this.fileStatus;
}
public void setFileStatus(String fileStatus) {
this.fileStatus = fileStatus;
}
public String getMd5() {
return this.md5;
}
public void setMd5(String md5) {
this.md5 = md5;
}
}
@Override
public DescribeQuaraFileResponse getInstance(UnmarshallerContext context) {
return DescribeQuaraFileResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeResultListRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeResultListRequest extends RpcAcsRequest<DescribeResultListResponse> {
public DescribeResultListRequest() {
super("aegis", "2016-11-11", "DescribeResultList", "vipaegis");
}
private Integer pageSize;
private Long endTime;
private String ruleName;
private String remark;
private String uuidList;
private String dealed;
private Integer currentPage;
private Long startTime;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
if(ruleName != null){
putQueryParameter("RuleName", ruleName);
}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public String getUuidList() {
return this.uuidList;
}
public void setUuidList(String uuidList) {
this.uuidList = uuidList;
if(uuidList != null){
putQueryParameter("UuidList", uuidList);
}
}
public String getDealed() {
return this.dealed;
}
public void setDealed(String dealed) {
this.dealed = dealed;
if(dealed != null){
putQueryParameter("Dealed", dealed);
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
@Override
public Class<DescribeResultListResponse> getResponseClass() {
return DescribeResultListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeResultListResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeResultListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeResultListResponse extends AcsResponse {
private String requestId;
private List<ResultListItem> resultList;
private PageInfo pageInfo;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<ResultListItem> getResultList() {
return this.resultList;
}
public void setResultList(List<ResultListItem> resultList) {
this.resultList = resultList;
}
public PageInfo getPageInfo() {
return this.pageInfo;
}
public void setPageInfo(PageInfo pageInfo) {
this.pageInfo = pageInfo;
}
public static class ResultListItem {
private Long lastTimestamp;
private Long modifiedTimestamp;
private String warnLevel;
private String uniqueKey;
private Long lastOperate;
private Long createTimestamp;
private String ruleDescription;
private String ruleType;
private String ruleName;
private String details;
private Integer id;
private Long aliUid;
private Integer ruleId;
private Integer status;
private String fieldKey;
private String internetIp;
private String intranetIp;
private String instanceId;
private String instanceName;
private String fieldKey1;
public Long getLastTimestamp() {
return this.lastTimestamp;
}
public void setLastTimestamp(Long lastTimestamp) {
this.lastTimestamp = lastTimestamp;
}
public Long getModifiedTimestamp() {
return this.modifiedTimestamp;
}
public void setModifiedTimestamp(Long modifiedTimestamp) {
this.modifiedTimestamp = modifiedTimestamp;
}
public String getWarnLevel() {
return this.warnLevel;
}
public void setWarnLevel(String warnLevel) {
this.warnLevel = warnLevel;
}
public String getUniqueKey() {
return this.uniqueKey;
}
public void setUniqueKey(String uniqueKey) {
this.uniqueKey = uniqueKey;
}
public Long getLastOperate() {
return this.lastOperate;
}
public void setLastOperate(Long lastOperate) {
this.lastOperate = lastOperate;
}
public Long getCreateTimestamp() {
return this.createTimestamp;
}
public void setCreateTimestamp(Long createTimestamp) {
this.createTimestamp = createTimestamp;
}
public String getRuleDescription() {
return this.ruleDescription;
}
public void setRuleDescription(String ruleDescription) {
this.ruleDescription = ruleDescription;
}
public String getRuleType() {
return this.ruleType;
}
public void setRuleType(String ruleType) {
this.ruleType = ruleType;
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
public String getDetails() {
return this.details;
}
public void setDetails(String details) {
this.details = details;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Long getAliUid() {
return this.aliUid;
}
public void setAliUid(Long aliUid) {
this.aliUid = aliUid;
}
public Integer getRuleId() {
return this.ruleId;
}
public void setRuleId(Integer ruleId) {
this.ruleId = ruleId;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getFieldKey() {
return this.fieldKey;
}
public void setFieldKey(String fieldKey) {
this.fieldKey = fieldKey;
}
public String getInternetIp() {
return this.internetIp;
}
public void setInternetIp(String internetIp) {
this.internetIp = internetIp;
}
public String getIntranetIp() {
return this.intranetIp;
}
public void setIntranetIp(String intranetIp) {
this.intranetIp = intranetIp;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public String getFieldKey1() {
return this.fieldKey1;
}
public void setFieldKey1(String fieldKey1) {
this.fieldKey1 = fieldKey1;
}
}
public static class PageInfo {
private Integer count;
private Integer pageSize;
private Integer currentPage;
private Integer totalCount;
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
}
@Override
public DescribeResultListResponse getInstance(UnmarshallerContext context) {
return DescribeResultListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeRiskTypeRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeRiskTypeRequest extends RpcAcsRequest<DescribeRiskTypeResponse> {
public DescribeRiskTypeRequest() {
super("aegis", "2016-11-11", "DescribeRiskType", "vipaegis");
}
private String sourceIp;
private Long strategyId;
private String lang;
private String uuids;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Long getStrategyId() {
return this.strategyId;
}
public void setStrategyId(Long strategyId) {
this.strategyId = strategyId;
if(strategyId != null){
putQueryParameter("StrategyId", strategyId.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public String getUuids() {
return this.uuids;
}
public void setUuids(String uuids) {
this.uuids = uuids;
if(uuids != null){
putQueryParameter("Uuids", uuids);
}
}
@Override
public Class<DescribeRiskTypeResponse> getResponseClass() {
return DescribeRiskTypeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeRiskTypeResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeRiskTypeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRiskTypeResponse extends AcsResponse {
private String requestId;
private Integer count;
private List<RiskType> riskTypes;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public List<RiskType> getRiskTypes() {
return this.riskTypes;
}
public void setRiskTypes(List<RiskType> riskTypes) {
this.riskTypes = riskTypes;
}
public static class RiskType {
private String typeName;
private String alias;
private String warnCount;
private List<SubType> subTypes;
public String getTypeName() {
return this.typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public String getAlias() {
return this.alias;
}
public void setAlias(String alias) {
this.alias = alias;
}
public String getWarnCount() {
return this.warnCount;
}
public void setWarnCount(String warnCount) {
this.warnCount = warnCount;
}
public List<SubType> getSubTypes() {
return this.subTypes;
}
public void setSubTypes(List<SubType> subTypes) {
this.subTypes = subTypes;
}
public static class SubType {
private String warnCount;
private String typeName;
private String alias;
public String getWarnCount() {
return this.warnCount;
}
public void setWarnCount(String warnCount) {
this.warnCount = warnCount;
}
public String getTypeName() {
return this.typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public String getAlias() {
return this.alias;
}
public void setAlias(String alias) {
this.alias = alias;
}
}
}
@Override
public DescribeRiskTypeResponse getInstance(UnmarshallerContext context) {
return DescribeRiskTypeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeRiskWhiteListRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeRiskWhiteListRequest extends RpcAcsRequest<DescribeRiskWhiteListResponse> {
public DescribeRiskWhiteListRequest() {
super("aegis", "2016-11-11", "DescribeRiskWhiteList", "vipaegis");
}
private String riskName;
private String sourceIp;
private Integer pageSize;
private Integer currentPage;
public String getRiskName() {
return this.riskName;
}
public void setRiskName(String riskName) {
this.riskName = riskName;
if(riskName != null){
putQueryParameter("RiskName", riskName);
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
@Override
public Class<DescribeRiskWhiteListResponse> getResponseClass() {
return DescribeRiskWhiteListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeRiskWhiteListResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeRiskWhiteListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRiskWhiteListResponse extends AcsResponse {
private String requestId;
private Integer count;
private Integer pageSize;
private Integer totalCount;
private Integer currentPage;
private List<WhiteList> whiteLists;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public List<WhiteList> getWhiteLists() {
return this.whiteLists;
}
public void setWhiteLists(List<WhiteList> whiteLists) {
this.whiteLists = whiteLists;
}
public static class WhiteList {
private Long riskId;
private String riskName;
private String reason;
public Long getRiskId() {
return this.riskId;
}
public void setRiskId(Long riskId) {
this.riskId = riskId;
}
public String getRiskName() {
return this.riskName;
}
public void setRiskName(String riskName) {
this.riskName = riskName;
}
public String getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
}
@Override
public DescribeRiskWhiteListResponse getInstance(UnmarshallerContext context) {
return DescribeRiskWhiteListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeRisksRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeRisksRequest extends RpcAcsRequest<DescribeRisksResponse> {
public DescribeRisksRequest() {
super("aegis", "2016-11-11", "DescribeRisks", "vipaegis");
}
private String riskName;
private String sourceIp;
private Integer limit;
private String lang;
private Long riskId;
public String getRiskName() {
return this.riskName;
}
public void setRiskName(String riskName) {
this.riskName = riskName;
if(riskName != null){
putQueryParameter("RiskName", riskName);
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Integer getLimit() {
return this.limit;
}
public void setLimit(Integer limit) {
this.limit = limit;
if(limit != null){
putQueryParameter("Limit", limit.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public Long getRiskId() {
return this.riskId;
}
public void setRiskId(Long riskId) {
this.riskId = riskId;
if(riskId != null){
putQueryParameter("RiskId", riskId.toString());
}
}
@Override
public Class<DescribeRisksResponse> getResponseClass() {
return DescribeRisksResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeRisksResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeRisksResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRisksResponse extends AcsResponse {
private String requestId;
private Integer totalCount;
private List<Risk> risks;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<Risk> getRisks() {
return this.risks;
}
public void setRisks(List<Risk> risks) {
this.risks = risks;
}
public static class Risk {
private Long riskId;
private String riskName;
private String riskDetail;
private String riskType;
private String typeAlias;
private String subRiskType;
private String subTypeAlias;
public Long getRiskId() {
return this.riskId;
}
public void setRiskId(Long riskId) {
this.riskId = riskId;
}
public String getRiskName() {
return this.riskName;
}
public void setRiskName(String riskName) {
this.riskName = riskName;
}
public String getRiskDetail() {
return this.riskDetail;
}
public void setRiskDetail(String riskDetail) {
this.riskDetail = riskDetail;
}
public String getRiskType() {
return this.riskType;
}
public void setRiskType(String riskType) {
this.riskType = riskType;
}
public String getTypeAlias() {
return this.typeAlias;
}
public void setTypeAlias(String typeAlias) {
this.typeAlias = typeAlias;
}
public String getSubRiskType() {
return this.subRiskType;
}
public void setSubRiskType(String subRiskType) {
this.subRiskType = subRiskType;
}
public String getSubTypeAlias() {
return this.subTypeAlias;
}
public void setSubTypeAlias(String subTypeAlias) {
this.subTypeAlias = subTypeAlias;
}
}
@Override
public DescribeRisksResponse getInstance(UnmarshallerContext context) {
return DescribeRisksResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeRuleListRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeRuleListRequest extends RpcAcsRequest<DescribeRuleListResponse> {
public DescribeRuleListRequest() {
super("aegis", "2016-11-11", "DescribeRuleList", "vipaegis");
}
private String warnLevel;
private String sourceIp;
private Long groupId;
private Integer pageSize;
private String remark;
private Integer currentPage;
private Long id;
private String lang;
private String exGroupId;
public String getWarnLevel() {
return this.warnLevel;
}
public void setWarnLevel(String warnLevel) {
this.warnLevel = warnLevel;
if(warnLevel != null){
putQueryParameter("WarnLevel", warnLevel);
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Long getGroupId() {
return this.groupId;
}
public void setGroupId(Long groupId) {
this.groupId = groupId;
if(groupId != null){
putQueryParameter("GroupId", groupId.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
if(id != null){
putQueryParameter("Id", id.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public String getExGroupId() {
return this.exGroupId;
}
public void setExGroupId(String exGroupId) {
this.exGroupId = exGroupId;
if(exGroupId != null){
putQueryParameter("ExGroupId", exGroupId);
}
}
@Override
public Class<DescribeRuleListResponse> getResponseClass() {
return DescribeRuleListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeRuleListResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeRuleListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRuleListResponse extends AcsResponse {
private String requestId;
private Boolean success;
private List<RulesItem> rules;
private PageInfo pageInfo;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<RulesItem> getRules() {
return this.rules;
}
public void setRules(List<RulesItem> rules) {
this.rules = rules;
}
public PageInfo getPageInfo() {
return this.pageInfo;
}
public void setPageInfo(PageInfo pageInfo) {
this.pageInfo = pageInfo;
}
public static class RulesItem {
private String warnLevel;
private Long modified;
private Long create;
private String ruleName;
private String description;
private Integer id;
private Integer dataSourceId;
private String expressions;
private String actions;
private String statisticsRules;
private Boolean needGroup;
private String statusCode;
private List<RuleGroup> ruleGroups;
public String getWarnLevel() {
return this.warnLevel;
}
public void setWarnLevel(String warnLevel) {
this.warnLevel = warnLevel;
}
public Long getModified() {
return this.modified;
}
public void setModified(Long modified) {
this.modified = modified;
}
public Long getCreate() {
return this.create;
}
public void setCreate(Long create) {
this.create = create;
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getDataSourceId() {
return this.dataSourceId;
}
public void setDataSourceId(Integer dataSourceId) {
this.dataSourceId = dataSourceId;
}
public String getExpressions() {
return this.expressions;
}
public void setExpressions(String expressions) {
this.expressions = expressions;
}
public String getActions() {
return this.actions;
}
public void setActions(String actions) {
this.actions = actions;
}
public String getStatisticsRules() {
return this.statisticsRules;
}
public void setStatisticsRules(String statisticsRules) {
this.statisticsRules = statisticsRules;
}
public Boolean getNeedGroup() {
return this.needGroup;
}
public void setNeedGroup(Boolean needGroup) {
this.needGroup = needGroup;
}
public String getStatusCode() {
return this.statusCode;
}
public void setStatusCode(String statusCode) {
this.statusCode = statusCode;
}
public List<RuleGroup> getRuleGroups() {
return this.ruleGroups;
}
public void setRuleGroups(List<RuleGroup> ruleGroups) {
this.ruleGroups = ruleGroups;
}
public static class RuleGroup {
private String groupName;
private Integer ruleNum;
private Long modified;
private Long create;
private String description;
private Integer id;
private Integer aliUid;
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public Integer getRuleNum() {
return this.ruleNum;
}
public void setRuleNum(Integer ruleNum) {
this.ruleNum = ruleNum;
}
public Long getModified() {
return this.modified;
}
public void setModified(Long modified) {
this.modified = modified;
}
public Long getCreate() {
return this.create;
}
public void setCreate(Long create) {
this.create = create;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getAliUid() {
return this.aliUid;
}
public void setAliUid(Integer aliUid) {
this.aliUid = aliUid;
}
}
}
public static class PageInfo {
private Integer pageSize;
private Integer currentPage;
private Integer totalCount;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
}
@Override
public DescribeRuleListResponse getInstance(UnmarshallerContext context) {
return DescribeRuleListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSasAssetStatisticsColumnRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSasAssetStatisticsColumnRequest extends RpcAcsRequest<DescribeSasAssetStatisticsColumnResponse> {
public DescribeSasAssetStatisticsColumnRequest() {
super("aegis", "2016-11-11", "DescribeSasAssetStatisticsColumn", "vipaegis");
}
private String sourceIp;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
@Override
public Class<DescribeSasAssetStatisticsColumnResponse> getResponseClass() {
return DescribeSasAssetStatisticsColumnResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSasAssetStatisticsColumnResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSasAssetStatisticsColumnResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSasAssetStatisticsColumnResponse extends AcsResponse {
private String requestId;
private String statisticsColumn;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getStatisticsColumn() {
return this.statisticsColumn;
}
public void setStatisticsColumn(String statisticsColumn) {
this.statisticsColumn = statisticsColumn;
}
@Override
public DescribeSasAssetStatisticsColumnResponse getInstance(UnmarshallerContext context) {
return DescribeSasAssetStatisticsColumnResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSasAssetStatisticsRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSasAssetStatisticsRequest extends RpcAcsRequest<DescribeSasAssetStatisticsResponse> {
public DescribeSasAssetStatisticsRequest() {
super("aegis", "2016-11-11", "DescribeSasAssetStatistics", "vipaegis");
}
private String sourceIp;
private String statisticsColumn;
private Integer pageSize;
private Integer currentPage;
private String uuids;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getStatisticsColumn() {
return this.statisticsColumn;
}
public void setStatisticsColumn(String statisticsColumn) {
this.statisticsColumn = statisticsColumn;
if(statisticsColumn != null){
putQueryParameter("StatisticsColumn", statisticsColumn);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public String getUuids() {
return this.uuids;
}
public void setUuids(String uuids) {
this.uuids = uuids;
if(uuids != null){
putQueryParameter("Uuids", uuids);
}
}
@Override
public Class<DescribeSasAssetStatisticsResponse> getResponseClass() {
return DescribeSasAssetStatisticsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSasAssetStatisticsResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSasAssetStatisticsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSasAssetStatisticsResponse extends AcsResponse {
private String requestId;
private Integer pageSize;
private Integer currentPage;
private Integer totalCount;
private List<Asset> assetList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<Asset> getAssetList() {
return this.assetList;
}
public void setAssetList(List<Asset> assetList) {
this.assetList = assetList;
}
public static class Asset {
private Integer healthCheckCount;
private Integer vulCount;
private Integer safeEventCount;
private String uuid;
public Integer getHealthCheckCount() {
return this.healthCheckCount;
}
public void setHealthCheckCount(Integer healthCheckCount) {
this.healthCheckCount = healthCheckCount;
}
public Integer getVulCount() {
return this.vulCount;
}
public void setVulCount(Integer vulCount) {
this.vulCount = vulCount;
}
public Integer getSafeEventCount() {
return this.safeEventCount;
}
public void setSafeEventCount(Integer safeEventCount) {
this.safeEventCount = safeEventCount;
}
public String getUuid() {
return this.uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
}
@Override
public DescribeSasAssetStatisticsResponse getInstance(UnmarshallerContext context) {
return DescribeSasAssetStatisticsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSasLeftConditionRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSasLeftConditionRequest extends RpcAcsRequest<DescribeSasLeftConditionResponse> {
public DescribeSasLeftConditionRequest() {
super("aegis", "2016-11-11", "DescribeSasLeftCondition", "vipaegis");
}
private String sourceIp;
private String conditionType;
private String lang;
private String filterConditions;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getConditionType() {
return this.conditionType;
}
public void setConditionType(String conditionType) {
this.conditionType = conditionType;
if(conditionType != null){
putQueryParameter("ConditionType", conditionType);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public String getFilterConditions() {
return this.filterConditions;
}
public void setFilterConditions(String filterConditions) {
this.filterConditions = filterConditions;
if(filterConditions != null){
putQueryParameter("FilterConditions", filterConditions);
}
}
@Override
public Class<DescribeSasLeftConditionResponse> getResponseClass() {
return DescribeSasLeftConditionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSasLeftConditionResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSasLeftConditionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSasLeftConditionResponse extends AcsResponse {
private String requestId;
private List<Condition> conditionList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Condition> getConditionList() {
return this.conditionList;
}
public void setConditionList(List<Condition> conditionList) {
this.conditionList = conditionList;
}
public static class Condition {
private String name;
private Integer count;
private String id;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
}
@Override
public DescribeSasLeftConditionResponse getInstance(UnmarshallerContext context) {
return DescribeSasLeftConditionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenAlarmEventListRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeScreenAlarmEventListRequest extends RpcAcsRequest<DescribeScreenAlarmEventListResponse> {
public DescribeScreenAlarmEventListRequest() {
super("aegis", "2016-11-11", "DescribeScreenAlarmEventList", "vipaegis");
}
private String alarmEventName;
private String sourceIp;
private String pageSize;
private String alarmEventType;
private String dealed;
private String from;
private String remark;
private Integer currentPage;
private String lang;
private String levels;
public String getAlarmEventName() {
return this.alarmEventName;
}
public void setAlarmEventName(String alarmEventName) {
this.alarmEventName = alarmEventName;
if(alarmEventName != null){
putQueryParameter("AlarmEventName", alarmEventName);
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getPageSize() {
return this.pageSize;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize);
}
}
public String getAlarmEventType() {
return this.alarmEventType;
}
public void setAlarmEventType(String alarmEventType) {
this.alarmEventType = alarmEventType;
if(alarmEventType != null){
putQueryParameter("AlarmEventType", alarmEventType);
}
}
public String getDealed() {
return this.dealed;
}
public void setDealed(String dealed) {
this.dealed = dealed;
if(dealed != null){
putQueryParameter("Dealed", dealed);
}
}
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
if(from != null){
putQueryParameter("From", from);
}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public String getLevels() {
return this.levels;
}
public void setLevels(String levels) {
this.levels = levels;
if(levels != null){
putQueryParameter("Levels", levels);
}
}
@Override
public Class<DescribeScreenAlarmEventListResponse> getResponseClass() {
return DescribeScreenAlarmEventListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenAlarmEventListResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeScreenAlarmEventListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeScreenAlarmEventListResponse extends AcsResponse {
private String requestId;
private List<SuspEventsItem> suspEvents;
private PageInfo pageInfo;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<SuspEventsItem> getSuspEvents() {
return this.suspEvents;
}
public void setSuspEvents(List<SuspEventsItem> suspEvents) {
this.suspEvents = suspEvents;
}
public PageInfo getPageInfo() {
return this.pageInfo;
}
public void setPageInfo(PageInfo pageInfo) {
this.pageInfo = pageInfo;
}
public static class SuspEventsItem {
private String alarmUniqueInfo;
private String solution;
private String level;
private Boolean canBeDealOnLine;
private String description;
private Long startTime;
private Long endTime;
private String alarmEventType;
private Integer suspiciousEventCount;
private String uuid;
private String instanceName;
private String internetIp;
private String intranetIp;
private String alarmEventName;
private String saleVersion;
private String dataSource;
private Boolean canCancelFault;
private Boolean dealed;
public String getAlarmUniqueInfo() {
return this.alarmUniqueInfo;
}
public void setAlarmUniqueInfo(String alarmUniqueInfo) {
this.alarmUniqueInfo = alarmUniqueInfo;
}
public String getSolution() {
return this.solution;
}
public void setSolution(String solution) {
this.solution = solution;
}
public String getLevel() {
return this.level;
}
public void setLevel(String level) {
this.level = level;
}
public Boolean getCanBeDealOnLine() {
return this.canBeDealOnLine;
}
public void setCanBeDealOnLine(Boolean canBeDealOnLine) {
this.canBeDealOnLine = canBeDealOnLine;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public String getAlarmEventType() {
return this.alarmEventType;
}
public void setAlarmEventType(String alarmEventType) {
this.alarmEventType = alarmEventType;
}
public Integer getSuspiciousEventCount() {
return this.suspiciousEventCount;
}
public void setSuspiciousEventCount(Integer suspiciousEventCount) {
this.suspiciousEventCount = suspiciousEventCount;
}
public String getUuid() {
return this.uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public String getInternetIp() {
return this.internetIp;
}
public void setInternetIp(String internetIp) {
this.internetIp = internetIp;
}
public String getIntranetIp() {
return this.intranetIp;
}
public void setIntranetIp(String intranetIp) {
this.intranetIp = intranetIp;
}
public String getAlarmEventName() {
return this.alarmEventName;
}
public void setAlarmEventName(String alarmEventName) {
this.alarmEventName = alarmEventName;
}
public String getSaleVersion() {
return this.saleVersion;
}
public void setSaleVersion(String saleVersion) {
this.saleVersion = saleVersion;
}
public String getDataSource() {
return this.dataSource;
}
public void setDataSource(String dataSource) {
this.dataSource = dataSource;
}
public Boolean getCanCancelFault() {
return this.canCancelFault;
}
public void setCanCancelFault(Boolean canCancelFault) {
this.canCancelFault = canCancelFault;
}
public Boolean getDealed() {
return this.dealed;
}
public void setDealed(Boolean dealed) {
this.dealed = dealed;
}
}
public static class PageInfo {
private Integer count;
private Integer pageSize;
private Integer totalCount;
private Integer currentPage;
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
}
@Override
public DescribeScreenAlarmEventListResponse getInstance(UnmarshallerContext context) {
return DescribeScreenAlarmEventListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenAttackAnalysisDataRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeScreenAttackAnalysisDataRequest extends RpcAcsRequest<DescribeScreenAttackAnalysisDataResponse> {
public DescribeScreenAttackAnalysisDataRequest() {
super("aegis", "2016-11-11", "DescribeScreenAttackAnalysisData", "vipaegis");
}
private String sourceIp;
private String data;
private String base64;
private Integer pageSize;
private Long endTime;
private Integer currentPage;
private Long startTime;
private String lang;
private String type;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
if(data != null){
putQueryParameter("Data", data);
}
}
public String getBase64() {
return this.base64;
}
public void setBase64(String base64) {
this.base64 = base64;
if(base64 != null){
putQueryParameter("Base64", base64);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
@Override
public Class<DescribeScreenAttackAnalysisDataResponse> getResponseClass() {
return DescribeScreenAttackAnalysisDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenAttackAnalysisDataResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeScreenAttackAnalysisDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeScreenAttackAnalysisDataResponse extends AcsResponse {
private String requestId;
private String data;
private Integer total;
private Integer page;
private Integer pageSize;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public Integer getTotal() {
return this.total;
}
public void setTotal(Integer total) {
this.total = total;
}
public Integer getPage() {
return this.page;
}
public void setPage(Integer page) {
this.page = page;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
@Override
public DescribeScreenAttackAnalysisDataResponse getInstance(UnmarshallerContext context) {
return DescribeScreenAttackAnalysisDataResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenHostStatisticsRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeScreenHostStatisticsRequest extends RpcAcsRequest<DescribeScreenHostStatisticsResponse> {
public DescribeScreenHostStatisticsRequest() {
super("aegis", "2016-11-11", "DescribeScreenHostStatistics", "vipaegis");
}
@Override
public Class<DescribeScreenHostStatisticsResponse> getResponseClass() {
return DescribeScreenHostStatisticsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenHostStatisticsResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeScreenHostStatisticsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeScreenHostStatisticsResponse extends AcsResponse {
private String requestId;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private List<String> weaknessUuids;
private List<String> suspEventUuids;
private List<String> suspEventMachineNames;
private List<String> weaknessMachineNames;
public List<String> getWeaknessUuids() {
return this.weaknessUuids;
}
public void setWeaknessUuids(List<String> weaknessUuids) {
this.weaknessUuids = weaknessUuids;
}
public List<String> getSuspEventUuids() {
return this.suspEventUuids;
}
public void setSuspEventUuids(List<String> suspEventUuids) {
this.suspEventUuids = suspEventUuids;
}
public List<String> getSuspEventMachineNames() {
return this.suspEventMachineNames;
}
public void setSuspEventMachineNames(List<String> suspEventMachineNames) {
this.suspEventMachineNames = suspEventMachineNames;
}
public List<String> getWeaknessMachineNames() {
return this.weaknessMachineNames;
}
public void setWeaknessMachineNames(List<String> weaknessMachineNames) {
this.weaknessMachineNames = weaknessMachineNames;
}
}
@Override
public DescribeScreenHostStatisticsResponse getInstance(UnmarshallerContext context) {
return DescribeScreenHostStatisticsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenOperateInfoRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeScreenOperateInfoRequest extends RpcAcsRequest<DescribeScreenOperateInfoResponse> {
public DescribeScreenOperateInfoRequest() {
super("aegis", "2016-11-11", "DescribeScreenOperateInfo", "vipaegis");
}
private String sourceIp;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeScreenOperateInfoResponse> getResponseClass() {
return DescribeScreenOperateInfoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenOperateInfoResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeScreenOperateInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeScreenOperateInfoResponse extends AcsResponse {
private String requestId;
private Integer healthCheckDealedCount;
private Integer securityEventDealedCount;
private Integer vulnerabilityDealedCount;
private Boolean success;
private List<String> suspEventValueArray;
private List<String> vulValueArray;
private List<String> dateArray;
private List<String> healthCheckValueArray;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHealthCheckDealedCount() {
return this.healthCheckDealedCount;
}
public void setHealthCheckDealedCount(Integer healthCheckDealedCount) {
this.healthCheckDealedCount = healthCheckDealedCount;
}
public Integer getSecurityEventDealedCount() {
return this.securityEventDealedCount;
}
public void setSecurityEventDealedCount(Integer securityEventDealedCount) {
this.securityEventDealedCount = securityEventDealedCount;
}
public Integer getVulnerabilityDealedCount() {
return this.vulnerabilityDealedCount;
}
public void setVulnerabilityDealedCount(Integer vulnerabilityDealedCount) {
this.vulnerabilityDealedCount = vulnerabilityDealedCount;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<String> getSuspEventValueArray() {
return this.suspEventValueArray;
}
public void setSuspEventValueArray(List<String> suspEventValueArray) {
this.suspEventValueArray = suspEventValueArray;
}
public List<String> getVulValueArray() {
return this.vulValueArray;
}
public void setVulValueArray(List<String> vulValueArray) {
this.vulValueArray = vulValueArray;
}
public List<String> getDateArray() {
return this.dateArray;
}
public void setDateArray(List<String> dateArray) {
this.dateArray = dateArray;
}
public List<String> getHealthCheckValueArray() {
return this.healthCheckValueArray;
}
public void setHealthCheckValueArray(List<String> healthCheckValueArray) {
this.healthCheckValueArray = healthCheckValueArray;
}
@Override
public DescribeScreenOperateInfoResponse getInstance(UnmarshallerContext context) {
return DescribeScreenOperateInfoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenScoreThreadRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeScreenScoreThreadRequest extends RpcAcsRequest<DescribeScreenScoreThreadResponse> {
public DescribeScreenScoreThreadRequest() {
super("aegis", "2016-11-11", "DescribeScreenScoreThread", "vipaegis");
}
private Long endTime;
private Long startTime;
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
@Override
public Class<DescribeScreenScoreThreadResponse> getResponseClass() {
return DescribeScreenScoreThreadResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenScoreThreadResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeScreenScoreThreadResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeScreenScoreThreadResponse extends AcsResponse {
private String requestId;
private Boolean success;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private List<String> socreThreadDate;
private List<String> socreThread;
public List<String> getSocreThreadDate() {
return this.socreThreadDate;
}
public void setSocreThreadDate(List<String> socreThreadDate) {
this.socreThreadDate = socreThreadDate;
}
public List<String> getSocreThread() {
return this.socreThread;
}
public void setSocreThread(List<String> socreThread) {
this.socreThread = socreThread;
}
}
@Override
public DescribeScreenScoreThreadResponse getInstance(UnmarshallerContext context) {
return DescribeScreenScoreThreadResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenSecurityStatInfoRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeScreenSecurityStatInfoRequest extends RpcAcsRequest<DescribeScreenSecurityStatInfoResponse> {
public DescribeScreenSecurityStatInfoRequest() {
super("aegis", "2016-11-11", "DescribeScreenSecurityStatInfo", "vipaegis");
}
private String sourceIp;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeScreenSecurityStatInfoResponse> getResponseClass() {
return DescribeScreenSecurityStatInfoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenSecurityStatInfoResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeScreenSecurityStatInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeScreenSecurityStatInfoResponse extends AcsResponse {
private String requestId;
private Boolean success;
private SecurityEvent securityEvent;
private AttackEvent attackEvent;
private HealthCheck healthCheck;
private Vulnerability vulnerability;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public SecurityEvent getSecurityEvent() {
return this.securityEvent;
}
public void setSecurityEvent(SecurityEvent securityEvent) {
this.securityEvent = securityEvent;
}
public AttackEvent getAttackEvent() {
return this.attackEvent;
}
public void setAttackEvent(AttackEvent attackEvent) {
this.attackEvent = attackEvent;
}
public HealthCheck getHealthCheck() {
return this.healthCheck;
}
public void setHealthCheck(HealthCheck healthCheck) {
this.healthCheck = healthCheck;
}
public Vulnerability getVulnerability() {
return this.vulnerability;
}
public void setVulnerability(Vulnerability vulnerability) {
this.vulnerability = vulnerability;
}
public static class SecurityEvent {
private Integer seriousCount;
private Integer suspiciousCount;
private Integer remindCount;
private Integer totalCount;
private List<String> dateArray;
private List<String> valueArray;
private List<String> levelsOn;
private List<String> seriousList;
private List<String> suspiciousList;
private List<String> remindList;
public Integer getSeriousCount() {
return this.seriousCount;
}
public void setSeriousCount(Integer seriousCount) {
this.seriousCount = seriousCount;
}
public Integer getSuspiciousCount() {
return this.suspiciousCount;
}
public void setSuspiciousCount(Integer suspiciousCount) {
this.suspiciousCount = suspiciousCount;
}
public Integer getRemindCount() {
return this.remindCount;
}
public void setRemindCount(Integer remindCount) {
this.remindCount = remindCount;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<String> getDateArray() {
return this.dateArray;
}
public void setDateArray(List<String> dateArray) {
this.dateArray = dateArray;
}
public List<String> getValueArray() {
return this.valueArray;
}
public void setValueArray(List<String> valueArray) {
this.valueArray = valueArray;
}
public List<String> getLevelsOn() {
return this.levelsOn;
}
public void setLevelsOn(List<String> levelsOn) {
this.levelsOn = levelsOn;
}
public List<String> getSeriousList() {
return this.seriousList;
}
public void setSeriousList(List<String> seriousList) {
this.seriousList = seriousList;
}
public List<String> getSuspiciousList() {
return this.suspiciousList;
}
public void setSuspiciousList(List<String> suspiciousList) {
this.suspiciousList = suspiciousList;
}
public List<String> getRemindList() {
return this.remindList;
}
public void setRemindList(List<String> remindList) {
this.remindList = remindList;
}
}
public static class AttackEvent {
private Integer totalCount;
private List<String> dateArray1;
private List<String> valueArray2;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<String> getDateArray1() {
return this.dateArray1;
}
public void setDateArray1(List<String> dateArray1) {
this.dateArray1 = dateArray1;
}
public List<String> getValueArray2() {
return this.valueArray2;
}
public void setValueArray2(List<String> valueArray2) {
this.valueArray2 = valueArray2;
}
}
public static class HealthCheck {
private Integer mediumCount;
private Integer highCount;
private Integer lowCount;
private Integer totalCount;
private List<String> dateArray3;
private List<String> valueArray4;
private List<String> levelsOn5;
private List<String> highList;
private List<String> mediumList;
private List<String> lowList;
public Integer getMediumCount() {
return this.mediumCount;
}
public void setMediumCount(Integer mediumCount) {
this.mediumCount = mediumCount;
}
public Integer getHighCount() {
return this.highCount;
}
public void setHighCount(Integer highCount) {
this.highCount = highCount;
}
public Integer getLowCount() {
return this.lowCount;
}
public void setLowCount(Integer lowCount) {
this.lowCount = lowCount;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<String> getDateArray3() {
return this.dateArray3;
}
public void setDateArray3(List<String> dateArray3) {
this.dateArray3 = dateArray3;
}
public List<String> getValueArray4() {
return this.valueArray4;
}
public void setValueArray4(List<String> valueArray4) {
this.valueArray4 = valueArray4;
}
public List<String> getLevelsOn5() {
return this.levelsOn5;
}
public void setLevelsOn5(List<String> levelsOn5) {
this.levelsOn5 = levelsOn5;
}
public List<String> getHighList() {
return this.highList;
}
public void setHighList(List<String> highList) {
this.highList = highList;
}
public List<String> getMediumList() {
return this.mediumList;
}
public void setMediumList(List<String> mediumList) {
this.mediumList = mediumList;
}
public List<String> getLowList() {
return this.lowList;
}
public void setLowList(List<String> lowList) {
this.lowList = lowList;
}
}
public static class Vulnerability {
private Integer nntfCount;
private Integer laterCount;
private Integer asapCount;
private Integer totalCount;
private List<String> dateArray6;
private List<String> valueArray7;
private List<String> levelsOn8;
private List<String> nntfList;
private List<String> asapList;
private List<String> laterList;
public Integer getNntfCount() {
return this.nntfCount;
}
public void setNntfCount(Integer nntfCount) {
this.nntfCount = nntfCount;
}
public Integer getLaterCount() {
return this.laterCount;
}
public void setLaterCount(Integer laterCount) {
this.laterCount = laterCount;
}
public Integer getAsapCount() {
return this.asapCount;
}
public void setAsapCount(Integer asapCount) {
this.asapCount = asapCount;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<String> getDateArray6() {
return this.dateArray6;
}
public void setDateArray6(List<String> dateArray6) {
this.dateArray6 = dateArray6;
}
public List<String> getValueArray7() {
return this.valueArray7;
}
public void setValueArray7(List<String> valueArray7) {
this.valueArray7 = valueArray7;
}
public List<String> getLevelsOn8() {
return this.levelsOn8;
}
public void setLevelsOn8(List<String> levelsOn8) {
this.levelsOn8 = levelsOn8;
}
public List<String> getNntfList() {
return this.nntfList;
}
public void setNntfList(List<String> nntfList) {
this.nntfList = nntfList;
}
public List<String> getAsapList() {
return this.asapList;
}
public void setAsapList(List<String> asapList) {
this.asapList = asapList;
}
public List<String> getLaterList() {
return this.laterList;
}
public void setLaterList(List<String> laterList) {
this.laterList = laterList;
}
}
@Override
public DescribeScreenSecurityStatInfoResponse getInstance(UnmarshallerContext context) {
return DescribeScreenSecurityStatInfoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenSettingRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeScreenSettingRequest extends RpcAcsRequest<DescribeScreenSettingResponse> {
public DescribeScreenSettingRequest() {
super("aegis", "2016-11-11", "DescribeScreenSetting", "vipaegis");
}
private String screenTitle;
public String getScreenTitle() {
return this.screenTitle;
}
public void setScreenTitle(String screenTitle) {
this.screenTitle = screenTitle;
if(screenTitle != null){
putQueryParameter("ScreenTitle", screenTitle);
}
}
@Override
public Class<DescribeScreenSettingResponse> getResponseClass() {
return DescribeScreenSettingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenSettingResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeScreenSettingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeScreenSettingResponse extends AcsResponse {
private String requestId;
private SasScreenSetting sasScreenSetting;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public SasScreenSetting getSasScreenSetting() {
return this.sasScreenSetting;
}
public void setSasScreenSetting(SasScreenSetting sasScreenSetting) {
this.sasScreenSetting = sasScreenSetting;
}
public static class SasScreenSetting {
private String screenSettingTitle;
private String screenSettingIdMap;
public String getScreenSettingTitle() {
return this.screenSettingTitle;
}
public void setScreenSettingTitle(String screenSettingTitle) {
this.screenSettingTitle = screenSettingTitle;
}
public String getScreenSettingIdMap() {
return this.screenSettingIdMap;
}
public void setScreenSettingIdMap(String screenSettingIdMap) {
this.screenSettingIdMap = screenSettingIdMap;
}
}
@Override
public DescribeScreenSettingResponse getInstance(UnmarshallerContext context) {
return DescribeScreenSettingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenSettingsRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeScreenSettingsRequest extends RpcAcsRequest<DescribeScreenSettingsResponse> {
public DescribeScreenSettingsRequest() {
super("aegis", "2016-11-11", "DescribeScreenSettings", "vipaegis");
}
@Override
public Class<DescribeScreenSettingsResponse> getResponseClass() {
return DescribeScreenSettingsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenSettingsResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeScreenSettingsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeScreenSettingsResponse extends AcsResponse {
private String requestId;
private String requestId1;
private List<SasScreenSettingListItem> sasScreenSettingList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRequestId1() {
return this.requestId1;
}
public void setRequestId1(String requestId1) {
this.requestId1 = requestId1;
}
public List<SasScreenSettingListItem> getSasScreenSettingList() {
return this.sasScreenSettingList;
}
public void setSasScreenSettingList(List<SasScreenSettingListItem> sasScreenSettingList) {
this.sasScreenSettingList = sasScreenSettingList;
}
public static class SasScreenSettingListItem {
private String screenSettingTitle;
private String screenSettingIdMap;
public String getScreenSettingTitle() {
return this.screenSettingTitle;
}
public void setScreenSettingTitle(String screenSettingTitle) {
this.screenSettingTitle = screenSettingTitle;
}
public String getScreenSettingIdMap() {
return this.screenSettingIdMap;
}
public void setScreenSettingIdMap(String screenSettingIdMap) {
this.screenSettingIdMap = screenSettingIdMap;
}
}
@Override
public DescribeScreenSettingsResponse getInstance(UnmarshallerContext context) {
return DescribeScreenSettingsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenSummaryInfoRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeScreenSummaryInfoRequest extends RpcAcsRequest<DescribeScreenSummaryInfoResponse> {
public DescribeScreenSummaryInfoRequest() {
super("aegis", "2016-11-11", "DescribeScreenSummaryInfo", "vipaegis");
}
private String sourceIp;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeScreenSummaryInfoResponse> getResponseClass() {
return DescribeScreenSummaryInfoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenSummaryInfoResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeScreenSummaryInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeScreenSummaryInfoResponse extends AcsResponse {
private String requestId;
private Integer aegisClientOfflineCount;
private Integer securityScore;
private Integer aegisClientOnlineCount;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getAegisClientOfflineCount() {
return this.aegisClientOfflineCount;
}
public void setAegisClientOfflineCount(Integer aegisClientOfflineCount) {
this.aegisClientOfflineCount = aegisClientOfflineCount;
}
public Integer getSecurityScore() {
return this.securityScore;
}
public void setSecurityScore(Integer securityScore) {
this.securityScore = securityScore;
}
public Integer getAegisClientOnlineCount() {
return this.aegisClientOnlineCount;
}
public void setAegisClientOnlineCount(Integer aegisClientOnlineCount) {
this.aegisClientOnlineCount = aegisClientOnlineCount;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public DescribeScreenSummaryInfoResponse getInstance(UnmarshallerContext context) {
return DescribeScreenSummaryInfoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenVersionConfigRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeScreenVersionConfigRequest extends RpcAcsRequest<DescribeScreenVersionConfigResponse> {
public DescribeScreenVersionConfigRequest() {
super("aegis", "2016-11-11", "DescribeScreenVersionConfig", "vipaegis");
}
private String sourceIp;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
@Override
public Class<DescribeScreenVersionConfigResponse> getResponseClass() {
return DescribeScreenVersionConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeScreenVersionConfigResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeScreenVersionConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeScreenVersionConfigResponse extends AcsResponse {
private String requestId;
private Integer assetLevel;
private Integer avdsFlag;
private Long createTime;
private Integer flag;
private String instanceId;
private Boolean isSasOpening;
private Integer isTrialVersion;
private Integer logCapacity;
private Integer logTime;
private Long releaseTime;
private Integer sasLog;
private Integer sasScreen;
private Integer version;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getAssetLevel() {
return this.assetLevel;
}
public void setAssetLevel(Integer assetLevel) {
this.assetLevel = assetLevel;
}
public Integer getAvdsFlag() {
return this.avdsFlag;
}
public void setAvdsFlag(Integer avdsFlag) {
this.avdsFlag = avdsFlag;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public Integer getFlag() {
return this.flag;
}
public void setFlag(Integer flag) {
this.flag = flag;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Boolean getIsSasOpening() {
return this.isSasOpening;
}
public void setIsSasOpening(Boolean isSasOpening) {
this.isSasOpening = isSasOpening;
}
public Integer getIsTrialVersion() {
return this.isTrialVersion;
}
public void setIsTrialVersion(Integer isTrialVersion) {
this.isTrialVersion = isTrialVersion;
}
public Integer getLogCapacity() {
return this.logCapacity;
}
public void setLogCapacity(Integer logCapacity) {
this.logCapacity = logCapacity;
}
public Integer getLogTime() {
return this.logTime;
}
public void setLogTime(Integer logTime) {
this.logTime = logTime;
}
public Long getReleaseTime() {
return this.releaseTime;
}
public void setReleaseTime(Long releaseTime) {
this.releaseTime = releaseTime;
}
public Integer getSasLog() {
return this.sasLog;
}
public void setSasLog(Integer sasLog) {
this.sasLog = sasLog;
}
public Integer getSasScreen() {
return this.sasScreen;
}
public void setSasScreen(Integer sasScreen) {
this.sasScreen = sasScreen;
}
public Integer getBizVersion() {
return this.version;
}
public void setBizVersion(Integer version) {
this.version = version;
}
/**
* @deprecated use getBizVersion instead of this.
*/
@Deprecated
public Integer getVersion() {
return this.version;
}
/**
* @deprecated use setBizVersion instead of this.
*/
@Deprecated
public void setVersion(Integer version) {
this.version = version;
}
@Override
public DescribeScreenVersionConfigResponse getInstance(UnmarshallerContext context) {
return DescribeScreenVersionConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSearchConditionRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSearchConditionRequest extends RpcAcsRequest<DescribeSearchConditionResponse> {
public DescribeSearchConditionRequest() {
super("aegis", "2016-11-11", "DescribeSearchCondition", "vipaegis");
}
private String sourceIp;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeSearchConditionResponse> getResponseClass() {
return DescribeSearchConditionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSearchConditionResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSearchConditionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSearchConditionResponse extends AcsResponse {
private String requestId;
private List<Condition> conditionList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Condition> getConditionList() {
return this.conditionList;
}
public void setConditionList(List<Condition> conditionList) {
this.conditionList = conditionList;
}
public static class Condition {
private String name;
private String assetType;
private String tag;
private String region;
private String safeStatus;
private String clientStatus;
private String groupId;
private String os;
private String remark;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getAssetType() {
return this.assetType;
}
public void setAssetType(String assetType) {
this.assetType = assetType;
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
}
public String getSafeStatus() {
return this.safeStatus;
}
public void setSafeStatus(String safeStatus) {
this.safeStatus = safeStatus;
}
public String getClientStatus() {
return this.clientStatus;
}
public void setClientStatus(String clientStatus) {
this.clientStatus = clientStatus;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getOs() {
return this.os;
}
public void setOs(String os) {
this.os = os;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
@Override
public DescribeSearchConditionResponse getInstance(UnmarshallerContext context) {
return DescribeSearchConditionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSecureSuggestionRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSecureSuggestionRequest extends RpcAcsRequest<DescribeSecureSuggestionResponse> {
public DescribeSecureSuggestionRequest() {
super("aegis", "2016-11-11", "DescribeSecureSuggestion", "vipaegis");
}
private String sourceIp;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeSecureSuggestionResponse> getResponseClass() {
return DescribeSecureSuggestionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSecureSuggestionResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSecureSuggestionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSecureSuggestionResponse extends AcsResponse {
private String requestId;
private Integer totalCount;
private List<Suggestion> suggestions;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<Suggestion> getSuggestions() {
return this.suggestions;
}
public void setSuggestions(List<Suggestion> suggestions) {
this.suggestions = suggestions;
}
public static class Suggestion {
private String suggestType;
private Integer points;
private List<DetailItem> detail;
public String getSuggestType() {
return this.suggestType;
}
public void setSuggestType(String suggestType) {
this.suggestType = suggestType;
}
public Integer getPoints() {
return this.points;
}
public void setPoints(Integer points) {
this.points = points;
}
public List<DetailItem> getDetail() {
return this.detail;
}
public void setDetail(List<DetailItem> detail) {
this.detail = detail;
}
public static class DetailItem {
private String description;
private String subType;
private String title;
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getSubType() {
return this.subType;
}
public void setSubType(String subType) {
this.subType = subType;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
}
}
@Override
public DescribeSecureSuggestionResponse getInstance(UnmarshallerContext context) {
return DescribeSecureSuggestionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSecurityStatInfoRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSecurityStatInfoRequest extends RpcAcsRequest<DescribeSecurityStatInfoResponse> {
public DescribeSecurityStatInfoRequest() {
super("aegis", "2016-11-11", "DescribeSecurityStatInfo", "vipaegis");
}
private String sourceIp;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeSecurityStatInfoResponse> getResponseClass() {
return DescribeSecurityStatInfoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSecurityStatInfoResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSecurityStatInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSecurityStatInfoResponse extends AcsResponse {
private String requestId;
private Boolean success;
private SecurityEvent securityEvent;
private AttackEvent attackEvent;
private HealthCheck healthCheck;
private Vulnerability vulnerability;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public SecurityEvent getSecurityEvent() {
return this.securityEvent;
}
public void setSecurityEvent(SecurityEvent securityEvent) {
this.securityEvent = securityEvent;
}
public AttackEvent getAttackEvent() {
return this.attackEvent;
}
public void setAttackEvent(AttackEvent attackEvent) {
this.attackEvent = attackEvent;
}
public HealthCheck getHealthCheck() {
return this.healthCheck;
}
public void setHealthCheck(HealthCheck healthCheck) {
this.healthCheck = healthCheck;
}
public Vulnerability getVulnerability() {
return this.vulnerability;
}
public void setVulnerability(Vulnerability vulnerability) {
this.vulnerability = vulnerability;
}
public static class SecurityEvent {
private Integer seriousCount;
private Integer suspiciousCount;
private Integer remindCount;
private Integer totalCount;
private List<String> dateArray;
private List<String> valueArray;
private List<String> levelsOn;
private List<String> seriousList;
private List<String> suspiciousList;
private List<String> remindList;
public Integer getSeriousCount() {
return this.seriousCount;
}
public void setSeriousCount(Integer seriousCount) {
this.seriousCount = seriousCount;
}
public Integer getSuspiciousCount() {
return this.suspiciousCount;
}
public void setSuspiciousCount(Integer suspiciousCount) {
this.suspiciousCount = suspiciousCount;
}
public Integer getRemindCount() {
return this.remindCount;
}
public void setRemindCount(Integer remindCount) {
this.remindCount = remindCount;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<String> getDateArray() {
return this.dateArray;
}
public void setDateArray(List<String> dateArray) {
this.dateArray = dateArray;
}
public List<String> getValueArray() {
return this.valueArray;
}
public void setValueArray(List<String> valueArray) {
this.valueArray = valueArray;
}
public List<String> getLevelsOn() {
return this.levelsOn;
}
public void setLevelsOn(List<String> levelsOn) {
this.levelsOn = levelsOn;
}
public List<String> getSeriousList() {
return this.seriousList;
}
public void setSeriousList(List<String> seriousList) {
this.seriousList = seriousList;
}
public List<String> getSuspiciousList() {
return this.suspiciousList;
}
public void setSuspiciousList(List<String> suspiciousList) {
this.suspiciousList = suspiciousList;
}
public List<String> getRemindList() {
return this.remindList;
}
public void setRemindList(List<String> remindList) {
this.remindList = remindList;
}
}
public static class AttackEvent {
private Integer totalCount;
private List<String> dateArray1;
private List<String> valueArray2;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<String> getDateArray1() {
return this.dateArray1;
}
public void setDateArray1(List<String> dateArray1) {
this.dateArray1 = dateArray1;
}
public List<String> getValueArray2() {
return this.valueArray2;
}
public void setValueArray2(List<String> valueArray2) {
this.valueArray2 = valueArray2;
}
}
public static class HealthCheck {
private Integer mediumCount;
private Integer highCount;
private Integer lowCount;
private Integer totalCount;
private List<String> dateArray3;
private List<String> valueArray4;
private List<String> levelsOn5;
private List<String> highList;
private List<String> mediumList;
private List<String> lowList;
public Integer getMediumCount() {
return this.mediumCount;
}
public void setMediumCount(Integer mediumCount) {
this.mediumCount = mediumCount;
}
public Integer getHighCount() {
return this.highCount;
}
public void setHighCount(Integer highCount) {
this.highCount = highCount;
}
public Integer getLowCount() {
return this.lowCount;
}
public void setLowCount(Integer lowCount) {
this.lowCount = lowCount;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<String> getDateArray3() {
return this.dateArray3;
}
public void setDateArray3(List<String> dateArray3) {
this.dateArray3 = dateArray3;
}
public List<String> getValueArray4() {
return this.valueArray4;
}
public void setValueArray4(List<String> valueArray4) {
this.valueArray4 = valueArray4;
}
public List<String> getLevelsOn5() {
return this.levelsOn5;
}
public void setLevelsOn5(List<String> levelsOn5) {
this.levelsOn5 = levelsOn5;
}
public List<String> getHighList() {
return this.highList;
}
public void setHighList(List<String> highList) {
this.highList = highList;
}
public List<String> getMediumList() {
return this.mediumList;
}
public void setMediumList(List<String> mediumList) {
this.mediumList = mediumList;
}
public List<String> getLowList() {
return this.lowList;
}
public void setLowList(List<String> lowList) {
this.lowList = lowList;
}
}
public static class Vulnerability {
private Integer nntfCount;
private Integer laterCount;
private Integer asapCount;
private Integer totalCount;
private List<String> dateArray6;
private List<String> valueArray7;
private List<String> levelsOn8;
private List<String> nntfList;
private List<String> asapList;
private List<String> laterList;
public Integer getNntfCount() {
return this.nntfCount;
}
public void setNntfCount(Integer nntfCount) {
this.nntfCount = nntfCount;
}
public Integer getLaterCount() {
return this.laterCount;
}
public void setLaterCount(Integer laterCount) {
this.laterCount = laterCount;
}
public Integer getAsapCount() {
return this.asapCount;
}
public void setAsapCount(Integer asapCount) {
this.asapCount = asapCount;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<String> getDateArray6() {
return this.dateArray6;
}
public void setDateArray6(List<String> dateArray6) {
this.dateArray6 = dateArray6;
}
public List<String> getValueArray7() {
return this.valueArray7;
}
public void setValueArray7(List<String> valueArray7) {
this.valueArray7 = valueArray7;
}
public List<String> getLevelsOn8() {
return this.levelsOn8;
}
public void setLevelsOn8(List<String> levelsOn8) {
this.levelsOn8 = levelsOn8;
}
public List<String> getNntfList() {
return this.nntfList;
}
public void setNntfList(List<String> nntfList) {
this.nntfList = nntfList;
}
public List<String> getAsapList() {
return this.asapList;
}
public void setAsapList(List<String> asapList) {
this.asapList = asapList;
}
public List<String> getLaterList() {
return this.laterList;
}
public void setLaterList(List<String> laterList) {
this.laterList = laterList;
}
}
@Override
public DescribeSecurityStatInfoResponse getInstance(UnmarshallerContext context) {
return DescribeSecurityStatInfoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSlsProjectRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSlsProjectRequest extends RpcAcsRequest<DescribeSlsProjectResponse> {
public DescribeSlsProjectRequest() {
super("aegis", "2016-11-11", "DescribeSlsProject", "vipaegis");
}
private String regionNo;
public String getRegionNo() {
return this.regionNo;
}
public void setRegionNo(String regionNo) {
this.regionNo = regionNo;
if(regionNo != null){
putQueryParameter("RegionNo", regionNo);
}
}
@Override
public Class<DescribeSlsProjectResponse> getResponseClass() {
return DescribeSlsProjectResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSlsProjectResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSlsProjectResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSlsProjectResponse extends AcsResponse {
private String requestId;
private List<SlsProjectDataItem> slsProjectData;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<SlsProjectDataItem> getSlsProjectData() {
return this.slsProjectData;
}
public void setSlsProjectData(List<SlsProjectDataItem> slsProjectData) {
this.slsProjectData = slsProjectData;
}
public static class SlsProjectDataItem {
private String project;
private List<String> logStore;
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
}
public List<String> getLogStore() {
return this.logStore;
}
public void setLogStore(List<String> logStore) {
this.logStore = logStore;
}
}
@Override
public DescribeSlsProjectResponse getInstance(UnmarshallerContext context) {
return DescribeSlsProjectResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStatisticsRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeStatisticsRequest extends RpcAcsRequest<DescribeStatisticsResponse> {
public DescribeStatisticsRequest() {
super("aegis", "2016-11-11", "DescribeStatistics", "vipaegis");
}
private String sourceIp;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
@Override
public Class<DescribeStatisticsResponse> getResponseClass() {
return DescribeStatisticsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStatisticsResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeStatisticsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeStatisticsResponse extends AcsResponse {
private String requestId;
private Statistics statistics;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Statistics getStatistics() {
return this.statistics;
}
public void setStatistics(Statistics statistics) {
this.statistics = statistics;
}
public static class Statistics {
private Integer vulAsapSum;
private Integer vulNntfSum;
private Integer healthTotal;
private Integer suspiciousmediumTotal;
private Integer health;
private Integer healthdealedTotal;
private Integer trojan;
private Integer vulLaterSum;
private Integer suspicious;
private Integer vul;
private Integer healthhighTotal;
private Integer healthlowTotal;
private Integer healthseriousTotal;
private Integer vulDealedTotal;
private Integer patch;
private Integer suspicioushighTotal;
private Integer suspiciouslowTotal;
private Integer suspiciousTotal;
private Integer vulTotal;
private Integer suspiciousseriousTotal;
private Integer healthmediumTotal;
private Boolean online;
private Integer suspiciousdealedTotal;
private Integer account;
public Integer getVulAsapSum() {
return this.vulAsapSum;
}
public void setVulAsapSum(Integer vulAsapSum) {
this.vulAsapSum = vulAsapSum;
}
public Integer getVulNntfSum() {
return this.vulNntfSum;
}
public void setVulNntfSum(Integer vulNntfSum) {
this.vulNntfSum = vulNntfSum;
}
public Integer getHealthTotal() {
return this.healthTotal;
}
public void setHealthTotal(Integer healthTotal) {
this.healthTotal = healthTotal;
}
public Integer getSuspiciousmediumTotal() {
return this.suspiciousmediumTotal;
}
public void setSuspiciousmediumTotal(Integer suspiciousmediumTotal) {
this.suspiciousmediumTotal = suspiciousmediumTotal;
}
public Integer getHealth() {
return this.health;
}
public void setHealth(Integer health) {
this.health = health;
}
public Integer getHealthdealedTotal() {
return this.healthdealedTotal;
}
public void setHealthdealedTotal(Integer healthdealedTotal) {
this.healthdealedTotal = healthdealedTotal;
}
public Integer getTrojan() {
return this.trojan;
}
public void setTrojan(Integer trojan) {
this.trojan = trojan;
}
public Integer getVulLaterSum() {
return this.vulLaterSum;
}
public void setVulLaterSum(Integer vulLaterSum) {
this.vulLaterSum = vulLaterSum;
}
public Integer getSuspicious() {
return this.suspicious;
}
public void setSuspicious(Integer suspicious) {
this.suspicious = suspicious;
}
public Integer getVul() {
return this.vul;
}
public void setVul(Integer vul) {
this.vul = vul;
}
public Integer getHealthhighTotal() {
return this.healthhighTotal;
}
public void setHealthhighTotal(Integer healthhighTotal) {
this.healthhighTotal = healthhighTotal;
}
public Integer getHealthlowTotal() {
return this.healthlowTotal;
}
public void setHealthlowTotal(Integer healthlowTotal) {
this.healthlowTotal = healthlowTotal;
}
public Integer getHealthseriousTotal() {
return this.healthseriousTotal;
}
public void setHealthseriousTotal(Integer healthseriousTotal) {
this.healthseriousTotal = healthseriousTotal;
}
public Integer getVulDealedTotal() {
return this.vulDealedTotal;
}
public void setVulDealedTotal(Integer vulDealedTotal) {
this.vulDealedTotal = vulDealedTotal;
}
public Integer getPatch() {
return this.patch;
}
public void setPatch(Integer patch) {
this.patch = patch;
}
public Integer getSuspicioushighTotal() {
return this.suspicioushighTotal;
}
public void setSuspicioushighTotal(Integer suspicioushighTotal) {
this.suspicioushighTotal = suspicioushighTotal;
}
public Integer getSuspiciouslowTotal() {
return this.suspiciouslowTotal;
}
public void setSuspiciouslowTotal(Integer suspiciouslowTotal) {
this.suspiciouslowTotal = suspiciouslowTotal;
}
public Integer getSuspiciousTotal() {
return this.suspiciousTotal;
}
public void setSuspiciousTotal(Integer suspiciousTotal) {
this.suspiciousTotal = suspiciousTotal;
}
public Integer getVulTotal() {
return this.vulTotal;
}
public void setVulTotal(Integer vulTotal) {
this.vulTotal = vulTotal;
}
public Integer getSuspiciousseriousTotal() {
return this.suspiciousseriousTotal;
}
public void setSuspiciousseriousTotal(Integer suspiciousseriousTotal) {
this.suspiciousseriousTotal = suspiciousseriousTotal;
}
public Integer getHealthmediumTotal() {
return this.healthmediumTotal;
}
public void setHealthmediumTotal(Integer healthmediumTotal) {
this.healthmediumTotal = healthmediumTotal;
}
public Boolean getOnline() {
return this.online;
}
public void setOnline(Boolean online) {
this.online = online;
}
public Integer getSuspiciousdealedTotal() {
return this.suspiciousdealedTotal;
}
public void setSuspiciousdealedTotal(Integer suspiciousdealedTotal) {
this.suspiciousdealedTotal = suspiciousdealedTotal;
}
public Integer getAccount() {
return this.account;
}
public void setAccount(Integer account) {
this.account = account;
}
}
@Override
public DescribeStatisticsResponse getInstance(UnmarshallerContext context) {
return DescribeStatisticsResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStrategyExecDetailRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeStrategyExecDetailRequest extends RpcAcsRequest<DescribeStrategyExecDetailResponse> {
public DescribeStrategyExecDetailRequest() {
super("aegis", "2016-11-11", "DescribeStrategyExecDetail", "vipaegis");
}
private String sourceIp;
private Integer strategyId;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Integer getStrategyId() {
return this.strategyId;
}
public void setStrategyId(Integer strategyId) {
this.strategyId = strategyId;
if(strategyId != null){
putQueryParameter("StrategyId", strategyId.toString());
}
}
@Override
public Class<DescribeStrategyExecDetailResponse> getResponseClass() {
return DescribeStrategyExecDetailResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStrategyExecDetailResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeStrategyExecDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeStrategyExecDetailResponse extends AcsResponse {
private String requestId;
private String startTime;
private String endTime;
private String source;
private String percent;
private Integer successCount;
private Integer failCount;
private Integer inProcessCount;
private List<FailedEcs> failedEcsList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
}
public String getPercent() {
return this.percent;
}
public void setPercent(String percent) {
this.percent = percent;
}
public Integer getSuccessCount() {
return this.successCount;
}
public void setSuccessCount(Integer successCount) {
this.successCount = successCount;
}
public Integer getFailCount() {
return this.failCount;
}
public void setFailCount(Integer failCount) {
this.failCount = failCount;
}
public Integer getInProcessCount() {
return this.inProcessCount;
}
public void setInProcessCount(Integer inProcessCount) {
this.inProcessCount = inProcessCount;
}
public List<FailedEcs> getFailedEcsList() {
return this.failedEcsList;
}
public void setFailedEcsList(List<FailedEcs> failedEcsList) {
this.failedEcsList = failedEcsList;
}
public static class FailedEcs {
private String reason;
private String instanceName;
private String iP;
private String intranetIp;
public String getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public String getIP() {
return this.iP;
}
public void setIP(String iP) {
this.iP = iP;
}
public String getIntranetIp() {
return this.intranetIp;
}
public void setIntranetIp(String intranetIp) {
this.intranetIp = intranetIp;
}
}
@Override
public DescribeStrategyExecDetailResponse getInstance(UnmarshallerContext context) {
return DescribeStrategyExecDetailResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStrategyProcessRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeStrategyProcessRequest extends RpcAcsRequest<DescribeStrategyProcessResponse> {
public DescribeStrategyProcessRequest() {
super("aegis", "2016-11-11", "DescribeStrategyProcess", "vipaegis");
}
private String sourceIp;
private Long strategyId;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Long getStrategyId() {
return this.strategyId;
}
public void setStrategyId(Long strategyId) {
this.strategyId = strategyId;
if(strategyId != null){
putQueryParameter("StrategyId", strategyId.toString());
}
}
@Override
public Class<DescribeStrategyProcessResponse> getResponseClass() {
return DescribeStrategyProcessResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStrategyProcessResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeStrategyProcessResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeStrategyProcessResponse extends AcsResponse {
private String requestId;
private Long strategyId;
private Integer processRate;
private Integer execStatus;
private String passRate;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getStrategyId() {
return this.strategyId;
}
public void setStrategyId(Long strategyId) {
this.strategyId = strategyId;
}
public Integer getProcessRate() {
return this.processRate;
}
public void setProcessRate(Integer processRate) {
this.processRate = processRate;
}
public Integer getExecStatus() {
return this.execStatus;
}
public void setExecStatus(Integer execStatus) {
this.execStatus = execStatus;
}
public String getPassRate() {
return this.passRate;
}
public void setPassRate(String passRate) {
this.passRate = passRate;
}
@Override
public DescribeStrategyProcessResponse getInstance(UnmarshallerContext context) {
return DescribeStrategyProcessResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStrategyTargetRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeStrategyTargetRequest extends RpcAcsRequest<DescribeStrategyTargetResponse> {
public DescribeStrategyTargetRequest() {
super("aegis", "2016-11-11", "DescribeStrategyTarget", "vipaegis");
}
private String sourceIp;
private String type;
private String config;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getConfig() {
return this.config;
}
public void setConfig(String config) {
this.config = config;
if(config != null){
putQueryParameter("Config", config);
}
}
@Override
public Class<DescribeStrategyTargetResponse> getResponseClass() {
return DescribeStrategyTargetResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStrategyTargetResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeStrategyTargetResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeStrategyTargetResponse extends AcsResponse {
private String requestId;
private List<StrategyTarget> strategyTargets;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<StrategyTarget> getStrategyTargets() {
return this.strategyTargets;
}
public void setStrategyTargets(List<StrategyTarget> strategyTargets) {
this.strategyTargets = strategyTargets;
}
public static class StrategyTarget {
private String flag;
private String target;
private String targetType;
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public String getTarget() {
return this.target;
}
public void setTarget(String target) {
this.target = target;
}
public String getTargetType() {
return this.targetType;
}
public void setTargetType(String targetType) {
this.targetType = targetType;
}
}
@Override
public DescribeStrategyTargetResponse getInstance(UnmarshallerContext context) {
return DescribeStrategyTargetResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStratetyDetailRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeStratetyDetailRequest extends RpcAcsRequest<DescribeStratetyDetailResponse> {
public DescribeStratetyDetailRequest() {
super("aegis", "2016-11-11", "DescribeStratetyDetail", "vipaegis");
}
private String sourceIp;
private String id;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
if(id != null){
putQueryParameter("Id", id);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeStratetyDetailResponse> getResponseClass() {
return DescribeStratetyDetailResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStratetyDetailResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeStratetyDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeStratetyDetailResponse extends AcsResponse {
private String requestId;
private Strategy strategy;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Strategy getStrategy() {
return this.strategy;
}
public void setStrategy(Strategy strategy) {
this.strategy = strategy;
}
public static class Strategy {
private Integer cycleDays;
private String name;
private Integer id;
private Integer cycleStartTime;
private Integer type;
private List<RiskTypeWhiteListQueryResult> riskTypeWhiteListQueryResultList;
public Integer getCycleDays() {
return this.cycleDays;
}
public void setCycleDays(Integer cycleDays) {
this.cycleDays = cycleDays;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getCycleStartTime() {
return this.cycleStartTime;
}
public void setCycleStartTime(Integer cycleStartTime) {
this.cycleStartTime = cycleStartTime;
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
public List<RiskTypeWhiteListQueryResult> getRiskTypeWhiteListQueryResultList() {
return this.riskTypeWhiteListQueryResultList;
}
public void setRiskTypeWhiteListQueryResultList(List<RiskTypeWhiteListQueryResult> riskTypeWhiteListQueryResultList) {
this.riskTypeWhiteListQueryResultList = riskTypeWhiteListQueryResultList;
}
public static class RiskTypeWhiteListQueryResult {
private String typeName;
private String alias;
private Boolean on;
private List<SubType> subTypes;
public String getTypeName() {
return this.typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public String getAlias() {
return this.alias;
}
public void setAlias(String alias) {
this.alias = alias;
}
public Boolean getOn() {
return this.on;
}
public void setOn(Boolean on) {
this.on = on;
}
public List<SubType> getSubTypes() {
return this.subTypes;
}
public void setSubTypes(List<SubType> subTypes) {
this.subTypes = subTypes;
}
public static class SubType {
private String typeName;
private String alias;
private Boolean on;
public String getTypeName() {
return this.typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public String getAlias() {
return this.alias;
}
public void setAlias(String alias) {
this.alias = alias;
}
public Boolean getOn() {
return this.on;
}
public void setOn(Boolean on) {
this.on = on;
}
}
}
}
@Override
public DescribeStratetyDetailResponse getInstance(UnmarshallerContext context) {
return DescribeStratetyDetailResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStratetyRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeStratetyRequest extends RpcAcsRequest<DescribeStratetyResponse> {
public DescribeStratetyRequest() {
super("aegis", "2016-11-11", "DescribeStratety", "vipaegis");
}
private String sourceIp;
private String strategyIds;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getStrategyIds() {
return this.strategyIds;
}
public void setStrategyIds(String strategyIds) {
this.strategyIds = strategyIds;
if(strategyIds != null){
putQueryParameter("StrategyIds", strategyIds);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeStratetyResponse> getResponseClass() {
return DescribeStratetyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeStratetyResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeStratetyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeStratetyResponse extends AcsResponse {
private String requestId;
private List<Strategy> strategies;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<Strategy> getStrategies() {
return this.strategies;
}
public void setStrategies(List<Strategy> strategies) {
this.strategies = strategies;
}
public static class Strategy {
private Integer cycleDays;
private Integer id;
private Integer cycleStartTime;
private Integer type;
private String name;
private Integer riskCount;
private Integer ecsCount;
private Integer execStatus;
private Integer processRate;
private Integer passRate;
private List<ConfigTarget> configTargets;
public Integer getCycleDays() {
return this.cycleDays;
}
public void setCycleDays(Integer cycleDays) {
this.cycleDays = cycleDays;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getCycleStartTime() {
return this.cycleStartTime;
}
public void setCycleStartTime(Integer cycleStartTime) {
this.cycleStartTime = cycleStartTime;
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Integer getRiskCount() {
return this.riskCount;
}
public void setRiskCount(Integer riskCount) {
this.riskCount = riskCount;
}
public Integer getEcsCount() {
return this.ecsCount;
}
public void setEcsCount(Integer ecsCount) {
this.ecsCount = ecsCount;
}
public Integer getExecStatus() {
return this.execStatus;
}
public void setExecStatus(Integer execStatus) {
this.execStatus = execStatus;
}
public Integer getProcessRate() {
return this.processRate;
}
public void setProcessRate(Integer processRate) {
this.processRate = processRate;
}
public Integer getPassRate() {
return this.passRate;
}
public void setPassRate(Integer passRate) {
this.passRate = passRate;
}
public List<ConfigTarget> getConfigTargets() {
return this.configTargets;
}
public void setConfigTargets(List<ConfigTarget> configTargets) {
this.configTargets = configTargets;
}
public static class ConfigTarget {
private String flag;
private String targetType;
private String target;
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public String getTargetType() {
return this.targetType;
}
public void setTargetType(String targetType) {
this.targetType = targetType;
}
public String getTarget() {
return this.target;
}
public void setTarget(String target) {
this.target = target;
}
}
}
@Override
public DescribeStratetyResponse getInstance(UnmarshallerContext context) {
return DescribeStratetyResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSummaryInfoRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSummaryInfoRequest extends RpcAcsRequest<DescribeSummaryInfoResponse> {
public DescribeSummaryInfoRequest() {
super("aegis", "2016-11-11", "DescribeSummaryInfo", "vipaegis");
}
private String sourceIp;
private String lang;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeSummaryInfoResponse> getResponseClass() {
return DescribeSummaryInfoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSummaryInfoResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSummaryInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSummaryInfoResponse extends AcsResponse {
private String requestId;
private Integer aegisClientOfflineCount;
private Integer securityScore;
private Integer aegisClientOnlineCount;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getAegisClientOfflineCount() {
return this.aegisClientOfflineCount;
}
public void setAegisClientOfflineCount(Integer aegisClientOfflineCount) {
this.aegisClientOfflineCount = aegisClientOfflineCount;
}
public Integer getSecurityScore() {
return this.securityScore;
}
public void setSecurityScore(Integer securityScore) {
this.securityScore = securityScore;
}
public Integer getAegisClientOnlineCount() {
return this.aegisClientOnlineCount;
}
public void setAegisClientOnlineCount(Integer aegisClientOnlineCount) {
this.aegisClientOnlineCount = aegisClientOnlineCount;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public DescribeSummaryInfoResponse getInstance(UnmarshallerContext context) {
return DescribeSummaryInfoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSuspEventDetailRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSuspEventDetailRequest extends RpcAcsRequest<DescribeSuspEventDetailResponse> {
public DescribeSuspEventDetailRequest() {
super("aegis", "2016-11-11", "DescribeSuspEventDetail", "vipaegis");
}
private Integer suspiciousEventId;
private String sourceIp;
private String from;
private String lang;
public Integer getSuspiciousEventId() {
return this.suspiciousEventId;
}
public void setSuspiciousEventId(Integer suspiciousEventId) {
this.suspiciousEventId = suspiciousEventId;
if(suspiciousEventId != null){
putQueryParameter("SuspiciousEventId", suspiciousEventId.toString());
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
if(from != null){
putQueryParameter("From", from);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DescribeSuspEventDetailResponse> getResponseClass() {
return DescribeSuspEventDetailResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSuspEventDetailResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSuspEventDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSuspEventDetailResponse extends AcsResponse {
private String requestId;
private String lastTime;
private Integer id;
private String instanceName;
private String internetIp;
private String intranetIp;
private String uuid;
private String eventDesc;
private String eventTypeDesc;
private String level;
private String eventStatus;
private String saleVersion;
private String dataSource;
private String type;
private String operateMsg;
private String sasId;
private String eventName;
private Boolean canBeDealOnLine;
private List<QuaraFile> details;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getLastTime() {
return this.lastTime;
}
public void setLastTime(String lastTime) {
this.lastTime = lastTime;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public String getInternetIp() {
return this.internetIp;
}
public void setInternetIp(String internetIp) {
this.internetIp = internetIp;
}
public String getIntranetIp() {
return this.intranetIp;
}
public void setIntranetIp(String intranetIp) {
this.intranetIp = intranetIp;
}
public String getUuid() {
return this.uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getEventDesc() {
return this.eventDesc;
}
public void setEventDesc(String eventDesc) {
this.eventDesc = eventDesc;
}
public String getEventTypeDesc() {
return this.eventTypeDesc;
}
public void setEventTypeDesc(String eventTypeDesc) {
this.eventTypeDesc = eventTypeDesc;
}
public String getLevel() {
return this.level;
}
public void setLevel(String level) {
this.level = level;
}
public String getEventStatus() {
return this.eventStatus;
}
public void setEventStatus(String eventStatus) {
this.eventStatus = eventStatus;
}
public String getSaleVersion() {
return this.saleVersion;
}
public void setSaleVersion(String saleVersion) {
this.saleVersion = saleVersion;
}
public String getDataSource() {
return this.dataSource;
}
public void setDataSource(String dataSource) {
this.dataSource = dataSource;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getOperateMsg() {
return this.operateMsg;
}
public void setOperateMsg(String operateMsg) {
this.operateMsg = operateMsg;
}
public String getSasId() {
return this.sasId;
}
public void setSasId(String sasId) {
this.sasId = sasId;
}
public String getEventName() {
return this.eventName;
}
public void setEventName(String eventName) {
this.eventName = eventName;
}
public Boolean getCanBeDealOnLine() {
return this.canBeDealOnLine;
}
public void setCanBeDealOnLine(Boolean canBeDealOnLine) {
this.canBeDealOnLine = canBeDealOnLine;
}
public List<QuaraFile> getDetails() {
return this.details;
}
public void setDetails(List<QuaraFile> details) {
this.details = details;
}
public static class QuaraFile {
private String name;
private String type;
private String infoType;
private String value;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getInfoType() {
return this.infoType;
}
public void setInfoType(String infoType) {
this.infoType = infoType;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
@Override
public DescribeSuspEventDetailResponse getInstance(UnmarshallerContext context) {
return DescribeSuspEventDetailResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSuspEventExportInfoRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSuspEventExportInfoRequest extends RpcAcsRequest<DescribeSuspEventExportInfoResponse> {
public DescribeSuspEventExportInfoRequest() {
super("aegis", "2016-11-11", "DescribeSuspEventExportInfo", "vipaegis");
}
private String sourceIp;
private String from;
private Integer exportId;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
if(from != null){
putQueryParameter("From", from);
}
}
public Integer getExportId() {
return this.exportId;
}
public void setExportId(Integer exportId) {
this.exportId = exportId;
if(exportId != null){
putQueryParameter("ExportId", exportId.toString());
}
}
@Override
public Class<DescribeSuspEventExportInfoResponse> getResponseClass() {
return DescribeSuspEventExportInfoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSuspEventExportInfoResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSuspEventExportInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSuspEventExportInfoResponse extends AcsResponse {
private String requestId;
private String fileName;
private Long gmtModified;
private Integer progress;
private Integer id;
private String type;
private Integer totalCount;
private Long gmtCreate;
private String properties;
private String exportStatus;
private String link;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public Long getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
}
public Integer getProgress() {
return this.progress;
}
public void setProgress(Integer progress) {
this.progress = progress;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Long getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
}
public String getProperties() {
return this.properties;
}
public void setProperties(String properties) {
this.properties = properties;
}
public String getExportStatus() {
return this.exportStatus;
}
public void setExportStatus(String exportStatus) {
this.exportStatus = exportStatus;
}
public String getLink() {
return this.link;
}
public void setLink(String link) {
this.link = link;
}
@Override
public DescribeSuspEventExportInfoResponse getInstance(UnmarshallerContext context) {
return DescribeSuspEventExportInfoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSuspEventQuaraFilesRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSuspEventQuaraFilesRequest extends RpcAcsRequest<DescribeSuspEventQuaraFilesResponse> {
public DescribeSuspEventQuaraFilesRequest() {
super("aegis", "2016-11-11", "DescribeSuspEventQuaraFiles", "vipaegis");
}
private String sourceIp;
private String pageSize;
private String currentPage;
private String from;
private String status;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getPageSize() {
return this.pageSize;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize);
}
}
public String getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(String currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage);
}
}
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
if(from != null){
putQueryParameter("From", from);
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status);
}
}
@Override
public Class<DescribeSuspEventQuaraFilesResponse> getResponseClass() {
return DescribeSuspEventQuaraFilesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSuspEventQuaraFilesResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSuspEventQuaraFilesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSuspEventQuaraFilesResponse extends AcsResponse {
private String requestId;
private Integer count;
private Integer pageSize;
private Integer totalCount;
private Integer currentPage;
private List<QuaraFile> quaraFiles;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public List<QuaraFile> getQuaraFiles() {
return this.quaraFiles;
}
public void setQuaraFiles(List<QuaraFile> quaraFiles) {
this.quaraFiles = quaraFiles;
}
public static class QuaraFile {
private String path;
private String eventName;
private Integer id;
private String eventType;
private String tag;
private String uuid;
private String instanceName;
private String internetIp;
private String ip;
private String status;
private String md5;
private String modifyTime;
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
public String getEventName() {
return this.eventName;
}
public void setEventName(String eventName) {
this.eventName = eventName;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getEventType() {
return this.eventType;
}
public void setEventType(String eventType) {
this.eventType = eventType;
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getUuid() {
return this.uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public String getInternetIp() {
return this.internetIp;
}
public void setInternetIp(String internetIp) {
this.internetIp = internetIp;
}
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getMd5() {
return this.md5;
}
public void setMd5(String md5) {
this.md5 = md5;
}
public String getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(String modifyTime) {
this.modifyTime = modifyTime;
}
}
@Override
public DescribeSuspEventQuaraFilesResponse getInstance(UnmarshallerContext context) {
return DescribeSuspEventQuaraFilesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSuspEventTypesRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSuspEventTypesRequest extends RpcAcsRequest<DescribeSuspEventTypesResponse> {
public DescribeSuspEventTypesRequest() {
super("aegis", "2016-11-11", "DescribeSuspEventTypes", "vipaegis");
}
private String sourceIp;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
@Override
public Class<DescribeSuspEventTypesResponse> getResponseClass() {
return DescribeSuspEventTypesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSuspEventTypesResponse.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aegis.transform.v20161111.DescribeSuspEventTypesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSuspEventTypesResponse extends AcsResponse {
private String requestId;
private Integer totalCount;
private List<Data> eventTypes;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<Data> getEventTypes() {
return this.eventTypes;
}
public void setEventTypes(List<Data> eventTypes) {
this.eventTypes = eventTypes;
}
public static class Data {
private String aliseEventType;
private String eventType;
public String getAliseEventType() {
return this.aliseEventType;
}
public void setAliseEventType(String aliseEventType) {
this.aliseEventType = aliseEventType;
}
public String getEventType() {
return this.eventType;
}
public void setEventType(String eventType) {
this.eventType = eventType;
}
}
@Override
public DescribeSuspEventTypesResponse getInstance(UnmarshallerContext context) {
return DescribeSuspEventTypesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model
|
java-sources/com/aliyun/aliyun-java-sdk-aegis/1.0.6/com/aliyuncs/aegis/model/v20161111/DescribeSuspEventUserSettingRequest.java
|
/*
* 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.
*/
package com.aliyuncs.aegis.model.v20161111;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class DescribeSuspEventUserSettingRequest extends RpcAcsRequest<DescribeSuspEventUserSettingResponse> {
public DescribeSuspEventUserSettingRequest() {
super("aegis", "2016-11-11", "DescribeSuspEventUserSetting", "vipaegis");
}
private String sourceIp;
private String from;
private Integer id;
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
if(from != null){
putQueryParameter("From", from);
}
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
if(id != null){
putQueryParameter("Id", id.toString());
}
}
@Override
public Class<DescribeSuspEventUserSettingResponse> getResponseClass() {
return DescribeSuspEventUserSettingResponse.class;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.