Package org.openstack4j.model.network
Interface NetFloatingIP
-
- All Superinterfaces:
Buildable<NetFloatingIPBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
NeutronFloatingIP
public interface NetFloatingIP extends ModelEntity, Buildable<NetFloatingIPBuilder>
The Interface NetFloatingIP.- Author:
- nanderson
-
-
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 DategetCreatedAt()Time the IP was created.StringgetDescription()Get text description of the resource;StringgetFixedIpAddress()Gets the fixed ip address.StringgetFloatingIpAddress()Gets the floating ip address.StringgetFloatingNetworkId()Gets the floating network id.StringgetId()Gets the id.StringgetPortId()Gets the port id.StringgetProjectId()Gets the project id.StringgetQosPolicyId()ID of the QoS policy.IntegergetRevisionNumber()Revision number of a resource.StringgetRouterId()Gets the router id.StringgetStatus()Gets the floating ip statusList<String>getTags()List of tags associated with the IP address.StringgetTenantId()Gets the tenant id.DategetUpdatedAt()Time the IP was last updated.
-
-
-
Method Detail
-
getId
String getId()
Gets the id.- Returns:
- the id
-
getRouterId
String getRouterId()
Gets the router id.- Returns:
- the router id
-
getTenantId
String getTenantId()
Gets the tenant id.- Returns:
- the tenant id
-
getProjectId
String getProjectId()
Gets the project id.
-
getFloatingNetworkId
String getFloatingNetworkId()
Gets the floating network id.- Returns:
- the floating network id
-
getFloatingIpAddress
String getFloatingIpAddress()
Gets the floating ip address.- Returns:
- the floating ip address
-
getFixedIpAddress
String getFixedIpAddress()
Gets the fixed ip address.- Returns:
- the fixed ip address
-
getPortId
String getPortId()
Gets the port id.- Returns:
- the port id
-
getQosPolicyId
String getQosPolicyId()
ID of the QoS policy.
-
getStatus
String getStatus()
Gets the floating ip status- Returns:
- the floating ip status
-
getDescription
String getDescription()
Get text description of the resource;
-
getCreatedAt
Date getCreatedAt()
Time the IP was created.
-
getUpdatedAt
Date getUpdatedAt()
Time the IP was last updated.
-
getRevisionNumber
Integer getRevisionNumber()
Revision number of a resource.
-
-