summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager/provider/src/main/resources/preload.cache.schema/notifications@2008-07-14.yang
diff options
context:
space:
mode:
authorherbert <herbert.eiselt@highstreet-technologies.com>2019-12-14 00:06:42 +0100
committerherbert <herbert.eiselt@highstreet-technologies.com>2019-12-14 00:07:02 +0100
commitda4fd6169717cfa04d644d0af0d23dd089a6e373 (patch)
tree3c7a2c804b001349dc24852f7e488061a2f733f4 /sdnr/wt/devicemanager/provider/src/main/resources/preload.cache.schema/notifications@2008-07-14.yang
parent58f412ad18c1daf622e54ed36db6014f4e04f3f7 (diff)
remove old version
of devicemodel devicemanager oldux featureaggregator Issue-ID: SDNC-1004 Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com> Change-Id: I5337643181e2398e5a8097e4ee14fa4ac96d0d4c
Diffstat (limited to 'sdnr/wt/devicemanager/provider/src/main/resources/preload.cache.schema/notifications@2008-07-14.yang')
-rw-r--r--sdnr/wt/devicemanager/provider/src/main/resources/preload.cache.schema/notifications@2008-07-14.yang82
1 files changed, 0 insertions, 82 deletions
diff --git a/sdnr/wt/devicemanager/provider/src/main/resources/preload.cache.schema/notifications@2008-07-14.yang b/sdnr/wt/devicemanager/provider/src/main/resources/preload.cache.schema/notifications@2008-07-14.yang
deleted file mode 100644
index 1d0671166..000000000
--- a/sdnr/wt/devicemanager/provider/src/main/resources/preload.cache.schema/notifications@2008-07-14.yang
+++ /dev/null
@@ -1,82 +0,0 @@
-module notifications {
-
- namespace "urn:ietf:params:xml:ns:netconf:notification:1.0";
- prefix "ncEvent";
-
- import ietf-yang-types { prefix yang; revision-date "2013-07-15";}
-
- organization
- "IETF NETCONF WG";
-
- contact
- "netconf@ops.ietf.org";
-
- description
- "Conversion of the 'ncEvent' XSD in the
- NETCONF Notifications RFC.";
-
- reference
- "RFC 5277.";
-
- revision 2008-07-14 {
- description "RFC 5277 version.";
- }
-
- typedef streamNameType {
- description
- "The name of an event stream.";
- type string;
- }
-
- rpc create-subscription {
- description
- "The command to create a notification subscription. It
- takes as argument the name of the notification stream
- and filter. Both of those options limit the content of
- the subscription. In addition, there are two time-related
- parameters, startTime and stopTime, which can be used to
- select the time interval of interest to the notification
- replay feature.";
-
- input {
- leaf stream {
- description
- "An optional parameter that indicates which stream of events
- is of interest. If not present, then events in the default
- NETCONF stream will be sent.";
- type streamNameType;
- default "NETCONF";
- }
-
- anyxml filter {
- description
- "An optional parameter that indicates which subset of all
- possible events is of interest. The format of this
- parameter is the same as that of the filter parameter
- in the NETCONF protocol operations. If not present,
- all events not precluded by other parameters will
- be sent.";
- }
-
- leaf startTime {
- description
- "A parameter used to trigger the replay feature and
- indicates that the replay should start at the time
- specified. If start time is not present, this is not a
- replay subscription.";
- type yang:date-and-time;
- }
-
- leaf stopTime {
- // must ". >= ../startTime";
- description
- "An optional parameter used with the optional replay
- feature to indicate the newest notifications of
- interest. If stop time is not present, the notifications
- will continue until the subscription is terminated.
- Must be used with startTime.";
- type yang:date-and-time;
- }
- }
- }
-} \ No newline at end of file