diff --git a/docs/pages/configuration/config/structured-output.mdx b/docs/pages/configuration/config/structured-output.mdx index df93625..b8bcf1f 100644 --- a/docs/pages/configuration/config/structured-output.mdx +++ b/docs/pages/configuration/config/structured-output.mdx @@ -4,6 +4,7 @@ Devices that support responding to a query with structured or easily parsable da - Arista EOS - Juniper Junos +- Huawei VRP When structured output is available, hyperglass checks the RPKI state of each BGP prefix returned using one of two methods: diff --git a/hyperglass/constants.py b/hyperglass/constants.py index 0139c74..951a66c 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -19,7 +19,7 @@ TARGET_FORMAT_SPACE = ("huawei", "huawei_vrpv8") TARGET_JUNIPER_ASPATH = ("juniper", "juniper_junos") -SUPPORTED_STRUCTURED_OUTPUT = ("frr", "juniper", "arista_eos") +SUPPORTED_STRUCTURED_OUTPUT = ("frr", "juniper", "arista_eos", "huawei", "huawei_vrpv8") CONFIG_EXTENSIONS = ("py", "yaml", "yml", "json", "toml")