blob: 2db18c4824b0045666c3a008466ee71a6a0d4835 [file] [log] [blame]
Jan Gelety95c87b52017-02-27 10:46:14 +01001""" VRF Status codes """
2
3from util import NumericConstant
4
5
6class VRFState(NumericConstant):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +02007 """VRF State"""
8
Jan Gelety95c87b52017-02-27 10:46:14 +01009 not_configured = 0
10 configured = 1
11 reset = 2
12
13 desc_dict = {
14 not_configured: "VRF not configured",
15 configured: "VRF configured",
16 reset: "VRF reset",
17 }
18
19 def __init__(self, value):
20 NumericConstant.__init__(self, value)