Package org.openstack4j.model.manila
Interface ShareManage
-
- All Superinterfaces:
Buildable<ShareManageBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
ManilaShareManage
public interface ShareManage extends ModelEntity, Buildable<ShareManageBuilder>
Object to configure Shared File Systems to manage a share.- Author:
- Daniel Gonzalez Nothnagel
-
-
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 StringgetDescription()Map<String,String>getDriverOptions()StringgetExportPath()StringgetName()Share.ProtocolgetProtocol()StringgetServiceHost()StringgetShareType()
-
-
-
Method Detail
-
getProtocol
Share.Protocol getProtocol()
- Returns:
- the Shared File Systems protocol of the share to manage
-
getName
String getName()
- Returns:
- the share name
-
getShareType
String getShareType()
- Returns:
- the share type name
-
getDriverOptions
Map<String,String> getDriverOptions()
- Returns:
- a set of one or more key and value pairs, as a dictionary of strings, that describe driver options
-
getExportPath
String getExportPath()
- Returns:
- the share export path in the format appropriate for the protocol
-
getServiceHost
String getServiceHost()
- Returns:
- the manage-share service host in this format:
host@backend#POOL
-
getDescription
String getDescription()
- Returns:
- the share description
-
-