Junos RPC YANG module for network-agent command(s)
Version: 2019-01-01
module junos-es-rpc-network-agent { yang-version 1; namespace "http://yang.juniper.net/junos-es/rpc/network-agent"; prefix network-agent; import junos-common-types { prefix jt; revision-date "2019-01-01"; } organization "Juniper Networks, Inc."; contact "yang-support@juniper.net"; description "Junos RPC YANG module for network-agent command(s)"; revision "2019-01-01" { description "Junos: 21.3R1.9"; } rpc get-telemetry-subscription-statistics { description "Show network agent sensor statistics"; input { leaf verbosity_level { type enumeration { enum "brief" { value 0; description "Display brief output (default)"; } enum "detail" { value 1; description "Display detailed output"; } } default "brief"; } leaf subscription-id { type union { type string { pattern "<.*>|$.*"; } type uint32 { range "1 .. 4294967295"; } } default "4294967295"; description "Subscription ID"; } leaf subscription-type { type enumeration { enum "juniper" { value 0; description "Juniper based subscription"; } enum "gnmi" { value 1; description "GNMI based subscription"; } enum "all" { value 2; description "All telemetry subscriptions"; } } default "all"; description "Subscription Type"; } leaf-list subscription-paths { type string; ordered-by user; description "Subscription paths for which statistics are to be displayed"; } } output { choice output_c { leaf output { type string; } anyxml subscription-statistics { } anyxml multi-routing-engine-results { } } // choice output_c } } // rpc get-telemetry-subscription-statistics } // module junos-es-rpc-network-agent
© 2023 YumaWorks, Inc. All rights reserved.