summaryrefslogtreecommitdiffstats
path: root/srv6/srv6-api/src/main/yang/hc2vpp-oc-srte-policy@2017-09-18.yang
blob: bdb8c8a634c744c0fa30ab5eaea44d01d2b78e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
module hc2vpp-oc-srte-policy {

  /*** NAMESPACE / PREFIX DEFINITION ***/

  namespace "http://cisco.com/ns/yang"+
    "/oc-srte-policy";


  prefix "oc-srte";

  /*** LINKAGE (IMPORTS / INCLUDES) ***/

  import ietf-inet-types { prefix "inet"; }

  import ietf-interfaces { prefix if; }

  import ietf-yang-types {
    prefix "yang";
  }

  /*** META INFORMATION ***/

  organization "Cisco Systems, Inc.";

  contact
    "Cisco Systems, Inc.
     Customer Service

     Postal: 170 West Tasman Drive
     San Jose, CA 95134

     E-mail: ";

  description
    "This module contains a collection of YANG definitions
     for SR TE policy module.

     Copyright (c) 2017 by Cisco Systems, Inc.
     All rights reserved.";

  revision "2017-09-18" {
    description
      "Initial version";
    reference
      "draft-filsfils-spring-segment-routing-policy";
  }

  /* Identities */
  identity path-not-selected-reason {
    description
      "Base identity for which reasons for not selecting
      candidate path are derived from";
  }
  identity path-not-selected-not-best {
    base path-not-selected-reason;
    description
      "Higher preference path exists";
  }
  identity path-not-selected-no-active-segmet-list {
    base path-not-selected-reason;
    description
      "Candidate path has no active segment list(s)";
  }
  identity path-not-selected-empty-segmet-list {
    base path-not-selected-reason;
    description
      "Candidate path has empty segment list(s)";
  }
  identity path-not-selected-invalid-binding-sid {
    base path-not-selected-reason;
    description
      "Candidate path has invalid binding SID";
  }

  identity resource-affinities-type {
    description
      "Base identity for resource affinities";
  }
  identity resource-aff-include-all {
    base resource-affinities-type;
    description
      "The set of bitmap attributes all of which
      must be present on a link so it is considered
      acceptable";
  }
  identity resource-aff-include-any {
    base resource-affinities-type;
    description
      "The set of bitmap attributes any of which
      must be present on a link so it is considered
      acceptable";
  }
  identity resource-aff-exclude-any {
    base resource-affinities-type;
    description
      "The set of bitmap attributes any of which
      present reders the link to be considered
      unacceptable";
  }

  identity path-computation-method {
    description
     "base identity for supported path computation
      mechanisms";
  }
  identity path-locally-computed {
    base path-computation-method;
    description
      "indicates a constrained-path LSP in which the
      path is computed by the local LER";
  }
  identity path-externally-queried {
    base path-computation-method;
    description
     "Constrained-path in which the path is
      obtained by querying an external source, such as a PCE server.
      In the case that a path is defined to be externally queried, it
      may also have associated explicit definitions (which are provided
      to the external source to aid computation); and the path that is
      returned by the external source is not required to provide a
      wholly resolved path back to the originating system - that is to
      say, some local computation may also be required";
  }
  identity path-explicitly-defined {
    base path-computation-method;
    description
     "constrained-path LSP in which the path is
      explicitly specified as a collection of strict or/and loose
      hops";
  }

  identity provisioning-method-type {
    description "Candidate path provisioning source type";
  }
  identity provisioning-method-config {
    base provisioning-method-type;
    description
        "Candidate path is provisioned via configuration";
  }
  identity provisioning-method-bgp {
    base provisioning-method-type;
    description
        "Candidate path is provisioned via BGP signaling";
  }
  identity provisioning-method-pcep {
    base provisioning-method-type;
    description
        "Candidate path is provisioned via PCEP signaling";
  }

  /* Typdefs */
  typedef segment-list-oper-state {
    type enumeration {
      enum ACTIVE {
        description
          "Segment-list is resolved and active in forwarding";
      }
      enum INACTIVE {
        description
          "Segment-list is unresolved and inactive in forwarding";
      }
    }
    description
      "Segment list operational state type";
  }
  typedef mpls-label {
    type union {
      type uint32 {
        range 16..1048575;
      }
      type enumeration {
        enum IPV4_EXPLICIT_NULL {
          value 0;
          description
            "valid at the bottom of the label stack,
            indicates that stack must be popped and packet forwarded
            based on IPv4 header";
        }
        enum ROUTER_ALERT {
          value 1;
          description
            "allowed anywhere in the label stack except
            the bottom, local router delivers packet to the local CPU
            when this label is at the top of the stack";
        }
        enum IPV6_EXPLICIT_NULL {
          value 2;
          description
            "valid at the bottom of the label stack,
            indicates that stack must be popped and packet forwarded
            based on IPv6 header";
        }
        enum IMPLICIT_NULL {
          value 3;
          description
            "assigned by local LSR but not carried in
            packets";
        }
        enum ENTROPY_LABEL_INDICATOR {
          value 7;
          description
            "Entropy label indicator, to allow an LSR
            to distinguish between entropy label and applicaiton
            labels RFC 6790";
        }
      }
    }
    description
      "type for MPLS label value encoding";
    reference "RFC 3032 - MPLS Label Stack Encoding";
  }
  typedef sid-value-type {
    type union {
      type mpls-label;
      type inet:ip-address;
    }
    description "The SID value type";
  }
  typedef path-margin-type {
    type enumeration {
      enum relative {
        value 1;
        description "Path margin type relative";
      }
      enum absolute {
        value 2;
        description "Path margin type relative";
      }
    }
    description "Path margin types";
  }
  typedef binding-sid-oper-state {
    type enumeration {
      enum ALLOC-PENDING {
        value 1;
        description "BSID is allocate pending";
      }
      enum PROG-PENDING {
        value 2;
        description "BSID is programed pending";
      }
      enum PROGRAMMED {
        value 3;
        description "BSID is programmed";
      }
      enum CONFLICT {
        value 4;
        description "BSID is in-conflict state";
      }
    }
    description
      "Binding SID operational state type";
  }
  typedef policy-admin-state {
    type enumeration {
      enum UP {
        value 1;
        description "SR policy is administratively up";
      }
      enum DOWN {
        value 2;
        description "SR policy is administratively down";
      }
    }
    description "SR policy admin state";
  }
  typedef policy-oper-state {
    type enumeration {
      enum UP {
        value 1;
        description "SR policy is opertionally up";
      }
      enum DOWN {
        value 2;
        description "SR policy is opertionally down";
      }
    }
    description "SR policy oper state";
  }
  typedef explicit-binding-sid-rule-type {
    type enumeration {
      enum fallback-dynamic {
        value 1;
        description
            "Explicit Binding SID falls back to dynamic in
            case explicit label is not available.";
      }
      enum enforce-srlb {
        value 2;
        description
            "Explicit Binding SID is enforced with no
             fallback if label does not fall in SRLB or
             if no SRLB is configured";
      }
    }
    description "SRTE binding SID explicit rule";
  }
  typedef segment-type {
    type enumeration {
      enum type-1 {
        value 1;
        description "SID only, in the form of MPLS Label";
      }
      enum type-2 {
        value 2;
        description "SID only, in the form of IPv6 address";
      }
      enum type-3 {
        value 3;
        description "IPv4 Node Address with optional SID";
      }
      enum type-4 {
        value 4;
        description "IPv6 Node Address with optional SID";
      }
      enum type-5 {
        value 5;
        description "IPv4 Address + index with optional SID";
      }
      enum type-6 {
        value 6;
        description "IPv4 Local and Remote addresses with optional SID";
      }
      enum type-7 {
        value 7;
        description "IPv6 Address + index with optional SID";
      }
      enum type-8 {
        value 8;
        description "IPv6 Local and Remote addresses with optional SID";
      }
    }
    description "SR segment type";
  }
  typedef dataplane-type {
    type enumeration {
      enum mpls {
        value 1;
        description "Segment-routing MPLS";
      }
      enum srv6 {
        value 2;
        description "Segment-routing v6";
      }
    }

    // Add all the types in draft-ietf-idr-segment-routing-te-policy
    description "SRTE path hop";
  }
  typedef path-metric-type {
    type enumeration {
      enum igp {
        value 1;
        description "IGP path metric type";
      }
      enum te {
        value 2;
        description "TE path metric type";
      }
    }
    description "Path metric types";
  }
  typedef binding-sid-alloc-mode {
    type enumeration {
      enum explicit {
        value 1;
        description "Explicitly specified BSID";
      }
      enum dynamic {
        value 2;
        description "Dynamically allocated BSID";
      }
    }
    description "binding SID allocation mode";
  }
  typedef auto-route-metric-type {
    type enumeration {
      enum constant {
        value 1;
        description "Autoroute constant metric type";
      }
      enum relative {
        value 2;
        description "Autoroute relative metric type";
      }
    }
    description "SRTE auto route metric";
  }

  grouping ENABLE {
    description
      "Reusable node that enables a specific feature";
    leaf enable {
      type empty;
      description "True only";
    }
  }

  grouping affinity-constraints-contents_config {
    description
      "Path affinities constraints grouping";
    leaf constraint {
      type identityref {
        base resource-affinities-type;
      }
      description "Affinities constraint";
    }
    list affinity-names {
      key "name";
      leaf name {
        type leafref {
          path "../config/name";
        }
        description "Affinity name";
      }
      container config {
        description
          "Configuration intended parameters";
        leaf name {
          type string;
          description "Affinity name";
        }
      }
      container state {
        config false;
        description
          "Configuration applied parameters and state";
        leaf name {
          type string;
          description "Affinity name";
        }
      }
      description
        "List of named affinities";
    }
  }

  grouping affinity-constraints {
    description
      "Path affinities grouping";
    container affinity-constraints {
      description
        "Path affinities container";
      list affinity-constraint {
        key "constraint";
        description
          "List of named affinity constraints";
        leaf constraint {
          type leafref {
            path "../config/constraint";
          }
          description "Affinities constraint";
        }
        container config {
          description
            "Configuration intended parameters";
          uses affinity-constraints-contents_config;
        }
        container state {
          config false;
          description
            "Configuration applied parameters and state";
          uses affinity-constraints-contents_config;
        }
      }
    }
  }

  grouping segment_config {
    description "Segment properties grouping";
    leaf index {
      type uint32;
      description "Segment index";
    }
    leaf type {
      type segment-type;
      description "Segment type";
    }
    leaf ip-address {
      when "../segment-type = 'type-3' or " +
           "../segment-type = 'type-4' or " +
           "../segment-type = 'type-5' or " +
           "../segment-type = 'type-7'";
      type inet:ip-address;
      description "Segment IPv4/v6 address";
    }
    leaf local-ip-address {
      when "../segment-type = 'type-6' or " +
           "../segment-type = 'type-8'";
      type inet:ip-address;
      description "Segment local IPv4/v6 adjacency address";
    }
    leaf remote-ip-address {
      when "../segment-type = 'type-6' or " +
           "../segment-type = 'type-8'";
      type inet:ip-address;
      description "Segment remote IPv4/v6 adjacency address";
    }
    leaf sid-index {
      when "../segment-type = 'type-5' or " +
           "../segment-type = 'type-7'";
      type uint32;
      description "Segment SID index";
    }
    leaf sid-value  {
      type sid-value-type;
      description "Segment MPLS Label";
    }
  }

  grouping segment-properties {
    description
      "SR segment properties grouping";
    container config {
      description
        "Configuration intended parameters";
      uses segment_config;
    }
    container state {
      config false;
      description
        "Configuration applied parameters and state";
      uses segment_config;
    }
  }

  grouping segment-list_config {
    description
      "Segment SID list properties configuration grouping";
    leaf name {
      type string;
      description "Segment-list name";
    }
  }

  grouping segment-list-properties {
    description "Segment SID list properties";
    container config {
      description
        "Configuration intended parameters";
      uses segment-list_config;
    }
    container state {
      config false;
      description
        "Configuration applied parameters and state";
      uses segment-list_config;
    }
  }

  grouping named-segment-lists {
    description
      "Named segment lists grouping";
    container named-segment-lists {
      description "Segment-lists properties";

      list named-segment-list {
        key "name";
        description "Segment-list properties";
        leaf name {
          type leafref {
            path "../config/name";
          }
          description "Segment list name";
        }
        uses segment-list-properties;
        container segments {
          description
            "Segments for given segment list";

          list segment {
            key "index";
            leaf index {
              type leafref {
                path "../config/index";
              }
              description "The segment index";
            }
            description "Configure Segment/hop at the index";
            uses segment-properties;
          }
        }
      }
    }
  }

  grouping named-affinity-bitmap_config {
    description
      "Global named administrative groups configuration
      grouping";
    leaf name {
      type string;
      description
        "A string name that uniquely identifies a TE
        interface named admin-group";
    }
    leaf bit-position {
      type uint32;
      description
        "Bit position representing the administrative group";
    }
  }
  grouping named-affinity-bitmaps {
    description
      "Global named administrative groups grouping";
    container named-affinity-bitmaps {
      description "TE named admin groups container";
      list named-affinity-bitmap {
        key "name";
        description
          "List of named TE admin-groups";
        leaf name {
          type leafref {
            path "../config/name";
          }
          description "Admin-group name";
        }
        container config {
          description
            "Configuration intended parameters";
          uses named-affinity-bitmap_config;
        }
        container state {
          config false;
          description
            "Configuration applied parameters and state";
          uses named-affinity-bitmap_config;
        }
      }
    }
  }

  grouping explicit-binding-sid-fallback-rules_config {
    description "Binding SID fallback rules";
    leaf fallback-rule {
      type explicit-binding-sid-rule-type;
      description "Binding sid explicit rule";
    }
  }

  grouping explicit-binding-sid-rules {
    description
      "Explicit binding SID rules";
    container explicit-binding-sid-rules {
      description "Binding sid rules";
      container config {
        description
          "Configuration intended parameters";
        uses explicit-binding-sid-fallback-rules_config;
      }
      container state {
        config false;
        description
          "Configuration applied parameters and state";
        uses explicit-binding-sid-fallback-rules_config;
      }
    }
  }

  grouping binding-sid_config {
    description
      "Binding SID configuration properties grouping";
    leaf alloc-mode {
      type binding-sid-alloc-mode;
      description "Binding SID type";
    }
    leaf type {
      type dataplane-type;
      description "Binding SID type";
    }
    leaf value {
      when "../alloc-mode = 'explicit'" {
        description "This leaf is valid only if alloc-mode is explicit";
      }
      /*
        TODO (HC2VPP-356): This was valid for MPLS label only, there is no definition for SRv6.
                           Changed to sid-value-type to support both SRv6 and MPLS

      type uint32 {
        range "16..1048575";
      }
      */
      type sid-value-type;
      description "Segment SID";
    }
  }

  grouping binding-sid_state {
    description
      "Binding SID state properties grouping";
    leaf oper-state {
      type binding-sid-oper-state;
      description
        "Binding SID operational state";
    }
    leaf forwarding-stats-pkts {
      type yang:counter64;
      description "Number of packets forwarded";
    }
    leaf forwarding-stats-bytes {
      type yang:counter64;
      units "byte";
      description "Number of bytes forwarded";
    }
  }

  grouping binding-sid-properties {
    description
      "Binding SID properties grouping";
    container binding-sid {
      description "Binding Segment ID";
      container config {
        description
          "Configuration intended parameters";
        uses binding-sid_config;
      }
      container state {
        config false;
        description
          "Configuration applied parameters and state";
        uses binding-sid_config;
        uses binding-sid_state;
      }
    }
  }

  grouping autoroute-metric_config {
    description
      "Autoroute metric configuration properties grouping";
    leaf metric-type {
      type auto-route-metric-type;
      description "Metric type";
    }
    leaf metric-constant {
      type uint32 {
        range "0..1000";
      }
      description "Autoroute constant metric";
    }
    leaf metric-relative {
      type int32 {
        range "-10..10";
      }
      description "Autoroute relative metric";
    }
  }

  grouping autoroute-metric {
    description
      "Autoroute metric properties grouping";
    container metric {
      description "Autoroute metric properties";
      container config {
        description
          "Configuration intended parameters";
        uses autoroute-metric_config;
      }
      container state {
        config false;
        description
          "Configuration applied parameters and state";
        uses autoroute-metric_config;
      }
    }
  }

  grouping prefixes-properties {
    description
      "Autoroute include prefix table properties grouping";
    container prefixes {
      description
        "Autoroute include prefix table properties";
      container config {
        description
          "Configuration intended parameters";
        leaf prefixes-all {
          type boolean;
          default 'false';
          description
            "Indicates whether all prefixes allowed to be
            steered over the policy";
        }
      }
      container state {
        config false;
        description
          "Configuration applied parameters and state";
        leaf prefixes-all {
          type boolean;
          description
            "Indicates whether all prefixes allowed to be
            steered over the policy";
        }
      }

      list prefix {
        key  "ip-prefix";
        description "Autoroute IP prefix to include";
        leaf ip-prefix {
          type leafref {
            path "../config/ip-prefix";
          }
          description "Autoroute prefix IP address";
        }
        uses include-prefix;
      }
    }
  }

  grouping autoroute-include {
    description
      "Autoroute include properties grouping";
    container autoroute-include {
      description
        "Autoroute include properties container";
      container config {
        description
          "Configuration intended parameters";
        uses autoroute-metric_config;
      }
      container state {
        config false;
        description
          "Configuration applied parameters and state";
        uses autoroute-metric_config;
      }
      uses prefixes-properties;
    }
  }

  grouping include-prefix_config {
    description
      "Autoroute include prefix configuration";
    leaf ip-prefix {
      type inet:ip-prefix;
      description "Autoroute prefix IP address";
    }
  }

  grouping include-prefix {
    description
      "Autoroute include prefixes";
    container config {
      description
        "Configuration intended parameters";
      uses include-prefix_config;
    }
    container state {
      config false;
      description
        "Configuration applied parameters and state";
      uses include-prefix_config;
    }
  }

  grouping metric-properties_config {
    description
      "SR path metric properties";
    leaf metric-type {
      type path-metric-type;
      description "Metric type";
    }
    leaf metric-margin-absolute {
      type uint32 {
        range "0..2147483647";
      }
      description "Absolute metric margin";
    }
    leaf metric-margin-relative {
      type uint32 {
        range "0..100";
      }
      description "Relative metric margin";
    }
  }

  grouping path-computation-constraints_config {
    description
      "Candidate path constraints configuration grouping";
    leaf sid-limit {
      type uint32 {
        range "0..255";
      }
      description "The path maximum number of SIDs";
    }
    leaf metric-limit {
      type uint32;
      description "The path accumulative metric limit";
    }
  }

  grouping path-computation-constraints {
    description
      "Candidate path computation constraints grouping";
    container path-computation-constratints {
      description
        "Candidate path computation constraints";
      container config {
        description
          "Configuration intended parameters";
        uses path-computation-constraints_config;
        uses metric-properties_config;
      }
      container state {
        config false;
        description
          "Configuration applied parameters and state";
        uses path-computation-constraints_config;
        uses metric-properties_config;
      }
      uses affinity-constraints;
    }
  }

  grouping path-forwarding_state {
    description "Policy Forwarding path information";
    leaf outgoing-interface {
      type if:interface-ref;
      description "Outgoing interface handle";
    }
    leaf next-hop-address {
      type inet:ip-address;
      description "Nexthop address";
    }
    leaf next-hop-table {
      type uint32;
      description "Table ID for nexthop address";
    }
    list out-label-stack {
      description
        "Output label stack for this path";
      leaf index {
        type mpls-label;
        description
          "The index in the MPLS label stack, index 0 indicates
           the top of the stack";
      }
      leaf label {
        type mpls-label;
        description "Path outgoing labels";
      }
    }
    leaf is-protected {
      type boolean;
      description "Is this path protected ?";
    }
    leaf is-pure-backup {
      type boolean;
      description "Is this path a pure backup ?";
    }
    leaf weight {
      type uint32;
      description "Path's weight for W-ECMP balancing";
    }
    leaf primary-path-id {
      type uint8;
      description "path Id";
    }
    leaf backup-path-id {
      type uint8;
      description "Backup path Id";
    }
    leaf forwarding-stats-pkts {
      type yang:counter64;
      description "Number of packets forwarded on this path";
    }
    leaf forwarding-stats-bytes {
      type yang:counter64;
      units "byte";
      description "Number of bytes forwarded on this path";
    }
  }

  grouping pathlist-forwarding_state {
    description "Policy forwarding information";
    list path-list {
      description "Forwarding paths";
      uses path-forwarding_state;
    }
  }

  grouping path-segment-list_config {
    description
      "Candidate path segment list configuration properties";
    leaf name {
      type string;
      description "Segment-list name";
    }
    leaf weight {
      type uint32;
      description "Segment-list weighted loadshare";
    }
  }

  grouping path-segment-list_state {
    description
      "Path segment list state grouping";
    leaf oper-state {
      type segment-list-oper-state;
      description
        "The segment list operation state";
    }
    container forwarding {
      description
        "Path segment list forwarding state";
      uses pathlist-forwarding_state;
    }
  }

  grouping path-segment-list {
    description
      "Candidate path segment list(s) properties";
    container config {
      description
        "Configuration intended parameters";
      uses path-segment-list_config;
    }
    container state {
      config false;
      description
        "Configuration applied parameters and state";
      uses path-segment-list_config;
      uses path-segment-list_state;
    }
  }

  grouping path-segment-list-properties {
    description
      "Candidate path properties ";
    uses path-computation-constraints;
    container segment-lists {
      description
        "Path segment list(s) properties";
      list segment-list {
        key "name";
        description "SR policy candidate path segment lists";

        leaf name {
          type leafref {
            path "../config/name";
          }
          description "Segment-list name";
        }
        uses path-segment-list;
      }
    }
  }

  grouping candidate-path_config {
    description
      "Candidate path configuration properties grouping";
    leaf name {
      type string;
      description "Candidate path name";
    }
    leaf provisioning-method {
      type identityref {
        base provisioning-method-type;
      }
      description "Candidate path provisioning method";
    }
    leaf computation-method {
      type identityref {
        base path-computation-method;
      }
      description "Path computation method";
    }
    leaf preference {
      type uint32 {
        range "1..65535";
      }
      description "Candidate path preference";
    }
    leaf distinguisher {
      type uint32;
      description "Candidate path distinguisher";
    }
  }

  grouping candidate-path_state {
    description
      "Candidate path state properties grouping";
    leaf is-active-path {
      type boolean;
      default 'false';
      description
        "True if the candidate path is ACTIVE, False otherwise";
    }
    leaf not-selected-reason {
      type identityref {
        base path-not-selected-reason;
      }
      description
        "Candidate path not selected reason";
    }
  }

  grouping unauthorized-steering-apps {
    description
      "Unauthorized to steer application properties";
    container steering-unauthorized-applications {
      presence
        "Presence of this container enables unauthorized
         steering filter. By default steering is authorized";
      description
        "Unauthorized to steer application properties";
      container config {
        description
          "Configuration intended parameters";
        leaf-list steering-unauthorized-application {
          type string;
          description
            "List of unauthorized steering applications";
        }
      }
      container state {
        config false;
        description
          "Configuration applied parameters and state";
        leaf-list steering-unauthorized-application {
          type string;
          description
            "List of unauthorized steering applications";
        }
      }
    }
  }

  grouping policy-properties_config {
    description
      "SR policy configuration grouping";
    leaf name {
      type string {
        length "1..128";
      }
      description "SR policy name";
    }
    leaf color {
      type uint32 {
        range "1..4294967295";
      }
      description "Color associated with the policy";
    }
    leaf endpoint {
      type inet:ip-address;
      description "Policy end point IP address";
    }
    leaf admin-state {
      type policy-admin-state;
      default 'UP';
      description
        "SR policy administrative state, true for
        enabled, false for disabled";
    }
  }

  grouping policy-properties_state {
    description
      "SR policy property grouping";
    leaf oper-state {
      type policy-oper-state;
      description
        "SR policy operational state";
    }
    leaf transition-count {
      type uint32;
      description "Indicates number of up/down transitions";
    }
    leaf up-time {
      type yang:date-and-time;
      description "Policy up time in seconds";
    }
    leaf down-time {
      type yang:date-and-time;
      description "Policy down time in seconds";
    }
  }

  grouping policy-properties {
    description
      "SR policy properties";
    container config {
      description
        "Configuration intended parameters";
      uses policy-properties_config;
    }
    container state {
      config false;
      description
        "Configuration applied parameters and state";
      uses policy-properties_config;
      uses policy-properties_state;
    }
    uses binding-sid-properties;
    uses unauthorized-steering-apps;
  }

  grouping candidate-paths {
    description "SR policy candidate path grouping";
    container candidate-paths {
      description "SR policy candidate path(s) ";

      list candidate-path {
        key "provisioning-method preference distinguisher";
        description "SR policy Candidate path(s) list entry";

        leaf name {
          type leafref {
            path "../config/name";
          }
          description "Candidate-path name";
        }
        leaf provisioning-method {
          type leafref {
            path "../config/provisioning-method";
          }
          description "Candidate path provisioning method";
        }
        /*
            TODO (HC2VPP-356): fixed path for preference, probably copy/paste error
                               before pointed to "../config/name"
        */
        leaf preference {
          type leafref {
            path "../config/preference";
          }
          description "Candidate path preference";
        }
        leaf distinguisher {
          type leafref {
            path "../config/distinguisher";
          }
          description "Candidate path distinguisher";
        }
        container config {
          description
            "Configuration intended parameters";
          uses candidate-path_config;
        }
        container state {
          config false;
          description
            "Configuration applied parameters and state";
          uses candidate-path_config;
          uses candidate-path_state;
        }
        uses binding-sid-properties;
        uses unauthorized-steering-apps;
        uses path-segment-list-properties;
      }
    }
  }

  grouping policies {
    description "SR policy grouping";
    container policies {
      description "SR Policy container";

      list policy {
        key "color endpoint";
        unique "name";
        description "SR Policy properties";

        leaf name {
          type leafref {
            path "../config/name";
          }
          description "SR policy name";
        }
        leaf color {
          type leafref {
            path "../config/color";
          }
          description "Policy color";
        }
        leaf endpoint {
          type leafref {
            path "../config/endpoint";
          }
          description "Policy endpoint";
        }

        uses policy-properties;

        uses candidate-paths;

        uses autoroute-include;
      }
    }
  }

  grouping on-demand-colors_state {
    description
      "On demand color template state properties grouping";
    leaf registered-application-count {
      type uint8;
      description "The number of registered application count";
    }
    leaf unused-duration {
      type yang:date-and-time;
      description
        "Duration for which the on-demand policy has no
         no registered clients";

    }
  }

  grouping on-demand-colors_config {
    description
      "On demand color template configuration grouping";
    leaf color {
      type uint32;
      description "The on-demand SR policy color";
    }
  }

  grouping on-demand-colors {
    description "On demand color properties grouping";
    container on-demand-colors {
      description "On demand color properties";
      list on-demand-color {
        key "color";
        description "On demand color template list";

        leaf color {
          type leafref {
            path "../config/color";
          }
          description "The on-demand SR policy color";
        }
        container config {
          description
            "Configuration intended parameters";
          uses on-demand-colors_config;
        }
        container state {
          config false;
          description
            "Configuration applied parameters and state";
          uses on-demand-colors_config;
          uses on-demand-colors_state;
        }
        uses path-segment-list-properties;
      }
    }
  }

  grouping segment-routing-te-attributes {
    description "SRTE attributes configuration grouping";
    container config {
      description
        "Configuration parameters for interface TE
         attributes";
      uses srte-interface-attributes_config;
    }
    container state {
      config false;
      description
        "State parameters for interface TE metric";
      uses srte-interface-attributes_config;
    }
  }

  grouping srte-interface-attributes_config {
    description
      "global level definitions for interfaces
      on which TE is run";

    leaf name {
      type if:interface-ref;
      description
        "reference to interface name";
    }

    leaf te-metric {
      type uint32;
      description
        "TE specific metric for the link";
    }

    leaf-list named-affinities {
      type string;
      description
        "list of admin groups (by name) on the interface";
    }
  }


  grouping interfaces-grouping {
    description
      "Interface TE configuration data grouping";
    container interfaces {
      description
        "Configuration data model for TE interfaces.";
      list interface {
        key "interface";
        description "TE interfaces.";
        leaf interface {
          type if:interface-ref;
          description
            "TE interface name.";
        }
        /* TE interface parameters */
        uses segment-routing-te-attributes;
      }
    }
  }



  grouping pcc-pce-peers_config {
    description
      "The PCC's PCE peers configuration properties";
    leaf address {
      type inet:ip-address;
      description "Remote PCE address";
    }
    leaf precedence {
      type uint32 {
        range "0..255";
      }
      mandatory true;
      description "Precedence value of this PCE";
    }
  }

  grouping pcc_config {
    description
      "The PCC configuration properties";
    leaf source-address {
      type inet:ip-address-no-zone;
      description
        "Local source IP address to use on PCEP
        sessions";
    }
    leaf delegation-timeout {
      type uint32 {
        range "0..4294967295";
      }
      description
        "The maximum time delegated SR-TE policies can
        remain up without an active connection to a
        PCE";
    }
  }

  grouping pcc {
    description "Path computation client SRTE properties grouping";
    container pcc {
      description "Path Computation Client";

      container pce-peers {
        description "PCE peer list configuration";

        list pce-peer {
          key "address";
          description "PCE peer list";
          leaf address {
            type leafref {
              path "../config/address";
            }
            description "Remote PCE address";
          }
          // TODO (HC2VPP-356): PCE peer contains leaf address pointing to config/address, but config params were
          //                    not encapsulated in config container.
          container config {
            description
              "Configuration intended parameters";
            uses pcc-pce-peers_config;
          }
        }
      }
      container config {
        description
          "Configuration intended parameters";
        uses pcc_config;
      }
      container state {
        config false;
        description
          "Configuration applied parameters and state";
        uses pcc_config;
      }
    }
  }

  /* Main SR container */
  container segment-routing {
    description "Main segment routing container";

    container traffic-engineering {
      description "Traffic Engineering container";

      uses named-segment-lists;

      uses named-affinity-bitmaps;

      uses explicit-binding-sid-rules;

      uses policies;

      uses interfaces-grouping;

      uses on-demand-colors;
    }
  }
}