add VNF,VL,PNF task
[vfc/nfvo/lcm.git] / lcm / ns_pnfs / __init__.py
index 342c2a8..2c3379b 100644 (file)
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
+
+from lcm.workflows.graphflow.task.lcm_sync_rest_task import LcmSyncRestTask
+
+
+class CreatePnf(LcmSyncRestTask):
+    def __init__(self, *args):
+        super(CreatePnf, self).__init__(*args)
+        self.url = "/api/nslcm/v1/pnfs"
+        self.method = self.POST
+        self.timeout = 10
+
+
+class DeletePnf(LcmSyncRestTask):
+    def __init__(self, *args):
+        super(DeletePnf, self).__init__(*args)
+        self.url = "/api/nslcm/v1/pnfs/%s"
+        self.method = self.DELETE
+        self.timeout = 10