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

org.openstack4j.model.storage.block.builder.VolumeSnapshotBuilder Maven / Gradle / Ivy

package org.openstack4j.model.storage.block.builder;

import java.util.Map;
import org.openstack4j.common.Buildable.Builder;
import org.openstack4j.model.storage.block.VolumeSnapshot;

/**
 * A Builder which creates a Volume Snapshot.
 *
 * NOTE: The only REQUIRED field when creating a snapshot is
 * {@link #volume(String)} . All other fields are optional
 *
 * @author Jeremy Unruh
 */
public interface VolumeSnapshotBuilder extends Builder {

	/**
	 * Name of the snapshot
	 *
	 * @param name the name
	 * @return the volume snapshot builder
	 */
	VolumeSnapshotBuilder name(String name);

	/**
	 * Description of the snapshot
	 *
	 * @param description the description
	 * @return the volume snapshot builder
	 */
	VolumeSnapshotBuilder description(String description);

	/**
	 * The ID of of the existing Volume (REQUIRED)
	 *
	 * @param volumeId the volume id
	 * @return the volume snapshot builder
	 */
	VolumeSnapshotBuilder volume(String volumeId);

	/**
	 * One or more metadata key and value pairs to associate with the volume snapshot. Optional
	 *
	 * @param metadata metadata to set
	 * @return VolumeSnapshotBuilder
	 */
	VolumeSnapshotBuilder metadata(Map metadata);

	/**
	 * [True/False] Indicate whether to snapshot, even if the volume is attached.
	 *
	 * @param force true to force an attached volume to be a snapshot
	 * @return the volume snapshot builder
	 */
	VolumeSnapshotBuilder force(boolean force);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy