All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openstack4j.api.tacker.VnfService 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.Vnf;
import org.openstack4j.model.tacker.VnfUpdate;

/**
 * 

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.

* *

Vnf Stands for Virtual Network Functions. This is the VNF Management API Service which is used to Deploy VNFs..

* *

* VNFM: *

    *
  • Basic life-cycle of VNF (create/update/delete).
  • *
  • Enhanced platform-aware (EPA) placement of high-performance NFV workloads.
  • *
  • Health monitoring of deployed VNFs.
  • *
  • Auto Healing / Auto Scaling VNFs based on Policy.
  • *
  • Facilitate initial configuration of VNF.
  • *
*

* * @see Official Tacker Documentation * @see Official GitHub Tacker Reference * * @author Vishvesh Deshmukh * @date Aug 11, 2016 */ public interface VnfService extends RestService { /** * List vnfs - Lists instantiated vnfs in VNF Manager * * @return list of all Vnf(s) */ List list(); /** * List vnfs - Lists instantiated vnfs in VNF Manager filtered by parameters. * * @param filteringParams map (name, value) of filtering parameters * @return filtered list of Vnf(s) */ List list(Map filteringParams); /** * Show Vnf - Show information for a specified VnfId. * * @param VnfId the Vnf identifier * @return the Vnf or null if not found */ Vnf get(String vnfId); /** * Delete Vnf - Deletes a specified VnfId from the VNF catalog. * @param VnfId the Vnf identifier * @return the action response */ ActionResponse delete(String vnfId); /** * Create Vnf - Create a Vnf entry based on the Vnf template. * @param Vnf * @return Vnf */ Vnf create(Vnf vnf); /** * Update vnf - Update a vnf based on user config file or data. * @param vnfId the Vnf identifier * @param vnfUpdate VnfUpdate * @return Vnf */ Vnf update(String vnfId, VnfUpdate vnfUpdate); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy