We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7260ea5 commit c211babCopy full SHA for c211bab
machine1/dbus.go
@@ -125,6 +125,11 @@ func (c *Conn) GetMachineByPID(pid uint) (dbus.ObjectPath, error) {
125
return c.getPath("GetMachineByPID", pid)
126
}
127
128
+// GetMachineAddresses gets a list of IP addresses
129
+func (c *Conn) GetMachineAddresses(name string) (dbus.ObjectPath, error) {
130
+ return c.getPath("GetMachineAddresses", name)
131
+}
132
+
133
// DescribeMachine gets the properties of a machine
134
func (c *Conn) DescribeMachine(name string) (machineProps map[string]interface{}, err error) {
135
var dbusProps map[string]dbus.Variant
0 commit comments