Package org.openstack4j.model.tacker
Interface Vnfd
-
- All Superinterfaces:
Buildable<VnfdBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
TackerVnfd
public interface Vnfd extends ModelEntity, Buildable<VnfdBuilder>
- 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 VnfdAttributesgetAttributes()StringgetDescription()StringgetId()StringgetInfrastructureDriver()StringgetManagementDriver()StringgetName()List<VnfdServiceTypes>getServiceTypes()StringgetTenantId()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- id : Unique identifier for the Vnfd.
-
getName
String getName()
- Returns:
- name : Human readable name for the Vnfd (255 characters limit). Does not have to be unique.
-
getTenantId
String getTenantId()
- Returns:
- tenantId : Owner of the Vnfd. Only an administrative user can specify a tenant ID other than its own.
-
getDescription
String getDescription()
- Returns:
- description : Human readable description for the Vnfd (1024 characters limit).
-
getManagementDriver
String getManagementDriver()
- Returns:
- managementDriver
-
getInfrastructureDriver
String getInfrastructureDriver()
- Returns:
- infrastructureDriver
-
getAttributes
VnfdAttributes getAttributes()
- Returns:
- attributes
-
getServiceTypes
List<VnfdServiceTypes> getServiceTypes()
- Returns:
- serviceTypes
-
-