Package org.openstack4j.model.tacker
Interface Vnf
-
- All Superinterfaces:
Buildable<VnfBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
TackerVnf
public interface Vnf extends ModelEntity, Buildable<VnfBuilder>
- Author:
- Vishvesh Deshmukh
-
-
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 VnfAttributesgetAttributes()StringgetDescription()StringgetErrorReason()StringgetId()StringgetInstanceId()StringgetManagementUrl()StringgetName()VnfPlacementAttributegetPlacementAttribute()TackerVnfStatusgetStatus()StringgetTenantId()StringgetVimId()StringgetVnfdId()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- id : Unique identifier for the Vnf.
-
getName
String getName()
- Returns:
- name : Human readable name for the Vnf (255 characters limit). Does not have to be unique.
-
getTenantId
String getTenantId()
- Returns:
- tenantId : Owner of the Vnf. Only an administrative user can specify a tenant ID other than its own.
-
getDescription
String getDescription()
- Returns:
- description : Human readable description for the Vnf (1024 characters limit).
-
getAttributes
VnfAttributes getAttributes()
- Returns:
- attributes
-
getManagementUrl
String getManagementUrl()
- Returns:
- managementUrl
-
getVnfdId
String getVnfdId()
- Returns:
- the vnfdId
-
getErrorReason
String getErrorReason()
- Returns:
- the errorReason
-
getVimId
String getVimId()
- Returns:
- the vimId
-
getInstanceId
String getInstanceId()
- Returns:
- the instanceId
-
getStatus
TackerVnfStatus getStatus()
- Returns:
- the status
-
getPlacementAttribute
VnfPlacementAttribute getPlacementAttribute()
- Returns:
- the placementAttribute
-
-