NetworkManager/introspection/nm-device-team.xml
Beniamino Galvani 3c649e6429 team: expose current device configuration through D-Bus and nmcli
Add a new "Config" property to the D-Bus interface for team devices
and show its value through "nmcli device show". The property contains
the full JSON configuration from teamd for the device.

https://bugzilla.redhat.com/show_bug.cgi?id=1310435
2016-05-26 09:16:46 +02:00

44 lines
1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<node name="/">
<interface name="org.freedesktop.NetworkManager.Device.Team">
<!--
HwAddress:
Hardware address of the device.
-->
<property name="HwAddress" type="s" access="read"/>
<!--
Carrier:
Indicates whether the physical carrier is found (e.g. whether a cable is
plugged in or not).
-->
<property name="Carrier" type="b" access="read"/>
<!--
Slaves:
Array of object paths representing devices which are currently slaved to
this device.
-->
<property name="Slaves" type="ao" access="read"/>
<!--
Config:
The JSON configuration currently applied on the device.
-->
<property name="Config" type="s" access="read" />
<!--
PropertiesChanged:
@properties: A dictionary mapping property names to variant boxed values
-->
<signal name="PropertiesChanged">
<arg name="properties" type="a{sv}"/>
</signal>
</interface>
</node>