public interface PcepSessionState
extends org.opendaylight.yangtools.yang.binding.DataObject
This class represents the following YANG schema fragment defined in module pcep-session-stats
grouping pcep-session-state {
container messages {
leaf received-msg-count {
type uint32;
}
leaf sent-msg-count {
type uint32;
}
leaf last-sent-msg-timestamp {
type uint32;
}
leaf unknown-msg-received {
type uint16;
}
container error-messages {
leaf received-error-msg-count {
type uint32;
}
leaf sent-error-msg-count {
type uint32;
}
container last-received-error {
leaf error-type {
type error-type;
}
leaf error-value {
type error-value;
}
uses error;
}
container last-sent-error {
leaf error-type {
type error-type;
}
leaf error-value {
type error-value;
}
uses error;
}
}
}
container local-pref {
leaf keepalive {
type keepalive;
}
leaf deadtimer {
type deadtimer;
}
leaf ip-address {
type ip-address;
}
leaf session-id {
type session-id;
}
uses preferences;
}
container peer-pref {
leaf keepalive {
type keepalive;
}
leaf deadtimer {
type deadtimer;
}
leaf ip-address {
type ip-address;
}
leaf session-id {
type session-id;
}
uses preferences;
}
}
The schema path to identify an instance is
pcep-session-stats/pcep-session-state| Modifier and Type | Field and Description |
|---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
| Modifier and Type | Method and Description |
|---|---|
LocalPref |
getLocalPref()
The local (PCE) preferences.
|
Messages |
getMessages()
The statistics of PCEP received/sent messages from the PCE point of view.
|
PeerPref |
getPeerPref()
The remote peer (PCC) preferences.
|
Messages getMessages()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.pcep.stats.rev141006.pcep.session.state.Messages messages, or null if not presentLocalPref getLocalPref()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.pcep.stats.rev141006.pcep.session.state.LocalPref localPref, or null if not presentPeerPref getPeerPref()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.pcep.stats.rev141006.pcep.session.state.PeerPref peerPref, or null if not presentCopyright © 2018 OpenDaylight. All rights reserved.