![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dds20151201.models.TransferClusterBackupResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dds20151201 Show documentation
Show all versions of dds20151201 Show documentation
Alibaba Cloud Dds (20151201) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dds20151201.models;
import com.aliyun.tea.*;
public class TransferClusterBackupResponseBody extends TeaModel {
/**
* Indicates whether the instance is switched to the cluster backup mode. If the value of this parameter is 1, the instance is switched to the cluster backup mode.
*
* example:
* 1
*/
@NameInMap("AlreadyDone")
public String alreadyDone;
/**
* The request ID.
*
* example:
* 3C4A2494-85C4-45C5-93CF-548DB3375193
*/
@NameInMap("RequestId")
public String requestId;
public static TransferClusterBackupResponseBody build(java.util.Map map) throws Exception {
TransferClusterBackupResponseBody self = new TransferClusterBackupResponseBody();
return TeaModel.build(map, self);
}
public TransferClusterBackupResponseBody setAlreadyDone(String alreadyDone) {
this.alreadyDone = alreadyDone;
return this;
}
public String getAlreadyDone() {
return this.alreadyDone;
}
public TransferClusterBackupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy