Rename artifacts in A1 controller
[nonrtric.git] / sdnc-a1-controller / northbound / nonrt-ric-api / model / src / main / yang / NONRT-RIC-API.yang
index 986e201..34c0a72 100644 (file)
 //\r
 module A1-ADAPTER-API {\r
 \r
-    namespace "org:onap:sdnc:northbound:a1-adapter";\r
+    namespace "org:o_ran_sc:nonrtric:sdnc_a1:northbound:a1-adapter";\r
 \r
     prefix a1-adapter-api;\r
 \r
-    import ietf-inet-types { prefix "inet"; revision-date "2013-07-15"; }\r
-\r
-    import ietf-yang-types { prefix yang; }\r
-\r
-    revision "2019-10-02" {\r
-        description\r
-        "A1 adapter";\r
+    import ietf-inet-types {\r
+        prefix "inet";\r
+        revision-date "2013-07-15";\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
+    import ietf-yang-types {\r
+        prefix yang;\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
-        input {\r
-            leaf near-rt-ric-id {\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
+    revision "2020-01-22" {\r
+        description\r
+          "A1 adapter";\r
     }\r
 \r
-    //Create a policy type\r
-    rpc createPolicyType {\r
+    rpc putA1Policy {\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
-                type string;\r
-            }\r
-        }\r
-       output {\r
-            leaf code {\r
-                type string;\r
+            leaf near-rt-ric-url {\r
+                type inet:uri;\r
             }\r
-        }\r
-    }\r
-\r
-    //Get a policy type\r
-    rpc getPolicyType {\r
-        input {\r
-            leaf near-rt-ric-id {\r
+            leaf body {\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
+            leaf body {\r
                 type string;\r
             }\r
-            leaf code {\r
-                type string;\r
+            leaf http-status {\r
+                type int32;\r
             }\r
         }\r
     }\r
 \r
-    //Delete a policy type\r
-    rpc deletePolicyType {\r
+    rpc getA1Policy {\r
         input {\r
-            leaf near-rt-ric-id {\r
-                type string;\r
-            }\r
-            leaf policy-type-id {\r
-                type uint32;\r
+            leaf near-rt-ric-url {\r
+                type inet:uri;\r
             }\r
         }\r
         output {\r
-            leaf code {\r
+            leaf body {\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
-                type string;\r
+            leaf http-status {\r
+                type int32;\r
             }\r
         }\r
     }\r
 \r
-    //Create a policy instance\r
-    rpc createPolicyInstance {\r
+    rpc getA1PolicyStatus {\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
-            leaf policy-instance {\r
-                type string;\r
+            leaf near-rt-ric-url {\r
+                type inet:uri;\r
             }\r
         }\r
         output {\r
-            leaf code {\r
+            leaf body {\r
                 type string;\r
             }\r
-        }\r
-    }\r
-\r
-    ///Get a policy instance\r
-    rpc getPolicyInstance {\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 policy-instance {\r
-                type string;\r
-            }\r
-            leaf code {\r
-                type string;\r
+            leaf http-status {\r
+                type int32;\r
             }\r
         }\r
     }\r
 \r
-    //Delete a policy instance\r
-    rpc deletePolicyInstance {\r
+    rpc getA1PolicyType {\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
+            leaf near-rt-ric-url {\r
+                type inet:uri;\r
             }\r
         }\r
         output {\r
-            leaf code {\r
+            leaf body {\r
                 type string;\r
             }\r
+            leaf http-status {\r
+                type int32;\r
+            }\r
         }\r
     }\r
 \r
-    //Get the status for a policy instance\r
-    rpc getStatus {\r
+    rpc deleteA1Policy {\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
+            leaf near-rt-ric-url {\r
+                type inet:uri;\r
             }\r
         }\r
         output {\r
-            leaf status {\r
+            leaf body {\r
                 type string;\r
             }\r
-            leaf code {\r
-                type string;\r
+            leaf http-status {\r
+                type int32;\r
             }\r
         }\r
     }\r