com.aliyuncs.dataworks_public.model.v20200518.GetMetaTablePartitionResponse Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.dataworks_public.model.v20200518;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.dataworks_public.transform.v20200518.GetMetaTablePartitionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetMetaTablePartitionResponse extends AcsResponse {
private String requestId;
private String errorCode;
private String errorMessage;
private Integer httpStatusCode;
private Boolean success;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer pageNumber;
private Integer pageSize;
private Long totalCount;
private List dataEntityList;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public List getDataEntityList() {
return this.dataEntityList;
}
public void setDataEntityList(List dataEntityList) {
this.dataEntityList = dataEntityList;
}
public static class DataEntityListItem {
private String partitionGuid;
private String partitionName;
private Long createTime;
private Long dataSize;
private Long recordCount;
private Long modifiedTime;
private String tableGuid;
private String comment;
private String partitionType;
private String partitionPath;
private String partitionLocation;
public String getPartitionGuid() {
return this.partitionGuid;
}
public void setPartitionGuid(String partitionGuid) {
this.partitionGuid = partitionGuid;
}
public String getPartitionName() {
return this.partitionName;
}
public void setPartitionName(String partitionName) {
this.partitionName = partitionName;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public Long getDataSize() {
return this.dataSize;
}
public void setDataSize(Long dataSize) {
this.dataSize = dataSize;
}
public Long getRecordCount() {
return this.recordCount;
}
public void setRecordCount(Long recordCount) {
this.recordCount = recordCount;
}
public Long getModifiedTime() {
return this.modifiedTime;
}
public void setModifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getTableGuid() {
return this.tableGuid;
}
public void setTableGuid(String tableGuid) {
this.tableGuid = tableGuid;
}
public String getComment() {
return this.comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public String getPartitionType() {
return this.partitionType;
}
public void setPartitionType(String partitionType) {
this.partitionType = partitionType;
}
public String getPartitionPath() {
return this.partitionPath;
}
public void setPartitionPath(String partitionPath) {
this.partitionPath = partitionPath;
}
public String getPartitionLocation() {
return this.partitionLocation;
}
public void setPartitionLocation(String partitionLocation) {
this.partitionLocation = partitionLocation;
}
}
}
@Override
public GetMetaTablePartitionResponse getInstance(UnmarshallerContext context) {
return GetMetaTablePartitionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy