Bryan-00
Nov 05, 2022Altocumulus
Delete Node via BIGIQ REST API
After sending a DELETE request to a specific Node resource, I can successfully deploy the change by a POST to deploy-configuration using below body.
Looking at the contents of the body, I can say that what ever changes where done on BIGIQ for those specific BIGIP's, aside from the Node deletion, will all be deployed. Is my understanding correct?
If that is the case, is there something I can put on "objectsToDeployReferences" that will only limit the deployment on the node deletion?
{
"skipVerifyConfig":false,
"skipDistribution":false,
"name":"test_remove_pool_member",
"deviceReferences":[
{
"link":"https://localhost/mgmt/shared/resolver/device-groups/cm-adccore-allbigipDevices/devices/{{device1_id}}"
},
{
"link":"https://localhost/mgmt/shared/resolver/device-groups/cm-adccore-allbigipDevices/devices/{{device2_id}}"
}
],
"objectsToDeployReferences":[],
"deploySpecifiedObjectsOnly":false
}
Thanks in advance!