import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)client.cloud.load_balancers.pools.health_monitors.delete( pool_id="00000000-0000-4000-8000-000000000000", project_id=1, region_id=1,)
Load Balancers
Delete load balancer pool health monitor
DELETE
/
cloud
/
v1
/
lbpools
/
{project_id}
/
{region_id}
/
{pool_id}
/
healthmonitor
Python
Copy
Ask AI
import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)client.cloud.load_balancers.pools.health_monitors.delete( pool_id="00000000-0000-4000-8000-000000000000", project_id=1, region_id=1,)