com.huaweicloud.sdk.hss.v5.model.AppChangeResponseInfo Maven / Gradle / Ivy
package com.huaweicloud.sdk.hss.v5.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* 软件变动历史信息
*/
public class AppChangeResponseInfo {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "agent_id")
private String agentId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "variation_type")
private String variationType;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "host_id")
private String hostId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "app_name")
private String appName;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "host_name")
private String hostName;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "host_ip")
private String hostIp;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "version")
private String version;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "update_time")
private Long updateTime;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "recent_scan_time")
private Long recentScanTime;
public AppChangeResponseInfo withAgentId(String agentId) {
this.agentId = agentId;
return this;
}
/**
* Agent ID
* @return agentId
*/
public String getAgentId() {
return agentId;
}
public void setAgentId(String agentId) {
this.agentId = agentId;
}
public AppChangeResponseInfo withVariationType(String variationType) {
this.variationType = variationType;
return this;
}
/**
* the type of change - add :新建 - delete :删除 - modify :修改
* @return variationType
*/
public String getVariationType() {
return variationType;
}
public void setVariationType(String variationType) {
this.variationType = variationType;
}
public AppChangeResponseInfo withHostId(String hostId) {
this.hostId = hostId;
return this;
}
/**
* host_id
* @return hostId
*/
public String getHostId() {
return hostId;
}
public void setHostId(String hostId) {
this.hostId = hostId;
}
public AppChangeResponseInfo withAppName(String appName) {
this.appName = appName;
return this;
}
/**
* 软件名称
* @return appName
*/
public String getAppName() {
return appName;
}
public void setAppName(String appName) {
this.appName = appName;
}
public AppChangeResponseInfo withHostName(String hostName) {
this.hostName = hostName;
return this;
}
/**
* 服务器名称
* @return hostName
*/
public String getHostName() {
return hostName;
}
public void setHostName(String hostName) {
this.hostName = hostName;
}
public AppChangeResponseInfo withHostIp(String hostIp) {
this.hostIp = hostIp;
return this;
}
/**
* 服务器ip
* @return hostIp
*/
public String getHostIp() {
return hostIp;
}
public void setHostIp(String hostIp) {
this.hostIp = hostIp;
}
public AppChangeResponseInfo withVersion(String version) {
this.version = version;
return this;
}
/**
* 版本号
* @return version
*/
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public AppChangeResponseInfo withUpdateTime(Long updateTime) {
this.updateTime = updateTime;
return this;
}
/**
* 软件更新时间
* minimum: 0
* maximum: 4824430336000
* @return updateTime
*/
public Long getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
}
public AppChangeResponseInfo withRecentScanTime(Long recentScanTime) {
this.recentScanTime = recentScanTime;
return this;
}
/**
* 最近扫描时间
* minimum: 0
* maximum: 4824430336000
* @return recentScanTime
*/
public Long getRecentScanTime() {
return recentScanTime;
}
public void setRecentScanTime(Long recentScanTime) {
this.recentScanTime = recentScanTime;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
AppChangeResponseInfo that = (AppChangeResponseInfo) obj;
return Objects.equals(this.agentId, that.agentId) && Objects.equals(this.variationType, that.variationType)
&& Objects.equals(this.hostId, that.hostId) && Objects.equals(this.appName, that.appName)
&& Objects.equals(this.hostName, that.hostName) && Objects.equals(this.hostIp, that.hostIp)
&& Objects.equals(this.version, that.version) && Objects.equals(this.updateTime, that.updateTime)
&& Objects.equals(this.recentScanTime, that.recentScanTime);
}
@Override
public int hashCode() {
return Objects
.hash(agentId, variationType, hostId, appName, hostName, hostIp, version, updateTime, recentScanTime);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AppChangeResponseInfo {\n");
sb.append(" agentId: ").append(toIndentedString(agentId)).append("\n");
sb.append(" variationType: ").append(toIndentedString(variationType)).append("\n");
sb.append(" hostId: ").append(toIndentedString(hostId)).append("\n");
sb.append(" appName: ").append(toIndentedString(appName)).append("\n");
sb.append(" hostName: ").append(toIndentedString(hostName)).append("\n");
sb.append(" hostIp: ").append(toIndentedString(hostIp)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append(" updateTime: ").append(toIndentedString(updateTime)).append("\n");
sb.append(" recentScanTime: ").append(toIndentedString(recentScanTime)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}