aboutsummaryrefslogtreecommitdiffstats
path: root/asdcApi/model/src/main/yang/ASDC-API.yang
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2017-08-30 10:28:08 -0400
committerDan Timoney <dtimoney@att.com>2017-08-30 10:29:57 -0400
commit0bce413218560b0f5df834581f22841eb0bc7074 (patch)
treed8a3f2cb22dcc33fb353714096509f584ffb1463 /asdcApi/model/src/main/yang/ASDC-API.yang
parent356b29817974cf09ed15088fef172e033e940047 (diff)
Prune migrated components from sdnc/northbound
Prune components that were migrated from sdnc/northbound to ccsdk by removing code and replacing with a README.md that redirects the reader to the appropriate CCSDK repo Change-Id: I317b1d0093a1dd4647feaf6b852826a2230f4879 Issue-ID: SDNC-59 Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'asdcApi/model/src/main/yang/ASDC-API.yang')
-rwxr-xr-xasdcApi/model/src/main/yang/ASDC-API.yang63
1 files changed, 0 insertions, 63 deletions
diff --git a/asdcApi/model/src/main/yang/ASDC-API.yang b/asdcApi/model/src/main/yang/ASDC-API.yang
deleted file mode 100755
index 401ec7da..00000000
--- a/asdcApi/model/src/main/yang/ASDC-API.yang
+++ /dev/null
@@ -1,63 +0,0 @@
-
-module ASDC-API {
- yang-version "1";
-
- namespace "org:openecomp:sdnc";
-
- prefix asdc-api;
-
- import asdc-api-common { prefix asdc-api-common; }
-
-
- import asdc-license-model { prefix asdc-license-model; }
-
- import ietf-inet-types {
- prefix inet;
- revision-date "2010-09-24";
- }
-
- organization
- "OpenECOMP";
-
- contact
- "Dan Timoney";
-
- description
- "SDC Interface";
-
- revision 2017-02-01 {
- description "database definitions";
- }
-
- // Containers
- container artifacts {
- list artifact {
- key "artifact-name artifact-version";
-
- uses asdc-api-common:artifact-fields;
- }
- }
-
-
-
- container vf-license-model-versions {
- list vf-license-model-version {
- key artifact-version;
- uses asdc-api-common:artifact-fields;
- uses asdc-license-model:vf-license-model-grouping;
- }
- }
-
-
- // RPCs
-
- rpc vf-license-model-update {
- input {
- uses asdc-api-common:artifact-fields;
- uses asdc-license-model:vf-license-model-grouping;
- }
- output {
- uses asdc-api-common:asdc-api-response;
- }
- }
-}