Using PATCH method minActiveMembers and loadBalancingMode stays same as before.
From the REST guide "To address different requirements, iControl REST implements both PATCH and PUT methods. In iControl REST, the PATCH method modifies only the properties that you specify in a request. The PUT method modifies the properties that you specify in a request and sets the remaining properties to either default values or empty values."
Fixes #13
GET https://xxx/mgmt/tm/ltm/pool/demoapp-test_80
Then we will send
PUT https://xxx/mgmt/tm/ltm/pool/demoapp-test_80 and data
{"monitor":"demoapp-test_80"}
The system will reply back
Using PATCH method
minActiveMembers
andloadBalancingMode
stays same as before.From the REST guide "To address different requirements, iControl REST implements both PATCH and PUT methods. In iControl REST, the PATCH method modifies only the properties that you specify in a request. The PUT method modifies the properties that you specify in a request and sets the remaining properties to either default values or empty values."