Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Asa bgp #772

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions changelog/2023/july.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
New
--------------------------------------------------------------------------------


* asa
* Added ShowBgpSummary
* show bgp summary
* show bgp {address_family} unicat summary
* Added ShowRouteBgp
* show route bgp
Comment on lines +6 to +11
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is good, though in the wrong place. Create a file in https://github.com/CiscoTestAutomation/genieparser/tree/master/changelog/undistributed named asa_bgp_parser_<unix_timestamp>.rst and put this in there

--------------------------------------------------------------------------------
                                      New                                       
--------------------------------------------------------------------------------

* asa
    * Added ShowBgpSummary
      * show bgp summary
      * show bgp {address_family} unicat summary
    * Added ShowRouteBgp
      * show route bgp


* iosxe
* Added ShowWirelessMeshApBackhaul
* show wireless mesh ap backhaul
Expand Down Expand Up @@ -224,5 +232,3 @@
* show lisp {lisp_id} instance-id {instance_id} ethernet server subscription
* show lisp locator-table {locator_table} instance-id {instance_id} ethernet server subscription
* show lisp eid-table vlan {eid_table} ethernet server subscription


29 changes: 29 additions & 0 deletions sdk_generator/outputs/github_parser.json
Original file line number Diff line number Diff line change
Expand Up @@ -11469,6 +11469,15 @@
}
},
"show bgp summary": {
"asa": {
"class": "ShowBgpSummary",
"doc": " Parser for:\n * 'show bgp summary'\n * 'show bgp {address_family} summary'\n ",
"module_name": "show_bgp",
"package": "genie.libs.parser",
"schema": null,
"uid": "show_bgp_summary",
"url": "https://github.com/CiscoTestAutomation/genieparser/tree/master/src/genie/libs/parser/asa/show_bgp.py#L494"
},
"ios": {
"class": "ShowBgpSummary",
"doc": "Parser for show bgp summary",
Expand Down Expand Up @@ -12203,6 +12212,15 @@
}
},
"show bgp {address_family} summary": {
"asa": {
"class": "ShowBgpSummary",
"doc": " Parser for:\n * 'show bgp summary'\n * 'show bgp {address_family} summary'\n ",
"module_name": "show_bgp",
"package": "genie.libs.parser",
"schema": null,
"uid": "show_bgp_address_family_summary",
"url": "https://github.com/CiscoTestAutomation/genieparser/tree/master/src/genie/libs/parser/asa/show_bgp.py#L494"
},
"ios": {
"class": "ShowBgpSummary",
"doc": "Parser for show bgp summary",
Expand Down Expand Up @@ -53034,6 +53052,17 @@
"url": "https://github.com/CiscoTestAutomation/genieparser/tree/master/src/genie/libs/parser/iosxr/show_routing.py#L1542"
}
},
"show route bgp": {
"asa": {
"class": "ShowRouteBgp",
"doc": "Parser for\n * show route bgp\n ",
"module_name": "show_route",
"package": "genie.libs.parser",
"schema": "{\n'vrf': {\n 'default': {\n 'address_family': {\n 'ipv4': {\n Optional (Or) Or ('routes', 'tunneled_routes'): {\n Any (str) *: {\n 'candidate_default': <class 'bool'>,\n Optional (str) subnet: <class 'str'>,\n 'route': <class 'str'>,\n Optional (str) active: <class 'bool'>,\n Optional (str) date: <class 'str'>,\n Optional (str) route_preference: <class 'int'>,\n Optional (str) metric: <class 'int'>,\n Optional (str) source_protocol: <class 'str'>,\n Optional (str) source_protocol_codes: <class 'str'>,\n Optional (str) next_hop: {\n Optional (str) outgoing_interface_name: {\n Any (str) *: {\n Optional (str) outgoing_interface_name: <class 'str'>,\n },\n },\n Optional (str) next_hop_list: {\n Any (str) *: {\n Optional (str) index: <class 'int'>,\n Optional (str) next_hop: <class 'str'>,\n Optional (str) outgoing_interface_name: <class 'str'>,\n },\n },\n },\n },\n },\n },\n },\n },\n },\n}",
"uid": "show_route_bgp",
"url": "https://github.com/CiscoTestAutomation/genieparser/tree/master/src/genie/libs/parser/asa/show_route.py#L334"
}
},
"show route extensive": {
"junos": {
"class": "ShowRouteProtocolExtensive",
Expand Down
Loading