From 7d2d48d3d0b35de0acd03c6e8a1261efd736edc3 Mon Sep 17 00:00:00 2001 From: Kiran Kamineni Date: Wed, 31 Oct 2018 16:24:32 -0700 Subject: Add vnf definition APIs Adding APIs for POST, GET, LIST (implemented via GET) and DELETE commands on /v1/vnfd base for creating, getting, listing and deleting VNF Definitions. P2: Added unit tests for vnfdhandler.go P3: Add unit tests for serialize and deserialize P4: Integrating review comments P5: Added customizable mocking for vnfdhandler_test P6: Added customizablt mocking for vnfd_test Note that this will soon need to be updated once the db changes go through in patch 71090 Issue-ID: MULTICLOUD-393 Change-Id: Id509bed370ab3bdc572c6ead22324c1ee3dbf82d Signed-off-by: Kiran Kamineni Signed-off-by: Victor Morales --- src/k8splugin/go.mod | 1 + 1 file changed, 1 insertion(+) (limited to 'src/k8splugin/go.mod') diff --git a/src/k8splugin/go.mod b/src/k8splugin/go.mod index 3652afba..b4f4558b 100644 --- a/src/k8splugin/go.mod +++ b/src/k8splugin/go.mod @@ -13,6 +13,7 @@ require ( github.com/hashicorp/consul v1.2.2 github.com/hashicorp/go-cleanhttp v0.0.0-20171218145408-d5fe4b57a186 github.com/hashicorp/go-rootcerts v0.0.0-20160503143440-6bb64b370b90 + github.com/hashicorp/go-uuid v1.0.0 github.com/hashicorp/serf v0.8.1 github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c github.com/imdario/mergo v0.3.5 -- cgit 1.2.3-korg