diff options
| -rwxr-xr-x | src/fapi | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -130,12 +130,12 @@ class FapiBase(object): ' -f Common -b balancer.example.com vlan NAME create tagged VLANID internal|external|...', ' -f Common -b balancer.example.com vlan NAME delete', ' -f Common -b balancer.example.com vlan NAME get detail', - ' -f Common -b balancer.example.com hagroup', - ' -f Common -b balancer.example.com hagroup NAME create|delete', - ' -f Common -b balancer.example.com hagroup NAME add trunk TRUNKNAME WEIGHT THRESHOLD', - ' -f Common -b balancer.example.com hagroup NAME remove trunk TRUNKNAME', - ' -f Common -b balancer.example.com hagroup NAME set trunk threshold TRUNKNAME THRESHOLD', - ' -f Common -b balancer.example.com tgroup NAME set hagroup HAGROUPNAME', + ' -f Common -b balancer.example.com ha_group', + ' -f Common -b balancer.example.com ha_group NAME create|delete', + ' -f Common -b balancer.example.com ha_group NAME add trunk TRUNKNAME WEIGHT THRESHOLD', + ' -f Common -b balancer.example.com ha_group NAME remove trunk TRUNKNAME', + ' -f Common -b balancer.example.com ha_group NAME set trunk threshold TRUNKNAME THRESHOLD', + ' -f Common -b balancer.example.com tgroup NAME set ha_group HAGROUPNAME', ' -f Common tgroup', ' -f Common tgroup NAME add ha_order DEVICE ORDER', ' -f Common tgroup NAME create', @@ -889,7 +889,7 @@ class Fapi(FapiBase): return self.__do_vlan(lambda: self._f5.Networking.VLAN) elif a.what == 'selfip': return self.__do_selfip(lambda: self._f5.Networking.SelfIPV2) - elif a.what == 'hagroup': + elif a.what == 'ha_group': return self.__do_hagroup(lambda: self._f5.System.HAGroup) elif a.what == 'tgroup': return self.__do_tgroup(lambda: self._f5.Management.TrafficGroup) |
