Merge "Adapt A1 controller to latest A1 spec"
[nonrtric.git] / sdnc-a1-controller / northbound / nonrt-ric-api / model / src / main / yang / NONRT-RIC-API.yang
index 834d12f..40005d2 100644 (file)
@@ -1,3 +1,22 @@
+//-\r
+// ============LICENSE_START=======================================================\r
+//  Copyright (C) 2019 Nordix Foundation.\r
+// ================================================================================\r
+// Licensed under the Apache License, Version 2.0 (the "License");\r
+// you may not use this file except in compliance with the License.\r
+// You may obtain a copy of the License at\r
+//\r
+//      http://www.apache.org/licenses/LICENSE-2.0\r
+//\r
+// Unless required by applicable law or agreed to in writing, software\r
+// distributed under the License is distributed on an "AS IS" BASIS,\r
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+// See the License for the specific language governing permissions and\r
+// limitations under the License.\r
+//\r
+// SPDX-License-Identifier: Apache-2.0\r
+// ============LICENSE_END=========================================================\r
+//\r
 module A1-ADAPTER-API {\r
 \r
     namespace "org:onap:sdnc:northbound:a1-adapter";\r
@@ -8,84 +27,38 @@ module A1-ADAPTER-API {
 \r
     import ietf-yang-types { prefix yang; }\r
 \r
-    revision "2019-10-02" {\r
+    revision "2020-01-22" {\r
         description\r
         "A1 adapter";\r
     }\r
 \r
-    ///Flattend interface using RPC\r
-\r
-    //Get an array of near-rt-ric IDs,\r
-    //Each item in the returned array will be regarded as one near-rt-ric-id.\r
-    rpc getNearRT-RICs {\r
-        output {\r
-            leaf-list near-rt-ric-id-list {\r
-                type string;\r
-            }\r
-            leaf code {\r
-                type string;\r
-            }\r
-        }\r
-    }\r
-\r
-    //Get health status for a Near-RT-RIC. true - health ok, false - health is not ok.\r
-    rpc getHealthCheck {\r
-         input {\r
-            leaf near-rt-ric-id {\r
-                type string;\r
-            }\r
-        }\r
-\r
-        output {\r
-            leaf health-status {\r
-                type boolean;\r
-            }\r
-            leaf code {\r
-                type string;\r
-            }\r
-        }\r
-    }\r
-\r
     //Get an array of integer policy type ids\r
     //Each item in the returned array will be regarded as one policy-type-id.\r
-    rpc getPolicyTypes {\r
+    rpc getPolicyTypeIdentities {\r
         input {\r
-            leaf near-rt-ric-id {\r
+            leaf near-rt-ric-url {\r
                 type string;\r
             }\r
         }\r
 \r
         output {\r
             leaf-list policy-type-id-list {\r
-                type uint32;\r
-            }\r
-            leaf code {\r
                 type string;\r
             }\r
         }\r
     }\r
 \r
-    //Create a policy type\r
-    rpc createPolicyType {\r
+    //Get an array of integer policy ids\r
+    //Each item in the returned array will be regarded as one policy-id.\r
+    rpc getPolicyIdentities {\r
         input {\r
-            leaf near-rt-ric-id {\r
-                type string;\r
-            }\r
-            leaf policy-type-id {\r
-                type uint32;\r
-            }\r
-            leaf description {\r
-                type string;\r
-            }\r
-            leaf name {\r
-                type string;\r
-            }\r
-            leaf policy-type {\r
+            leaf near-rt-ric-url {\r
                 type string;\r
             }\r
         }\r
-       output {\r
-            leaf code {\r
+\r
+        output {\r
+            leaf-list policy-id-list {\r
                 type string;\r
             }\r
         }\r
@@ -94,152 +67,50 @@ module A1-ADAPTER-API {
     //Get a policy type\r
     rpc getPolicyType {\r
         input {\r
-            leaf near-rt-ric-id {\r
+            leaf near-rt-ric-url {\r
                 type string;\r
             }\r
             leaf policy-type-id {\r
-                type uint32;\r
-            }\r
-        }\r
-        output {\r
-            leaf description {\r
-                type string;\r
-            }\r
-            leaf name {\r
-                type string;\r
-            }\r
-            leaf policy-type {\r
-                type string;\r
-            }\r
-            leaf code {\r
                 type string;\r
             }\r
         }\r
-    }\r
-\r
-    //Delete a policy type\r
-    rpc deletePolicyType {\r
-        input {\r
-            leaf near-rt-ric-id {\r
-                type string;\r
-            }\r
-            leaf policy-type-id {\r
-                type uint32;\r
-            }\r
-        }\r
         output {\r
-            leaf code {\r
-                type string;\r
-            }\r
-        }\r
-    }\r
-\r
-    //Get an array of string policy instance ids\r
-    //Each item in the returned array will be regarded as one policy-instance-id.\r
-    rpc getPolicyInstances {\r
-        input {\r
-            leaf near-rt-ric-id {\r
-                type string;\r
-            }\r
-            leaf policy-type-id {\r
-                type uint32;\r
-            }\r
-        }\r
-\r
-        output {\r
-            leaf-list policy-instance-id-list {\r
-                type string;\r
-            }\r
-            leaf code {\r
+            leaf policy-type {\r
                 type string;\r
             }\r
         }\r
     }\r
 \r
-    //Create a policy instance\r
-    rpc createPolicyInstance {\r
+    //Create a policy\r
+    rpc putPolicy {\r
         input {\r
-            leaf near-rt-ric-id {\r
+            leaf near-rt-ric-url {\r
                 type string;\r
             }\r
-            leaf policy-type-id {\r
-                type uint32;\r
-            }\r
-            leaf policy-instance-id {\r
-                type string;\r
-            }\r
-            leaf policy-instance {\r
-                type string;\r
-            }\r
-        }\r
-        output {\r
-            leaf code {\r
-                type string;\r
-            }\r
-        }\r
-    }\r
-\r
-    ///Get a policy instance\r
-    rpc getPolicyInstance {\r
-        input {\r
-            leaf near-rt-ric-id {\r
+            leaf policy-id {\r
                 type string;\r
             }\r
             leaf policy-type-id {\r
-                type uint32;\r
-            }\r
-            leaf policy-instance-id {\r
-                type string;\r
-            }\r
-        }\r
-        output {\r
-            leaf policy-instance {\r
                 type string;\r
             }\r
-            leaf code {\r
-                type string;\r
-            }\r
-        }\r
-    }\r
-\r
-    //Delete a policy instance\r
-    rpc deletePolicyInstance {\r
-        input {\r
-            leaf near-rt-ric-id {\r
-                type string;\r
-            }\r
-            leaf policy-type-id {\r
-                type uint32;\r
-            }\r
-            leaf policy-instance-id {\r
+            leaf policy {\r
                 type string;\r
             }\r
         }\r
         output {\r
-            leaf code {\r
+            leaf returned-policy {\r
                 type string;\r
             }\r
         }\r
     }\r
 \r
-    //Get the status for a policy instance\r
-    rpc getStatus {\r
+    //Delete a policy\r
+    rpc deletePolicy {\r
         input {\r
-            leaf near-rt-ric-id {\r
-                type string;\r
-            }\r
-            leaf policy-type-id {\r
-                type uint32;\r
-            }\r
-            leaf policy-instance-id {\r
-                type string;\r
-            }\r
-        }\r
-        output {\r
-            leaf status {\r
+            leaf near-rt-ric-url {\r
                 type string;\r
             }\r
-            leaf code {\r
+            leaf policy-id {\r
                 type string;\r
             }\r
         }\r