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

org.openstack4j.model.manila.ShareSnapshotCreate Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.model.manila;

import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.manila.builder.ShareSnapshotCreateBuilder;

/**
 * Object used to create new share snapshots
 *
 * @author Daniel Gonzalez Nothnagel
 */
public interface ShareSnapshotCreate extends ModelEntity, Buildable {
    /**
     * @return the UUID of the share from which to create a snapshot
     */
    String getShareId();

    /**
     * @return whether snapshot creation is enabled when a share is busy
     */
    Boolean getForce();

    /**
     * @return the snapshot name
     */
    String getName();

    /**
     * @return the snapshot name
     */
    String getDisplayName();

    /**
     * @return the snapshot description
     */
    String getDescription();

    /**
     * @return the snapshot description
     */
    String getDisplayDescription();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy