Skip to content
Start here

ACLs

List ACLs
dns.zone_transfers.acls.list(ACLListParams**kwargs) -> SyncSinglePage[ACL]
GET/accounts/{account_id}/secondary_dns/acls
ACL Details
dns.zone_transfers.acls.get(stracl_id, ACLGetParams**kwargs) -> ACL
GET/accounts/{account_id}/secondary_dns/acls/{acl_id}
Create ACL
dns.zone_transfers.acls.create(ACLCreateParams**kwargs) -> ACL
POST/accounts/{account_id}/secondary_dns/acls
Update ACL
dns.zone_transfers.acls.update(stracl_id, ACLUpdateParams**kwargs) -> ACL
PUT/accounts/{account_id}/secondary_dns/acls/{acl_id}
Delete ACL
dns.zone_transfers.acls.delete(stracl_id, ACLDeleteParams**kwargs) -> ACLDeleteResponse
DELETE/accounts/{account_id}/secondary_dns/acls/{acl_id}
ModelsExpand Collapse
class ACL:
id: str
ip_range: str

Allowed IPv4/IPv6 address range of primary or secondary nameservers. This will be applied for the entire account. The IP range is used to allow additional NOTIFY IPs for secondary zones and IPs Cloudflare allows AXFR/IXFR requests from for primary zones. CIDRs are limited to a maximum of /24 for IPv4 and /64 for IPv6 respectively.

name: str

The name of the acl.

class ACLDeleteResponse:
id: Optional[str]