com.aliyun.dms_enterprise20181101.models.CreateProxyAccessResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dms_enterprise20181101 Show documentation
Show all versions of dms_enterprise20181101 Show documentation
Alibaba Cloud dms-enterprise (20181101) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dms_enterprise20181101.models;
import com.aliyun.tea.*;
public class CreateProxyAccessResponseBody extends TeaModel {
/**
* The error code returned to the query task.
*
* example:
* 200
*/
@NameInMap("ErrorCode")
public String errorCode;
/**
* The error message that is returned.
*
* example:
* UnknownError
*/
@NameInMap("ErrorMessage")
public String errorMessage;
/**
* The ID of the security protection authorization. After the security protection agent authorizes the target user, the system automatically generates a security protection authorization ID. The ID is globally unique.
*
* example:
* 1
*/
@NameInMap("ProxyAccessId")
public Long proxyAccessId;
/**
* The ID of the request.
*
* example:
* 0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the call was successful.
*
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static CreateProxyAccessResponseBody build(java.util.Map map) throws Exception {
CreateProxyAccessResponseBody self = new CreateProxyAccessResponseBody();
return TeaModel.build(map, self);
}
public CreateProxyAccessResponseBody setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public CreateProxyAccessResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public CreateProxyAccessResponseBody setProxyAccessId(Long proxyAccessId) {
this.proxyAccessId = proxyAccessId;
return this;
}
public Long getProxyAccessId() {
return this.proxyAccessId;
}
public CreateProxyAccessResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateProxyAccessResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}