com.aliyun.sdk.service.ecs20140526.models.ModifyDiskSpecResponseBody Maven / Gradle / Ivy
Show all versions of alibabacloud-ecs20140526 Show documentation
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ModifyDiskSpecResponseBody} extends {@link TeaModel}
*
* ModifyDiskSpecResponseBody
*/
public class ModifyDiskSpecResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("OrderId")
private String orderId;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("TaskId")
private String taskId;
private ModifyDiskSpecResponseBody(Builder builder) {
this.orderId = builder.orderId;
this.requestId = builder.requestId;
this.taskId = builder.taskId;
}
public static Builder builder() {
return new Builder();
}
public static ModifyDiskSpecResponseBody create() {
return builder().build();
}
/**
* @return orderId
*/
public String getOrderId() {
return this.orderId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return taskId
*/
public String getTaskId() {
return this.taskId;
}
public static final class Builder {
private String orderId;
private String requestId;
private String taskId;
/**
* The order ID.
*
*
* > This parameter is returned only when the category of a subscription disk or the performance level of a subscription ESSD is modified.
*/
public Builder orderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* The request ID.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The ID of the disk category change task.
*
*
* > If you only modify the performance level of an ESSD, this parameter is not returned.
*/
public Builder taskId(String taskId) {
this.taskId = taskId;
return this;
}
public ModifyDiskSpecResponseBody build() {
return new ModifyDiskSpecResponseBody(this);
}
}
}