com.aliyuncs.sas.model.v20181203.DescribeVulListRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-sas Show documentation
Show all versions of aliyun-java-sdk-sas Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* 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.sas.model.v20181203;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.sas.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeVulListRequest extends RpcAcsRequest {
private String attachTypes;
private String type;
private String vpcInstanceIds;
private String groupId;
private String aliasName;
private String name;
private String necessity;
private String uuids;
private String remark;
private Integer pageSize;
private String lang;
private String dealed;
private Integer currentPage;
public DescribeVulListRequest() {
super("Sas", "2018-12-03", "DescribeVulList");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getAttachTypes() {
return this.attachTypes;
}
public void setAttachTypes(String attachTypes) {
this.attachTypes = attachTypes;
if(attachTypes != null){
putQueryParameter("AttachTypes", attachTypes);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getVpcInstanceIds() {
return this.vpcInstanceIds;
}
public void setVpcInstanceIds(String vpcInstanceIds) {
this.vpcInstanceIds = vpcInstanceIds;
if(vpcInstanceIds != null){
putQueryParameter("VpcInstanceIds", vpcInstanceIds);
}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putQueryParameter("GroupId", groupId);
}
}
public String getAliasName() {
return this.aliasName;
}
public void setAliasName(String aliasName) {
this.aliasName = aliasName;
if(aliasName != null){
putQueryParameter("AliasName", aliasName);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getNecessity() {
return this.necessity;
}
public void setNecessity(String necessity) {
this.necessity = necessity;
if(necessity != null){
putQueryParameter("Necessity", necessity);
}
}
public String getUuids() {
return this.uuids;
}
public void setUuids(String uuids) {
this.uuids = uuids;
if(uuids != null){
putQueryParameter("Uuids", uuids);
}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
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());
}
}
@Override
public Class getResponseClass() {
return DescribeVulListResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy