When there are more than 25 (default api page limit) of network objects defined, the GetFmcNetworkObjectByNameOrValue function only works when the object requested was part of the first 25 network object retrieved on page one.
This PR changes this to support up to 1000 network objects.
This is done by increasing the limit to 1000 per page, which according the the API documentation is the maximum value for limit.
Fixes this issue: https://github.com/CiscoDevNet/terraform-provider-fmc/issues/5
When there are more than 25 (default api page limit) of network objects defined, the
GetFmcNetworkObjectByNameOrValue
function only works when the object requested was part of the first 25 network object retrieved on page one. This PR changes this to support up to 1000 network objects. This is done by increasing the limit to 1000 per page, which according the the API documentation is the maximum value for limit.