summaryrefslogtreecommitdiffstats
path: root/asdcApi/model/src/main/yang/asdc-api-common.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-common.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-common.yang')
-rwxr-xr-xasdcApi/model/src/main/yang/asdc-api-common.yang53
1 files changed, 0 insertions, 53 deletions
diff --git a/asdcApi/model/src/main/yang/asdc-api-common.yang b/asdcApi/model/src/main/yang/asdc-api-common.yang
deleted file mode 100755
index 126368d4..00000000
--- a/asdcApi/model/src/main/yang/asdc-api-common.yang
+++ /dev/null
@@ -1,53 +0,0 @@
-
-module asdc-api-common {
- yang-version "1";
-
- // Use same namespace defined for file upload in 15.12
- namespace "org:openecomp:sdnc:asdcapi:common";
-
- prefix asdcapi;
-
- organization
- "OpenECOMP";
-
- contact
- "Dan Timoney";
-
- description
- "ASDC/SDN-C API common data";
-
- revision 2017-02-01 {
- description "Initial release";
- }
-
-
-
- // Groupings
-
- grouping artifact-fields {
- leaf artifact-name {
- type string;
- description "Name of artifact";
- }
-
- leaf artifact-version {
- type string;
- description "Version of artifact";
- }
- }
-
- grouping asdc-api-response {
- leaf asdc-api-response-code {
- type string;
- description "Code indicating success/failure";
- }
-
- leaf asdc-api-response-text {
- type string;
- description "Text indicating reason for failure";
- }
- }
-
-
-
-}