diff --git a/network/f5/bigip_monitor_http.py b/network/f5/bigip_monitor_http.py index 9e39aadd109..cfafbad9be1 100644 --- a/network/f5/bigip_monitor_http.py +++ b/network/f5/bigip_monitor_http.py @@ -250,7 +250,7 @@ def check_integer_property(api, monitor, int_property): def set_integer_property(api, monitor, int_property): - api.LocalLB.Monitor.set_template_int_property(template_names=[monitor], values=[int_property]) + api.LocalLB.Monitor.set_template_integer_property(template_names=[monitor], values=[int_property]) def update_monitor_properties(api, module, monitor, template_string_properties, template_integer_properties): diff --git a/network/f5/bigip_monitor_tcp.py b/network/f5/bigip_monitor_tcp.py index 2dffa4509d8..564f4564283 100644 --- a/network/f5/bigip_monitor_tcp.py +++ b/network/f5/bigip_monitor_tcp.py @@ -269,7 +269,7 @@ def check_integer_property(api, monitor, int_property): def set_integer_property(api, monitor, int_property): - api.LocalLB.Monitor.set_template_int_property(template_names=[monitor], values=[int_property]) + api.LocalLB.Monitor.set_template_integer_property(template_names=[monitor], values=[int_property]) def update_monitor_properties(api, module, monitor, template_string_properties, template_integer_properties):