com.aliyun.sdk.service.ens20171110.models.UpgradeApplicationResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ens20171110 Show documentation
Show all versions of alibabacloud-ens20171110 Show documentation
Alibaba Cloud Ens (20171110) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ens20171110.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpgradeApplicationResponseBody} extends {@link TeaModel}
*
* UpgradeApplicationResponseBody
*/
public class UpgradeApplicationResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("TaskId")
private String taskId;
private UpgradeApplicationResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.taskId = builder.taskId;
}
public static Builder builder() {
return new Builder();
}
public static UpgradeApplicationResponseBody 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 ID of the request.
*
* example:
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The task ID. You can use the task ID to query the upgrade progress or status.
*
* example:
* 6f24a774-6bd5-4026-bb7d-deffb1dad875
*/
public Builder taskId(String taskId) {
this.taskId = taskId;
return this;
}
public UpgradeApplicationResponseBody build() {
return new UpgradeApplicationResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy