We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to transform this...
[{ "hostname": "router.example.com", "if": { "GigabitEthernet0": { "link_local": "FE80::DEAD:BEEF:AFFE:110", "speed": 1000000, }, "GigabitEthernet1": { "link_local": "FE80::DEAD:BEEF:AFFE:111", "speed": 1000000, } } }, { "hostname": "gw.example.com", "if": { "GigabitEthernet0": { "link_local": "FE80::DEAD:BEEF:AFFE:112", "speed": 1000000, }, } }]
...into this:
[{ "hostname": "router.example.com", "ifName": "GigabitEthernet0", "link_local": "FE80::DEAD:BEEF:AFFE:110", "speed": 1000000 }, { "hostname": "router.example.com", "ifName": "GigabitEthernet1", "link_local": "FE80::DEAD:BEEF:AFFE:111", "speed": 1000000 }, { "hostname": "gw.example.com", "ifName": "GigabitEthernet0", "link_local": "FE80::DEAD:BEEF:AFFE:112", "speed": 1000000 }]
Object property name (here: GigabitEthernetX) should be written to a configurable key property.
The text was updated successfully, but these errors were encountered:
ef80b6b
Thomas-Gelf
No branches or pull requests
Expected Behavior
I want to transform this...
...into this:
Object property name (here: GigabitEthernetX) should be written to a configurable key property.
The text was updated successfully, but these errors were encountered: