com.aliyuncs.polardb.model.v20170801.DescribePendingMaintenanceActionResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-polardb Show documentation
Show all versions of aliyun-java-sdk-polardb Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
/*
* 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.polardb.model.v20170801;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.polardb.transform.v20170801.DescribePendingMaintenanceActionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribePendingMaintenanceActionResponse extends AcsResponse {
private Integer totalRecordCount;
private String requestId;
private Integer pageSize;
private Integer pageNumber;
private List items;
public Integer getTotalRecordCount() {
return this.totalRecordCount;
}
public void setTotalRecordCount(Integer totalRecordCount) {
this.totalRecordCount = totalRecordCount;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public List getItems() {
return this.items;
}
public void setItems(List items) {
this.items = items;
}
public static class ItemsItem {
private Integer status;
private String prepareInterval;
private String deadline;
private String dBType;
private String taskType;
private String startTime;
private String dBVersion;
private String modifiedTime;
private String dBClusterId;
private String region;
private String resultInfo;
private String createdTime;
private Integer id;
private String switchTime;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getPrepareInterval() {
return this.prepareInterval;
}
public void setPrepareInterval(String prepareInterval) {
this.prepareInterval = prepareInterval;
}
public String getDeadline() {
return this.deadline;
}
public void setDeadline(String deadline) {
this.deadline = deadline;
}
public String getDBType() {
return this.dBType;
}
public void setDBType(String dBType) {
this.dBType = dBType;
}
public String getTaskType() {
return this.taskType;
}
public void setTaskType(String taskType) {
this.taskType = taskType;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getDBVersion() {
return this.dBVersion;
}
public void setDBVersion(String dBVersion) {
this.dBVersion = dBVersion;
}
public String getModifiedTime() {
return this.modifiedTime;
}
public void setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
}
public String getResultInfo() {
return this.resultInfo;
}
public void setResultInfo(String resultInfo) {
this.resultInfo = resultInfo;
}
public String getCreatedTime() {
return this.createdTime;
}
public void setCreatedTime(String createdTime) {
this.createdTime = createdTime;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getSwitchTime() {
return this.switchTime;
}
public void setSwitchTime(String switchTime) {
this.switchTime = switchTime;
}
}
@Override
public DescribePendingMaintenanceActionResponse getInstance(UnmarshallerContext context) {
return DescribePendingMaintenanceActionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy