Add Distributed Cloud Manager 36/101936/19
authorenyinna1234 <enyinna.ochulor@intel.com>
Fri, 14 Feb 2020 16:41:49 +0000 (08:41 -0800)
committerenyinna1234 <enyinna.ochulor@intel.com>
Fri, 10 Apr 2020 15:15:33 +0000 (08:15 -0700)
commit10b17da590fc43622c6080815f65fbbb2721b640
treeb9a8f456f97fd8ac3883bacf7835a2baaceed9a2
parent335c7cca38eb804c2977e4dd9af9efa0ea7ef82b
Add Distributed Cloud Manager

This handles RESTful API CRUD operations for logical clouds, CLuster,
User Permissions, Quota, and Key Value pairs.
See: https://wiki.onap.org/x/tAiVB

Issue-ID: MULTICLOUD-996
Signed-off-by: Enyinna Ochulor <enyinna.ochulor@intel.com>
Change-Id: I654a304cd682f762c02cfd92b4483d1edea63fca
22 files changed:
src/Makefile
src/dcm/Makefile [new file with mode: 0644]
src/dcm/api/api.go [new file with mode: 0644]
src/dcm/api/clusterHandler.go [new file with mode: 0644]
src/dcm/api/keyValueHandler.go [new file with mode: 0644]
src/dcm/api/logicalCloudHandler.go [new file with mode: 0644]
src/dcm/api/quotaHandler.go [new file with mode: 0644]
src/dcm/api/userPermissionsHandler.go [new file with mode: 0644]
src/dcm/cmd/main.go [new file with mode: 0644]
src/dcm/go.mod [new file with mode: 0644]
src/dcm/go.sum [new file with mode: 0644]
src/dcm/pkg/module/cluster.go [new file with mode: 0644]
src/dcm/pkg/module/cluster_test.go [new file with mode: 0644]
src/dcm/pkg/module/keyvalue.go [new file with mode: 0644]
src/dcm/pkg/module/keyvalue_test.go [new file with mode: 0644]
src/dcm/pkg/module/logicalcloud.go [new file with mode: 0644]
src/dcm/pkg/module/logicalcloud_test.go [new file with mode: 0644]
src/dcm/pkg/module/module.go [new file with mode: 0644]
src/dcm/pkg/module/quota.go [new file with mode: 0644]
src/dcm/pkg/module/quota_test.go [new file with mode: 0644]
src/dcm/pkg/module/userpermissions.go [new file with mode: 0644]
src/dcm/pkg/module/userpermissions_test.go [new file with mode: 0644]