aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/TestVNF/netconftemplates/netconftemplates/send-models-schema.yang
blob: cb13b6136f4e93878706ab453044e66c71420a7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="<MID>">
  <data xmlns="http://example.net/send-models-method/1.0">
	rpc send-models {
	  description
	    "The &lt;send-models&gt; operation takes in a content in JSON format and sends the entire content to the specified target address.";
		
		container config {
             leaf target-name {
                 type string;
                 description "name of the target to which all the events are to be sent";
             }
         }
	      leaf content {
	        type string;
	        description "JSON string to be sent, which contains all the events to be sent";
	      }
	}
	</data>
</rpc-reply>