com.aliyun.sdk.service.ecs20140526.models.RedeployInstanceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ecs20140526 Show documentation
Show all versions of alibabacloud-ecs20140526 Show documentation
Alibaba Cloud Ecs (20140526) Async SDK for Java
// 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 RedeployInstanceResponseBody} extends {@link TeaModel}
*
* RedeployInstanceResponseBody
*/
public class RedeployInstanceResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("TaskId")
private String taskId;
private RedeployInstanceResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.taskId = builder.taskId;
}
public static Builder builder() {
return new Builder();
}
public static RedeployInstanceResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return taskId
*/
public String getTaskId() {
return this.taskId;
}
public static final class Builder {
private String requestId;
private String taskId;
/**
* The request ID.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The ID of the redeployment task.
*
*
* You can call the [DescribeTasks](~~25622~~) operation to query the redeployment result.
*/
public Builder taskId(String taskId) {
this.taskId = taskId;
return this;
}
public RedeployInstanceResponseBody build() {
return new RedeployInstanceResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy