com.aliyuncs.aegis.model.v20161111.DescribeStratetyResponse 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.DescribeStratetyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeStratetyResponse extends AcsResponse {
private String requestId;
private List strategies;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List getStrategies() {
return this.strategies;
}
public void setStrategies(List 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 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 getConfigTargets() {
return this.configTargets;
}
public void setConfigTargets(List 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy