import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
rrset = client.dns.zones.rrsets.delete(
rrset_type="rrsetType",
zone_name="zoneName",
rrset_name="rrsetName",
)
print(rrset)
Copy
Ask AI
{}
RRsets
Delete RRset
Delete RRset.
DELETE
/
dns
/
v2
/
zones
/
{zoneName}
/
{rrsetName}
/
{rrsetType}
Python
Copy
Ask AI
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
rrset = client.dns.zones.rrsets.delete(
rrset_type="rrsetType",
zone_name="zoneName",
rrset_name="rrsetName",
)
print(rrset)