sonic-buildimage/src/sonic-yang-models/yang-models/sonic-buffer-port-ingress-profile-list.yang
Praveen Chaudhary 2b7a3ac6c0
[yang-models]: Change name-space from Azure to sonic-net. (#12416)
Changes:
-- Change name-space from Azure to sonic-net.
-- Sort yang list in setup.py for yang-models list.

#### Why I did it
Sonic repo has moved to Linux-foundation.

#### How I did it
[yang-models]: Change name-space from Azure to sonic-net.

#### How to verify it
PR Tests are good enough to verify.
2022-10-31 16:37:25 -07:00

56 lines
1.2 KiB
YANG

module sonic-buffer-port-ingress-profile-list {
namespace "http://github.com/sonic-net/sonic-buffer-port-ingress-profile-list";
prefix bpg;
import sonic-extension {
prefix sonic-ext;
}
import sonic-port {
prefix prt;
}
import sonic-buffer-profile {
prefix bpf;
}
organization
"SONiC";
contact
"SONiC";
description
"SONIC BUFFER PORT INGRESS PROFILE LIST";
revision 2021-07-01 {
description
"Initial revision.";
}
container sonic-buffer-port-ingress-profile-list {
container BUFFER_PORT_INGRESS_PROFILE_LIST {
list BUFFER_PORT_INGRESS_PROFILE_LIST_LIST {
key "port";
leaf port {
type leafref {
path "/prt:sonic-port/prt:PORT/prt:PORT_LIST/prt:name";
}
}
leaf-list profile_list {
type leafref {
path "/bpf:sonic-buffer-profile/bpf:BUFFER_PROFILE/bpf:BUFFER_PROFILE_LIST/bpf:name";
}
description "a list of references to BUFFER_PROFILE_TABLE object for a port";
}
}
}
}
}