aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/yang/openconfig/openconfig-platform-ext.yang
diff options
context:
space:
mode:
authorAndrej Kozemcak <andrej.kozemcak@pantheon.tech>2019-01-11 07:45:19 +0100
committerAndrej Kozemcak <andrej.kozemcak@pantheon.tech>2019-01-11 07:46:46 +0100
commit8a72578cec9ffe5bf815e38918fd82b190f8af38 (patch)
tree38fc04ef4dab6431861119e63f4559d5ad59bd10 /src/plugins/yang/openconfig/openconfig-platform-ext.yang
parentb70c4a3f70c08d93afb52ecb1bdd50a50feb1e1f (diff)
Remove not supported openconfig yang modules.
Change-Id: I721def08356e64918424fdb889f545b64daeea88 Signed-off-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
Diffstat (limited to 'src/plugins/yang/openconfig/openconfig-platform-ext.yang')
-rw-r--r--src/plugins/yang/openconfig/openconfig-platform-ext.yang72
1 files changed, 0 insertions, 72 deletions
diff --git a/src/plugins/yang/openconfig/openconfig-platform-ext.yang b/src/plugins/yang/openconfig/openconfig-platform-ext.yang
deleted file mode 100644
index f47293e..0000000
--- a/src/plugins/yang/openconfig/openconfig-platform-ext.yang
+++ /dev/null
@@ -1,72 +0,0 @@
-module openconfig-platform-ext {
-
- yang-version "1";
-
- // namespace
- namespace "http://openconfig.net/yang/platform/extension";
-
- prefix "oc-platform-ext";
-
- import openconfig-platform { prefix oc-platform; }
- import openconfig-extensions { prefix oc-ext; }
-
-
- // meta
- organization "OpenConfig working group";
-
- contact
- "OpenConfig working group
- www.openconfig.net";
-
- description
- "This module defines optional extensions to the OpenConfig
- platform model.";
-
- oc-ext:openconfig-version "0.1.0";
-
- revision "2018-01-18" {
- description
- "Initial revision";
- reference "0.1.0";
- }
-
-
- // identity statements
-
- // typedef statements
-
- // grouping statements
-
-
- grouping platform-component-ext-state {
- description
- "Operational state data for platform components";
-
- leaf entity-id {
- type uint32;
- description
- "A unique numeric identifier assigned by the system to the
- component. This identifier may be used to represent the
- corresponding SNMP Entity MIB identifier.";
- }
- }
-
-
- // data definition statements
-
- // augment statements
-
- augment "/oc-platform:components/oc-platform:component/" +
- "oc-platform:state" {
- description
- "Adding extension state data to components";
-
- uses platform-component-ext-state;
- }
-
- // rpc statements
-
- // notification statements
-
-}
-