com.aliyun.hbase20170115.models.ModifyClusterSecurityIpListResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbase20170115 Show documentation
Show all versions of hbase20170115 Show documentation
Alibaba Cloud ApsaraDB for Hbase (20170115) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.hbase20170115.models;
import com.aliyun.tea.*;
public class ModifyClusterSecurityIpListResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ModifyClusterSecurityIpListResponseBody body;
public static ModifyClusterSecurityIpListResponse build(java.util.Map map) throws Exception {
ModifyClusterSecurityIpListResponse self = new ModifyClusterSecurityIpListResponse();
return TeaModel.build(map, self);
}
public ModifyClusterSecurityIpListResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public ModifyClusterSecurityIpListResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ModifyClusterSecurityIpListResponse setBody(ModifyClusterSecurityIpListResponseBody body) {
this.body = body;
return this;
}
public ModifyClusterSecurityIpListResponseBody getBody() {
return this.body;
}
}