arista-eosplus / pyeapi

Python client for Arista eAPI
BSD 3-Clause "New" or "Revised" License
140 stars 70 forks source link

Add support for config sessions #111

Open phil-dileo opened 8 years ago

phil-dileo commented 8 years ago

Adds an API to get, create, delete, deleteall and diff for config sessions. We should also add a session param to the config() method as well as implement a basic check for config session support.

saymonaraujo commented 3 years ago

There's a solutions for this ?

andriirr commented 3 years ago

Not at the moment

shimamizu commented 2 years ago

@phil-dileo if you use run_commands method you can do configure session

I do this for example

node.run_commands([
    "configure session",
    "cli vrf management",
    some_command,
    "commit",
])