
org.openstack4j.api.tacker.VnfdService Maven / Gradle / Ivy
The newest version!
package org.openstack4j.api.tacker;
import java.util.List;
import java.util.Map;
import org.openstack4j.common.RestService;
import org.openstack4j.model.common.ActionResponse;
import org.openstack4j.model.tacker.Vnfd;
/**
* Tacker - OpenStack NFV Orchestration
*
* Tacker is an official OpenStack project building a Generic VNF Manager (VNFM) and a NFV Orchestrator (NFVO) to deploy and operate
* Network Services and Virtual Network Functions (VNFs) on an NFV infrastructure platform like OpenStack.
* It is based on ETSI MANO Architectural Framework and provides a functional stack to Orchestrate Network Services end-to-end using VNFs.
*
* VNFD Stands for Virtual Network Functions Descriptor. This is the VNF Catalog Management (TOSCA-YAML Template) API Service..
*
*
* NFV Catalog:
*
* - VNF Descriptors.
* - Network Services Decriptors.
* - VNF Forwarding Graph Descriptors.
*
*
*
* @see Official Tacker Documentation
* @see Official GitHub Tacker Reference
*
* @author Vishvesh Deshmukh
* @date Aug 11, 2016
*/
public interface VnfdService extends RestService {
/**
* List vnfs - Lists instantiated vnfs in VNF Manager
*
* @return list of all Vnfd(s)
*/
List extends Vnfd> list();
/**
* List vnfs - Lists instantiated vnfs in VNF Manager filtered by parameters.
*
* @param filteringParams map (name, value) of filtering parameters
* @return filtered list of Vnfd(s)
*/
List extends Vnfd> list(Map filteringParams);
/**
* Show vnfd - Show information for a specified vnfdId.
*
* @param vnfdId the Vnfd identifier
* @return the Vnfd or null if not found
*/
Vnfd get(String vnfdId);
/**
* Delete vnfd - Deletes a specified vnfdId from the VNF catalog.
* @param vnfdId the Vnfd identifier
* @return the action response
*/
ActionResponse delete(String vnfdId);
/**
* Create vnfd - Create a vnfd entry based on the vnfd template.
* @param vnfd
* @return Vnfd
*/
Vnfd create(Vnfd vnfd);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy