All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.huawei.openstack4j.openstack.storage.block.domain.SnapshotDetail Maven / Gradle / Ivy

/*******************************************************************************
 * 	Copyright 2019 Huawei Technologies Co., Ltd.                                          
 * 	                                                                                 
 * 	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.huawei.openstack4j.openstack.storage.block.domain;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.ToString;

import java.util.List;
import java.util.Map;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
import com.huawei.openstack4j.model.ModelEntity;
import com.huawei.openstack4j.openstack.common.ListResult;

/**
 * Volume snapshot detail model
 */
@Getter
@ToString
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonRootName("snapshot")
public class SnapshotDetail implements ModelEntity {

	private static final long serialVersionUID = -8325002507169341310L;

	/**
	 * The ID of the EVS snapshot.
	 */
	private String id;

	/**
	 * The snapshot status.
	 * 
	 * @see https://support.huaweicloud.com/en-us/api-evs/en-us_topic_0051803386.html
	 */
	private String status;

	/**
	 * The name of the EVS snapshot.
	 */
	private String name;

	/**
	 * The description of the EVS snapshot.
	 */
	private String description;

	/**
	 * The time when the EVS snapshot was created.
	 */
	@JsonProperty("created_at")
	private String createdAt;

	/**
	 * The time when the EVS snapshot was updated.
	 */
	@JsonProperty("update_at")
	private String updateAt;

	/**
	 * The metadata of the EVS snapshot.
	 * 
	 * If metadata contains the __system__enableActive field, the snapshot is
	 * automatically created during the backup of a server.
	 */
	private Map metadata;

	/**
	 * The disk to which the snapshot belongs.
	 */
	@JsonProperty("volume_id")
	private String volumeId;

	/**
	 * The size of the EVS snapshot.
	 */
	private Integer size;

	/**
	 * The tenant ID.
	 */
	@JsonInclude(Include.NON_NULL)
	@JsonProperty("os-extended-snapshot-attributes:project_id")
	private String projectId;

	/**
	 * The snapshot creation progress.
	 */
	@JsonInclude(Include.NON_NULL)
	@JsonProperty("os-extended-snapshot-attributes:progress")
	private String progress;

	/**
	 * List of snapshot detail
	 * 
	 * @author bill
	 *
	 */
	@Getter
	@ToString
	@Builder
	@NoArgsConstructor
	@AllArgsConstructor
	public static class SnapshotDetails extends ListResult {

		private static final long serialVersionUID = 6377852399569111975L;

		@JsonProperty("snapshots_links")
		private List> snapshotsLinks;

		private List snapshots;

		@Override
		protected List value() {
			return snapshots;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy