com.aliyuncs.aegis.model.v20161111.DescribeSearchConditionResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-aegis Show documentation
Show all versions of aliyun-java-sdk-aegis Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
/*
* 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 conditionList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List getConditionList() {
return this.conditionList;
}
public void setConditionList(List 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy