com.aliyuncs.dds.model.v20151201.DescribeRunningLogRecordsResponse 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.dds.model.v20151201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.dds.transform.v20151201.DescribeRunningLogRecordsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRunningLogRecordsResponse extends AcsResponse {
private Integer totalRecordCount;
private Integer pageRecordCount;
private String requestId;
private Integer pageNumber;
private String engine;
private List items;
public Integer getTotalRecordCount() {
return this.totalRecordCount;
}
public void setTotalRecordCount(Integer totalRecordCount) {
this.totalRecordCount = totalRecordCount;
}
public Integer getPageRecordCount() {
return this.pageRecordCount;
}
public void setPageRecordCount(Integer pageRecordCount) {
this.pageRecordCount = pageRecordCount;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public String getEngine() {
return this.engine;
}
public void setEngine(String engine) {
this.engine = engine;
}
public List getItems() {
return this.items;
}
public void setItems(List items) {
this.items = items;
}
public static class LogRecords {
private String connInfo;
private String createTime;
private String category;
private String content;
private Integer id;
public String getConnInfo() {
return this.connInfo;
}
public void setConnInfo(String connInfo) {
this.connInfo = connInfo;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
}
@Override
public DescribeRunningLogRecordsResponse getInstance(UnmarshallerContext context) {
return DescribeRunningLogRecordsResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy