com.aliyun.r_kvstore20150101.models.SwitchInstanceHAResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of r_kvstore20150101 Show documentation
Show all versions of r_kvstore20150101 Show documentation
Alibaba Cloud R-kvstore (20150101) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.r_kvstore20150101.models;
import com.aliyun.tea.*;
public class SwitchInstanceHAResponseBody extends TeaModel {
/**
* The ID of the request.
*
* example:
* 5D622714-AEDD-4609-9167-F5DDD3D1****
*/
@NameInMap("RequestId")
public String requestId;
public static SwitchInstanceHAResponseBody build(java.util.Map map) throws Exception {
SwitchInstanceHAResponseBody self = new SwitchInstanceHAResponseBody();
return TeaModel.build(map, self);
}
public SwitchInstanceHAResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy