public interface Networks extends ChildOf<IetfNetworkStateData>, Augmentable<Networks>
This class represents the following YANG schema fragment defined in module ietf-network-state
container networks { config false; list network { key network-id; container network-types { } leaf network-id { type nw:network-id; } list supporting-network { key network-ref; leaf network-ref { type leafref { path /nw-s:networks/nw-s:network/nw-s:network-id; require-instance false; } } } list node { key node-id; leaf node-id { type nw:node-id; } list supporting-node { key "network-ref node-ref"; leaf network-ref { type leafref { path ../../../nw-s:supporting-network/nw-s:network-ref; require-instance false; } } leaf node-ref { type leafref { path /nw-s:networks/nw-s:network/nw-s:node/nw-s:node-id; require-instance false; } } } } } }The schema path to identify an instance is ietf-network-state/networks
To create instances of this class use NetworksBuilder
.
NetworksBuilder
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable List<Network> |
getNetwork()
Describes a network.A network typically contains an inventory of
nodes,topological information (augmented through thenetwork-topology data
model), and layering information.
|
default @NonNull List<Network> |
nonnullNetwork() |
getImplementedInterface
augmentation
Copyright © 2019 OpenDaylight. All rights reserved.