com.aliyun.eas20210701.models.AttachGatewayDomainResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eas20210701 Show documentation
Show all versions of eas20210701 Show documentation
Alibaba Cloud eas (20210701) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eas20210701.models;
import com.aliyun.tea.*;
public class AttachGatewayDomainResponseBody extends TeaModel {
/**
* The ID of the private gateway. To obtain the private gateway ID, see the GatewayId parameter in the response parameters of the ListGateway operation.
*
* example:
* gw-1uhcqmsc7x22******
*/
@NameInMap("GatewayId")
public String gatewayId;
/**
* The error message.
*
* example:
* Successfully update custom endpoint for gateway gw-1uhcqmsc7x22******
*/
@NameInMap("Message")
public String message;
/**
* The ID of the request.
*
* example:
* 40325405-579C-4D82****
*/
@NameInMap("RequestId")
public String requestId;
public static AttachGatewayDomainResponseBody build(java.util.Map map) throws Exception {
AttachGatewayDomainResponseBody self = new AttachGatewayDomainResponseBody();
return TeaModel.build(map, self);
}
public AttachGatewayDomainResponseBody setGatewayId(String gatewayId) {
this.gatewayId = gatewayId;
return this;
}
public String getGatewayId() {
return this.gatewayId;
}
public AttachGatewayDomainResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public AttachGatewayDomainResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}