com.aliyun.edas20170801.models.ScaleoutApplicationWithNewInstancesResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edas20170801 Show documentation
Show all versions of edas20170801 Show documentation
Alibaba Cloud Enterprise Distributed Application Service (20170801) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.edas20170801.models;
import com.aliyun.tea.*;
public class ScaleoutApplicationWithNewInstancesResponseBody extends TeaModel {
/**
* The ID of the change process for the scale-out.
*/
@NameInMap("ChangeOrderId")
public String changeOrderId;
/**
* The HTTP status code that is returned.
*/
@NameInMap("Code")
public Integer code;
/**
* The IDs of ECS instances.
*/
@NameInMap("InstanceIds")
public java.util.List instanceIds;
/**
* The additional information that is returned.
*/
@NameInMap("Message")
public String message;
/**
* The ID of the request.
*/
@NameInMap("RequestId")
public String requestId;
public static ScaleoutApplicationWithNewInstancesResponseBody build(java.util.Map map) throws Exception {
ScaleoutApplicationWithNewInstancesResponseBody self = new ScaleoutApplicationWithNewInstancesResponseBody();
return TeaModel.build(map, self);
}
public ScaleoutApplicationWithNewInstancesResponseBody setChangeOrderId(String changeOrderId) {
this.changeOrderId = changeOrderId;
return this;
}
public String getChangeOrderId() {
return this.changeOrderId;
}
public ScaleoutApplicationWithNewInstancesResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ScaleoutApplicationWithNewInstancesResponseBody setInstanceIds(java.util.List instanceIds) {
this.instanceIds = instanceIds;
return this;
}
public java.util.List getInstanceIds() {
return this.instanceIds;
}
public ScaleoutApplicationWithNewInstancesResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ScaleoutApplicationWithNewInstancesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}