import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.waap.domains.custom_rules.delete_multiple(
domain_id=0,
rule_ids=[0],
)
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.waap.domains.custom_rules.delete_multiple(
domain_id=0,
rule_ids=[0],
)