Upgrade to Service Path 1.7
[transportpce.git] / api / src / main / yang / service_path / transportpce-renderer-device@2017-02-28.yang
diff --git a/api/src/main/yang/service_path/transportpce-renderer-device@2017-02-28.yang b/api/src/main/yang/service_path/transportpce-renderer-device@2017-02-28.yang
deleted file mode 100644 (file)
index 8570cea..0000000
+++ /dev/null
@@ -1,90 +0,0 @@
-module transportpce-device-renderer {
-  namespace "http://org/opendaylight/transportpce/renderer/device";
-  prefix "org-opendaylight-transportpce-renderer-device";
-
-  import transportpce-common-types {
-      prefix org-transportpce-common-types;
-      revision-date 2017-09-07;
-  }
-
-  organization
-       "transportPCE";
-     contact
-       "transportPCE committers - ODL";
-     description
-       "YANG definitions of RPCs supported by renderer.
-        Copyright (c) 2017 AT&T and others.  All rights reserved.
-        authors: Dhruv Bhardwaj ( db929a@att.com )
-                 Shweta Vachhani ( sv111y@att.com )";
-
-  revision "2017-02-28" {
-    description "Initial revision of renderer model version 1.5";
-  }
-
-  rpc service-path {
-    input {
-      leaf modulation-format {
-          type string;
-      }
-      leaf operation {
-        type enumeration {
-          enum "create" {
-            value 1;
-          }
-          enum "delete" {
-            value 2;
-          }
-        }
-      }
-      uses org-transportpce-common-types:olm-renderer-input;
-    }
-    output{
-      leaf success {
-        type boolean;
-      }
-      leaf result {
-        type string;
-      }
-      uses org-transportpce-common-types:node-interfaces;
-    }
-  }
-
-  rpc renderer-rollback {
-    input {
-      uses org-transportpce-common-types:node-interfaces;
-    }
-    output {
-      leaf success {
-        type boolean;
-      }
-      list failed-to-rollback {
-        key node-id;
-        leaf node-id {
-          type string;
-        }
-        leaf-list interface {
-          type string;
-        }
-      }
-    }
-  }
-
-  rpc create-ots-oms {
-    input {
-      leaf node-id {
-        type string;
-      }
-      leaf logical-connection-point {
-        type string;
-      }
-    }
-    output {
-      leaf success {
-        type boolean;
-      }
-      leaf result {
-        type string;
-      }
-    }
-  }
-}