Interface VolumeBackupCreate
-
- All Superinterfaces:
Buildable<VolumeBackupCreateBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
CinderVolumeBackupCreate
public interface VolumeBackupCreate extends ModelEntity, Buildable<VolumeBackupCreateBuilder>
Represents entity which is used for creating a volume backup- Author:
- Huang Yi
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetContainer()StringgetDescription()StringgetName()StringgetSnapshotId()StringgetVolumeId()booleanisForce()booleanisIncremental()
-
-
-
Method Detail
-
getName
String getName()
- Returns:
- the name of the Volume Transfer.
-
getDescription
String getDescription()
- Returns:
- the description of the volume backup
-
getVolumeId
String getVolumeId()
- Returns:
- The UUID of the volume.
-
getContainer
String getContainer()
- Returns:
- The container name or null.
-
isIncremental
boolean isIncremental()
- Returns:
- The backup mode. A valid value is true for incremental backup mode or false for full backup mode
-
isForce
boolean isForce()
- Returns:
- Force mode. True to do backup while a volume is attached. Default is false.
-
getSnapshotId
String getSnapshotId()
- Returns:
- Force mode. True to do backup while a volume is attached. Default is false.
-
-