com.aliyun.ens20171110.models.RenewInstanceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class RenewInstanceResponseBody extends TeaModel {
/**
* The ID of the request. This parameter is a common parameter. Each request has a unique ID. You can use the ID to troubleshoot issues.
*
* example:
* 86A6D421-A0C7-4C01-8648-47377CA6A2CE
*/
@NameInMap("RequestId")
public String requestId;
public static RenewInstanceResponseBody build(java.util.Map map) throws Exception {
RenewInstanceResponseBody self = new RenewInstanceResponseBody();
return TeaModel.build(map, self);
}
public RenewInstanceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy