com.aliyuncs.ecs.model.v20140526.DescribeSnapshotGroupsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-ecs Show documentation
Show all versions of aliyun-java-sdk-ecs 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.ecs.model.v20140526;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ecs.transform.v20140526.DescribeSnapshotGroupsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSnapshotGroupsResponse extends AcsResponse {
private String nextToken;
private String requestId;
private List snapshotGroups;
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List getSnapshotGroups() {
return this.snapshotGroups;
}
public void setSnapshotGroups(List snapshotGroups) {
this.snapshotGroups = snapshotGroups;
}
public static class SnapshotGroup {
private String status;
private String creationTime;
private String description;
private String progressStatus;
private String snapshotGroupId;
private String instanceId;
private String name;
private String resourceGroupId;
private List tags;
private List snapshots;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getProgressStatus() {
return this.progressStatus;
}
public void setProgressStatus(String progressStatus) {
this.progressStatus = progressStatus;
}
public String getSnapshotGroupId() {
return this.snapshotGroupId;
}
public void setSnapshotGroupId(String snapshotGroupId) {
this.snapshotGroupId = snapshotGroupId;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
public List getTags() {
return this.tags;
}
public void setTags(List tags) {
this.tags = tags;
}
public List getSnapshots() {
return this.snapshots;
}
public void setSnapshots(List snapshots) {
this.snapshots = snapshots;
}
public static class Tag {
private String key;
private String value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
public static class Snapshot {
private String sourceDiskId;
private String progress;
private Boolean available;
private Integer instantAccessRetentionDays;
private String snapshotId;
private Boolean instantAccess;
private String sourceDiskType;
private List tags1;
public String getSourceDiskId() {
return this.sourceDiskId;
}
public void setSourceDiskId(String sourceDiskId) {
this.sourceDiskId = sourceDiskId;
}
public String getProgress() {
return this.progress;
}
public void setProgress(String progress) {
this.progress = progress;
}
public Boolean getAvailable() {
return this.available;
}
public void setAvailable(Boolean available) {
this.available = available;
}
public Integer getInstantAccessRetentionDays() {
return this.instantAccessRetentionDays;
}
public void setInstantAccessRetentionDays(Integer instantAccessRetentionDays) {
this.instantAccessRetentionDays = instantAccessRetentionDays;
}
public String getSnapshotId() {
return this.snapshotId;
}
public void setSnapshotId(String snapshotId) {
this.snapshotId = snapshotId;
}
public Boolean getInstantAccess() {
return this.instantAccess;
}
public void setInstantAccess(Boolean instantAccess) {
this.instantAccess = instantAccess;
}
public String getSourceDiskType() {
return this.sourceDiskType;
}
public void setSourceDiskType(String sourceDiskType) {
this.sourceDiskType = sourceDiskType;
}
public List getTags1() {
return this.tags1;
}
public void setTags1(List tags1) {
this.tags1 = tags1;
}
public static class Tag2 {
private String key;
private String value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
}
}
@Override
public DescribeSnapshotGroupsResponse getInstance(UnmarshallerContext context) {
return DescribeSnapshotGroupsResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy