Uses of Class
codes.thischwa.cf.model.ZoneEntity
Packages that use ZoneEntity
-
Uses of ZoneEntity in codes.thischwa.cf
Methods in codes.thischwa.cf that return ZoneEntityModifier and TypeMethodDescriptionRetrieves detailed information about a specific zone by its name.Methods in codes.thischwa.cf that return types with arguments of type ZoneEntityModifier and TypeMethodDescriptionCfDnsClient.zoneListAll()
Retrieves a list of all zones from the Cloudflare API.CfDnsClient.zoneListAll
(PagingRequest pagingRequest) Retrieves a list of all DNS zones using the provided paging request parameters.Methods in codes.thischwa.cf with parameters of type ZoneEntityModifier and TypeMethodDescriptionCfDnsClient.recordCreate
(ZoneEntity zone, RecordEntity rec) Creates a new DNS record in the specified zone using the Cloudflare API.CfDnsClient.recordCreate
(ZoneEntity zone, String name, int ttl, RecordType type, String content) Creates a DNS record in the specified DNS zone with the provided details.CfDnsClient.recordCreateSld
(ZoneEntity zone, String sld, int ttl, RecordType type, String content) Creates a new DNS record for a given second-level domain (SLD) within the specified zone.boolean
CfDnsClient.recordDelete
(ZoneEntity zone, RecordEntity rec) Deletes a DNS record of the specified type within a given zone on the Cloudflare API.boolean
CfDnsClient.recordDelete
(ZoneEntity zone, String id) Deletes a DNS record of the specified type within a given zone on the Cloudflare API.void
CfDnsClient.recordDeleteTypeIfExists
(ZoneEntity zone, String sld, RecordType... recordTypes) Deletes DNS records of a specific type within a given zone if they exist.CfDnsClient.recordUpdate
(ZoneEntity zone, RecordEntity rec) Updates an existing DNS record in a specified Cloudflare zone.CfDnsClient.sldInfo
(ZoneEntity zone, String sld, RecordType type) Retrieves detailed information about a specific second-level domain (SLD) record for a given zone and record type from the Cloudflare API.CfDnsClient.sldListAll
(ZoneEntity zone, String sld) Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.CfDnsClient.sldListAll
(ZoneEntity zone, String sld, PagingRequest pagingRequest) Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.