com.aliyuncs.cassandra.model.v20190101.DescribeBackupResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-cassandra Show documentation
Show all versions of aliyun-java-sdk-cassandra Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* 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.cassandra.model.v20190101;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cassandra.transform.v20190101.DescribeBackupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeBackupResponse extends AcsResponse {
private String requestId;
private Backup backup;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Backup getBackup() {
return this.backup;
}
public void setBackup(Backup backup) {
this.backup = backup;
}
public static class Backup {
private String clusterId;
private String dataCenterId;
private String backupId;
private String backupType;
private String status;
private String startTime;
private String endTime;
private Long size;
private String details;
public String getClusterId() {
return this.clusterId;
}
public void setClusterId(String clusterId) {
this.clusterId = clusterId;
}
public String getDataCenterId() {
return this.dataCenterId;
}
public void setDataCenterId(String dataCenterId) {
this.dataCenterId = dataCenterId;
}
public String getBackupId() {
return this.backupId;
}
public void setBackupId(String backupId) {
this.backupId = backupId;
}
public String getBackupType() {
return this.backupType;
}
public void setBackupType(String backupType) {
this.backupType = backupType;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public Long getSize() {
return this.size;
}
public void setSize(Long size) {
this.size = size;
}
public String getDetails() {
return this.details;
}
public void setDetails(String details) {
this.details = details;
}
}
@Override
public DescribeBackupResponse getInstance(UnmarshallerContext context) {
return DescribeBackupResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy