Regenerate Javadoc files for consistency
The Javadoc files have been regenerated to reflect updates in metadata including timestamps and headers. This ensures the documentation remains consistent with the latest source code revisions.
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>CfDnsClient (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf, class: CfDnsClient">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
@@ -97,19 +97,16 @@ loadScripts(document, 'script');</script>
|
||||
records and zones within the Cloudflare system, including creating, updating, retrieving, and
|
||||
deleting DNS records.
|
||||
|
||||
<p>Example:
|
||||
|
||||
<p>Example:
|
||||
<pre><code>
|
||||
// Create a new CfDnsClient instance
|
||||
CfDnsClient cfDnsClient = new CfDnsClient(
|
||||
"email@example.com",
|
||||
"yourApiKey"
|
||||
);
|
||||
|
||||
// Retrieve a zone
|
||||
ZoneEntity zone = cfDnsClient.zoneInfo("example.com");
|
||||
System.out.println("Zone ID: " + zone.getId());
|
||||
|
||||
// Retrieve records of a zone
|
||||
List<<a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model"><code>RecordEntity</code></a>> records = cfDnsClient.sldListAll(zone, "sld");
|
||||
records.forEach(record ->
|
||||
@@ -168,72 +165,148 @@ loadScripts(document, 'script');</script>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#recordCreate(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)" class="member-name-link">recordCreate</a><wbr>(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> name,
|
||||
int ttl,
|
||||
<a href="model/RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Creates a DNS record in the specified DNS zone with the provided details.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a
|
||||
href="#recordCreateSld(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)"
|
||||
class="member-name-link">recordCreateSld</a>
|
||||
<wbr>
|
||||
(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
int ttl,
|
||||
<a href="model/RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Creates a DNS record in the specified DNS zone with the provided details.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#recordDelete(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)" class="member-name-link">recordDelete</a><wbr>(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code>
|
||||
</div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="#recordDelete(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)"
|
||||
class="member-name-link">recordDelete</a>
|
||||
<wbr>
|
||||
(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a> rec)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#recordDelete(codes.thischwa.cf.model.ZoneEntity,java.lang.String)" class="member-name-link">recordDelete</a><wbr>(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code>boolean</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="#recordDelete(codes.thischwa.cf.model.ZoneEntity,java.lang.String)" class="member-name-link">recordDelete</a>
|
||||
<wbr>
|
||||
(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> id)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#recordDeleteTypeIfExists(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType...)" class="member-name-link">recordDeleteTypeIfExists</a><wbr>(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code>
|
||||
</div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a
|
||||
href="#recordDeleteTypeIfExists(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType...)"
|
||||
class="member-name-link">recordDeleteTypeIfExists</a>
|
||||
<wbr>
|
||||
(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="model/RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a>... recordTypes)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Deletes DNS records of a specific type within a given zone if they exist.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#recordUpdate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)" class="member-name-link">recordUpdate</a><wbr>(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="#recordUpdate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)"
|
||||
class="member-name-link">recordUpdate</a>
|
||||
<wbr>
|
||||
(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a> rec)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Updates an existing DNS record in a specified Cloudflare zone.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)" class="member-name-link">sldInfo</a><wbr>(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a
|
||||
href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="#sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)"
|
||||
class="member-name-link">sldInfo</a>
|
||||
<wbr>
|
||||
(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="model/RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Retrieves detailed information about a specific second-level domain (SLD) record for a given
|
||||
zone and record type from the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String)" class="member-name-link">sldListAll</a><wbr>(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html"
|
||||
title="Klasse oder Schnittstelle in java.util" class="external-link">List</a>
|
||||
<wbr><<a href="model/RecordEntity.html"
|
||||
title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String)" class="member-name-link">sldListAll</a>
|
||||
<wbr>
|
||||
(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS
|
||||
zone.
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.PagingRequest)" class="member-name-link">sldListAll</a><wbr>(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a
|
||||
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html"
|
||||
title="Klasse oder Schnittstelle in java.util" class="external-link">List</a>
|
||||
<wbr><<a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code>
|
||||
</div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a
|
||||
href="#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.PagingRequest)"
|
||||
class="member-name-link">sldListAll</a>
|
||||
<wbr>
|
||||
(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="model/PagingRequest.html" title="Klasse in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS
|
||||
zone.
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a></code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="#zoneInfo(java.lang.String)" class="member-name-link">zoneInfo</a>
|
||||
<wbr>
|
||||
(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> name)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
||||
<div class="block">Retrieves detailed information about a specific zone by its name.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a></code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#zoneInfo(java.lang.String)" class="member-name-link">zoneInfo</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> name)</code></div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a
|
||||
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html"
|
||||
title="Klasse oder Schnittstelle in java.util" class="external-link">List</a>
|
||||
<wbr><<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a>></code>
|
||||
</div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="#zoneListAll()" class="member-name-link">zoneListAll</a>()</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Retrieves detailed information about a specific zone by its name.</div>
|
||||
<div class="block">Retrieves a list of all zones from the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a>></code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#zoneListAll()" class="member-name-link">zoneListAll</a>()</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<code><a href="#zoneListAll(codes.thischwa.cf.model.PagingRequest)" class="member-name-link">zoneListAll</a>
|
||||
<wbr>
|
||||
(<a href="model/PagingRequest.html" title="Klasse in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code>
|
||||
</div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Retrieves a list of all zones from the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a>></code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#zoneListAll(codes.thischwa.cf.model.PagingRequest)" class="member-name-link">zoneListAll</a><wbr>(<a href="model/PagingRequest.html" title="Klasse in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Retrieves a list of all DNS zones using the provided paging request parameters.</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -262,9 +335,11 @@ loadScripts(document, 'script');</script>
|
||||
<dl class="notes">
|
||||
<dt>Parameter:</dt>
|
||||
<dd><code>authEmail</code> - The email address associated with the Cloudflare account, used for
|
||||
authentication.</dd>
|
||||
authentication.
|
||||
</dd>
|
||||
<dd><code>authKey</code> - The API key of the Cloudflare account, used as part of the authentication
|
||||
process.</dd>
|
||||
process.
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
@@ -279,9 +354,11 @@ loadScripts(document, 'script');</script>
|
||||
<dt>Parameter:</dt>
|
||||
<dd><code>baseUrl</code> - The base URL of the Cloudflare API to be used for requests.</dd>
|
||||
<dd><code>authEmail</code> - The email address associated with the Cloudflare account, used for
|
||||
authentication.</dd>
|
||||
authentication.
|
||||
</dd>
|
||||
<dd><code>authKey</code> - The API key of the Cloudflare account, used as part of the authentication
|
||||
process.</dd>
|
||||
process.
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
@@ -297,10 +374,15 @@ loadScripts(document, 'script');</script>
|
||||
<dl class="notes">
|
||||
<dt>Parameter:</dt>
|
||||
<dd><code>emptyResultThrowsException</code> - Specifies if an exception should be thrown when the API
|
||||
response is empty. Default is true.</dd>
|
||||
response is empty. Default is true.
|
||||
</dd>
|
||||
<dd><code>baseUrl</code> - The base URL for the Cloudflare API endpoint.</dd>
|
||||
<dd><code>authEmail</code> - The email associated with the Cloudflare account for authentication.</dd>
|
||||
<dd><code>authKey</code> - The API key for authenticating the client with Cloudflare services.</dd>
|
||||
<dd><code>authEmail</code> - The email associated with the Cloudflare account for
|
||||
authentication.
|
||||
</dd>
|
||||
<dd><code>authKey</code> - The API key for authenticating the client with Cloudflare
|
||||
services.
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
@@ -335,12 +417,14 @@ loadScripts(document, 'script');</script>
|
||||
<dl class="notes">
|
||||
<dt>Parameter:</dt>
|
||||
<dd><code>pagingRequest</code> - the pagination request object containing parameters for paging and
|
||||
filtering zone data</dd>
|
||||
filtering zone data
|
||||
</dd>
|
||||
<dt>Gibt zurück:</dt>
|
||||
<dd>a list of <code>ZoneEntity</code> objects representing the DNS zones retrieved from the API</dd>
|
||||
<dt>Löst aus:</dt>
|
||||
<dd><code><a href="CloudflareApiException.html" title="Klasse in codes.thischwa.cf">CloudflareApiException</a></code> - if there is an error during the API request or response
|
||||
processing</dd>
|
||||
processing
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
@@ -357,7 +441,8 @@ loadScripts(document, 'script');</script>
|
||||
<dd>A <a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model"><code>ZoneEntity</code></a> object that contains details of the specified zone.</dd>
|
||||
<dt>Löst aus:</dt>
|
||||
<dd><code><a href="CloudflareApiException.html" title="Klasse in codes.thischwa.cf">CloudflareApiException</a></code> - If an error occurs while making the API request or processing
|
||||
the response.</dd>
|
||||
the response.
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
@@ -367,14 +452,15 @@ loadScripts(document, 'script');</script>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><<a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></span> <span class="element-name">sldListAll</span><wbr><span class="parameters">(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld)</span>
|
||||
throws <span class="exceptions"><a href="CloudflareApiException.html" title="Klasse in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS
|
||||
zone.
|
||||
</div>
|
||||
<dl class="notes">
|
||||
<dt>Parameter:</dt>
|
||||
<dd><code>zone</code> - The DNS zone entity for which the SLD records are to be fetched.</dd>
|
||||
<dd><code>sld</code> - The second-level domain name for which the records are retrieved.</dd>
|
||||
<dt>Gibt zurück:</dt>
|
||||
<dd>A list of <code>RecordEntity</code> objects representing the DNS records associated with the
|
||||
provided SLD.</dd>
|
||||
<dd>A list of <code>RecordEntity</code> associated with the desired SLD.</dd>
|
||||
<dt>Löst aus:</dt>
|
||||
<dd><code><a href="CloudflareApiException.html" title="Klasse in codes.thischwa.cf">CloudflareApiException</a></code> - If an error occurs while interacting with the Cloudflare API.</dd>
|
||||
</dl>
|
||||
@@ -387,15 +473,16 @@ loadScripts(document, 'script');</script>
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="model/PagingRequest.html" title="Klasse in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</span>
|
||||
throws <span class="exceptions"><a href="CloudflareApiException.html" title="Klasse in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS
|
||||
zone.
|
||||
</div>
|
||||
<dl class="notes">
|
||||
<dt>Parameter:</dt>
|
||||
<dd><code>zone</code> - The DNS zone entity for which the SLD records are to be fetched.</dd>
|
||||
<dd><code>sld</code> - The second-level domain name for which the records are retrieved.</dd>
|
||||
<dd><code>pagingRequest</code> - The paging request.</dd>
|
||||
<dt>Gibt zurück:</dt>
|
||||
<dd>A list of <code>RecordEntity</code> objects representing the DNS records associated with the
|
||||
provided SLD.</dd>
|
||||
<dd>A list of <code>RecordEntity</code> associated with the desired SLD.</dd>
|
||||
<dt>Löst aus:</dt>
|
||||
<dd><code><a href="CloudflareApiException.html" title="Klasse in codes.thischwa.cf">CloudflareApiException</a></code> - If an error occurs while interacting with the Cloudflare API.</dd>
|
||||
</dl>
|
||||
@@ -416,18 +503,59 @@ loadScripts(document, 'script');</script>
|
||||
<dd><code>sld</code> - the second-level domain (SLD) for which the record information is requested</dd>
|
||||
<dd><code>type</code> - the type of DNS record (e.g., A, AAAA, CNAME) being queried</dd>
|
||||
<dt>Gibt zurück:</dt>
|
||||
<dd>the record entity containing detailed information about the requested SLD and record
|
||||
type</dd>
|
||||
<dd>the <a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model"><code>RecordEntity</code></a> of
|
||||
the requested SLD and record type
|
||||
</dd>
|
||||
<dt>Löst aus:</dt>
|
||||
<dd><code><a href="CloudflareApiException.html" title="Klasse in codes.thischwa.cf">CloudflareApiException</a></code> - if an error occurs during interaction with the Cloudflare API</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail"
|
||||
id="recordCreateSld(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)">
|
||||
<h3>recordCreateSld</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a
|
||||
href="model/RecordEntity.html"
|
||||
title="Klasse in codes.thischwa.cf.model">RecordEntity</a></span> <span class="element-name">recordCreateSld</span>
|
||||
<wbr>
|
||||
<span class="parameters">(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
int ttl,
|
||||
<a href="model/RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</span>
|
||||
throws <span class="exceptions"><a href="CloudflareApiException.html" title="Klasse in codes.thischwa.cf">CloudflareApiException</a></span>
|
||||
</div>
|
||||
<div class="block">Creates a DNS record in the specified DNS zone with the provided details.</div>
|
||||
<dl class="notes">
|
||||
<dt>Parameter:</dt>
|
||||
<dd><code>zone</code> - the DNS zone in which the record will be created</dd>
|
||||
<dd><code>sld</code> - the second-level domain (SLD) used for constructing the fully qualified domain
|
||||
name (FQDN)
|
||||
</dd>
|
||||
<dd><code>ttl</code> - the time-to-live (TTL) value for the DNS record</dd>
|
||||
<dd><code>type</code> - the type of the DNS record (e.g., A, AAAA, CNAME)</dd>
|
||||
<dd><code>content</code> - the content or value of the DNS record</dd>
|
||||
<dt>Gibt zurück:</dt>
|
||||
<dd>the created DNS record as a <a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model"><code>RecordEntity</code></a>
|
||||
object
|
||||
</dd>
|
||||
<dt>Löst aus:</dt>
|
||||
<dd><code><a href="CloudflareApiException.html"
|
||||
title="Klasse in codes.thischwa.cf">CloudflareApiException</a></code> - if an error occurs
|
||||
while interacting with the Cloudflare API
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="recordCreate(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)">
|
||||
<h3>recordCreate</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></span> <span class="element-name">recordCreate</span><wbr><span class="parameters">(<a href="model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> name,
|
||||
int ttl,
|
||||
<a href="model/RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</span>
|
||||
@@ -436,7 +564,7 @@ loadScripts(document, 'script');</script>
|
||||
<dl class="notes">
|
||||
<dt>Parameter:</dt>
|
||||
<dd><code>zone</code> - the DNS zone in which the record will be created</dd>
|
||||
<dd><code>sld</code> - the second-level domain (SLD) used for constructing the fully qualified domain name (FQDN)</dd>
|
||||
<dd><code>name</code> - the name of the DNS record (e.g., www.example.com)</dd>
|
||||
<dd><code>ttl</code> - the time-to-live (TTL) value for the DNS record</dd>
|
||||
<dd><code>type</code> - the type of the DNS record (e.g., A, AAAA, CNAME)</dd>
|
||||
<dd><code>content</code> - the content or value of the DNS record</dd>
|
||||
@@ -456,9 +584,12 @@ loadScripts(document, 'script');</script>
|
||||
<div class="block">Creates a new DNS record in the specified zone using the Cloudflare API.</div>
|
||||
<dl class="notes">
|
||||
<dt>Parameter:</dt>
|
||||
<dd><code>zone</code> - The zone entity where the record will be created. Contains details such as zone ID.</dd>
|
||||
<dd><code>zone</code> - The zone entity where the record will be created. Contains details such as zone
|
||||
ID.
|
||||
</dd>
|
||||
<dd><code>rec</code> - The record entity representing the DNS record to be created, including its
|
||||
attributes.</dd>
|
||||
attributes.
|
||||
</dd>
|
||||
<dt>Gibt zurück:</dt>
|
||||
<dd>The created record entity as returned by the Cloudflare API.</dd>
|
||||
<dt>Löst aus:</dt>
|
||||
@@ -480,8 +611,11 @@ loadScripts(document, 'script');</script>
|
||||
<dt>Gibt zurück:</dt>
|
||||
<dd><code>true</code> if the DNS record was successfully deleted; <code>false</code> otherwise.</dd>
|
||||
<dt>Löst aus:</dt>
|
||||
<dd><code><a href="CloudflareApiException.html" title="Klasse in codes.thischwa.cf">CloudflareApiException</a></code> - if there is an issue during the API communication or the request
|
||||
fails for any reason.</dd>
|
||||
<dd><code><a href="CloudflareApiException.html"
|
||||
title="Klasse in codes.thischwa.cf">CloudflareApiException</a></code> - if there is an issue during the
|
||||
API communication, or the
|
||||
request fails for any reason.
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
@@ -500,7 +634,8 @@ loadScripts(document, 'script');</script>
|
||||
<dd><code>true</code> if the DNS record was successfully deleted; <code>false</code> otherwise.</dd>
|
||||
<dt>Löst aus:</dt>
|
||||
<dd><code><a href="CloudflareApiException.html" title="Klasse in codes.thischwa.cf">CloudflareApiException</a></code> - if there is an issue during the API communication or the request
|
||||
fails for any reason.</dd>
|
||||
fails for any reason.
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
@@ -515,7 +650,8 @@ loadScripts(document, 'script');</script>
|
||||
<dt>Parameter:</dt>
|
||||
<dd><code>zone</code> - the zone entity containing the ID of the target zone</dd>
|
||||
<dd><code>rec</code> - the record entity containing the ID of the DNS record to be updated and its updated
|
||||
data</dd>
|
||||
data
|
||||
</dd>
|
||||
<dt>Gibt zurück:</dt>
|
||||
<dd>the updated record entity as returned by the Cloudflare API</dd>
|
||||
<dt>Löst aus:</dt>
|
||||
@@ -530,8 +666,9 @@ loadScripts(document, 'script');</script>
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="model/RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a>... recordTypes)</span>
|
||||
throws <span class="exceptions"><a href="CloudflareApiException.html" title="Klasse in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
||||
<div class="block">Deletes DNS records of a specific type within a given zone if they exist.
|
||||
If no record of the specified type exists, it logs this occurrence without throwing an exception.</div>
|
||||
<div class="block">Deletes DNS records of a specific type within a given zone if they exist. If no record of the
|
||||
specified type exists, it logs this occurrence without throwing an exception.
|
||||
</div>
|
||||
<dl class="notes">
|
||||
<dt>Parameter:</dt>
|
||||
<dd><code>zone</code> - The DNS zone entity in which the record exists.</dd>
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>CfRequest (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf, enum: CfRequest">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>CloudflareApiException (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf, class: CloudflareApiException">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>CloudflareNotFoundException (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf, class: CloudflareNotFoundException">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.CfDnsClient (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf, class: CfDnsClient">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Enum-Klasse codes.thischwa.cf.CfRequest (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf, enum: CfRequest">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.CloudflareApiException (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf, class: CloudflareApiException">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
@@ -91,72 +91,150 @@ loadScripts(document, 'script');</script>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="../model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../CfDnsClient.html#recordCreate(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)" class="member-name-link">recordCreate</a><wbr>(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> name,
|
||||
int ttl,
|
||||
<a href="../model/RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Creates a DNS record in the specified DNS zone with the provided details.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code>boolean</code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../CfDnsClient.html#recordDelete(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)" class="member-name-link">recordDelete</a><wbr>(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="../model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a> rec)</code></div>
|
||||
<div class="col-first even-row-color"><code><a href="../model/RecordEntity.html"
|
||||
title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code>
|
||||
</div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../CfDnsClient.html#recordCreateSld(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)"
|
||||
class="member-name-link">recordCreateSld</a>
|
||||
<wbr>
|
||||
(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
int ttl,
|
||||
<a href="../model/RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
||||
<div class="block">Creates a DNS record in the specified DNS zone with the provided details.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code>boolean</code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../CfDnsClient.html#recordDelete(codes.thischwa.cf.model.ZoneEntity,java.lang.String)" class="member-name-link">recordDelete</a><wbr>(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> id)</code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../CfDnsClient.html#recordDelete(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)"
|
||||
class="member-name-link">recordDelete</a>
|
||||
<wbr>
|
||||
(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="../model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a> rec)</code>
|
||||
</div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code>void</code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../CfDnsClient.html#recordDeleteTypeIfExists(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType...)" class="member-name-link">recordDeleteTypeIfExists</a><wbr>(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first even-row-color"><code>boolean</code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../CfDnsClient.html#recordDelete(codes.thischwa.cf.model.ZoneEntity,java.lang.String)"
|
||||
class="member-name-link">recordDelete</a>
|
||||
<wbr>
|
||||
(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> id)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code>void</code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../CfDnsClient.html#recordDeleteTypeIfExists(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType...)"
|
||||
class="member-name-link">recordDeleteTypeIfExists</a>
|
||||
<wbr>
|
||||
(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="../model/RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a>... recordTypes)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Deletes DNS records of a specific type within a given zone if they exist.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="../model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../CfDnsClient.html#recordUpdate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)" class="member-name-link">recordUpdate</a><wbr>(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first even-row-color"><code><a href="../model/RecordEntity.html"
|
||||
title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code>
|
||||
</div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../CfDnsClient.html#recordUpdate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)"
|
||||
class="member-name-link">recordUpdate</a>
|
||||
<wbr>
|
||||
(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="../model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a> rec)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Updates an existing DNS record in a specified Cloudflare zone.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code><a href="../model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../CfDnsClient.html#sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)" class="member-name-link">sldInfo</a><wbr>(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first odd-row-color"><code><a href="../model/RecordEntity.html"
|
||||
title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code>
|
||||
</div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../CfDnsClient.html#sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)"
|
||||
class="member-name-link">sldInfo</a>
|
||||
<wbr>
|
||||
(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="../model/RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Retrieves detailed information about a specific second-level domain (SLD) record for a given
|
||||
zone and record type from the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="../model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../CfDnsClient.html#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String)" class="member-name-link">sldListAll</a><wbr>(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first even-row-color"><code><a
|
||||
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html"
|
||||
title="Klasse oder Schnittstelle in java.util" class="external-link">List</a>
|
||||
<wbr><<a href="../model/RecordEntity.html"
|
||||
title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../CfDnsClient.html#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String)"
|
||||
class="member-name-link">sldListAll</a>
|
||||
<wbr>
|
||||
(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS
|
||||
zone.
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="../model/RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../CfDnsClient.html#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.PagingRequest)" class="member-name-link">sldListAll</a><wbr>(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first odd-row-color"><code><a
|
||||
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html"
|
||||
title="Klasse oder Schnittstelle in java.util" class="external-link">List</a>
|
||||
<wbr><<a href="../model/RecordEntity.html"
|
||||
title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../CfDnsClient.html#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.PagingRequest)"
|
||||
class="member-name-link">sldListAll</a>
|
||||
<wbr>
|
||||
(<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="../model/PagingRequest.html" title="Klasse in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../CfDnsClient.html#zoneInfo(java.lang.String)" class="member-name-link">zoneInfo</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> name)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Retrieves detailed information about a specific zone by its name.</div>
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS
|
||||
zone.
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a>></code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../CfDnsClient.html#zoneListAll()" class="member-name-link">zoneListAll</a>()</code></div>
|
||||
<div class="col-first even-row-color"><code><a href="../model/ZoneEntity.html"
|
||||
title="Klasse in codes.thischwa.cf.model">ZoneEntity</a></code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../CfDnsClient.html#zoneInfo(java.lang.String)" class="member-name-link">zoneInfo</a>
|
||||
<wbr>
|
||||
(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> name)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Retrieves a list of all zones from the Cloudflare API.</div>
|
||||
<div class="block">Retrieves detailed information about a specific zone by its name.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a>></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../CfDnsClient.html#zoneListAll(codes.thischwa.cf.model.PagingRequest)" class="member-name-link">zoneListAll</a><wbr>(<a href="../model/PagingRequest.html" title="Klasse in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../CfDnsClient.html#zoneListAll()" class="member-name-link">zoneListAll</a>()</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Retrieves a list of all zones from the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code><a
|
||||
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html"
|
||||
title="Klasse oder Schnittstelle in java.util" class="external-link">List</a>
|
||||
<wbr><<a href="../model/ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a>></code>
|
||||
</div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../CfDnsClient.html#zoneListAll(codes.thischwa.cf.model.PagingRequest)" class="member-name-link">zoneListAll</a>
|
||||
<wbr>
|
||||
(<a href="../model/PagingRequest.html" title="Klasse in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code>
|
||||
</div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Retrieves a list of all DNS zones using the provided paging request parameters.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.CloudflareNotFoundException (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf, class: CloudflareNotFoundException">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>AbstractEntity (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: AbstractEntity">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>AbstractMultipleResponse (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: AbstractMultipleResponse">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>AbstractResponse (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: AbstractResponse">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>AbstractSingleResponse (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: AbstractSingleResponse">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>PagingRequest (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: PagingRequest">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>RecordEntity (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: RecordEntity">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>RecordMultipleResponse (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: RecordMultipleResponse">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>RecordSingleResponse (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: RecordSingleResponse">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>RecordType (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, enum: RecordType">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>ResponseEntity (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, interface: ResponseEntity">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>ResponseResultInfo (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: ResponseResultInfo">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>ResultInfo (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: ResultInfo">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>ZoneEntity (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: ZoneEntity">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>ZoneMultipleResponse (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model, class: ZoneMultipleResponse">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.AbstractEntity (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: AbstractEntity">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.AbstractMultipleResponse (CloudflareDNS-java
|
||||
0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: AbstractMultipleResponse">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.AbstractResponse (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: AbstractResponse">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.AbstractSingleResponse (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: AbstractSingleResponse">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.PagingRequest (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: PagingRequest">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
@@ -80,7 +80,9 @@ loadScripts(document, 'script');</script>
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="../PagingRequest.html" title="Klasse in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS
|
||||
zone.
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a>></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#zoneListAll(codes.thischwa.cf.model.PagingRequest)" class="member-name-link">zoneListAll</a><wbr>(<a href="../PagingRequest.html" title="Klasse in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code></div>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.RecordEntity (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: RecordEntity">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
@@ -83,7 +83,8 @@ loadScripts(document, 'script');</script>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#recordCreate(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)" class="member-name-link">recordCreate</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> name,
|
||||
int ttl,
|
||||
<a href="../RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</code></div>
|
||||
@@ -91,16 +92,42 @@ loadScripts(document, 'script');</script>
|
||||
<div class="block">Creates a DNS record in the specified DNS zone with the provided details.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#recordUpdate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)" class="member-name-link">recordUpdate</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#recordCreateSld(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)"
|
||||
class="member-name-link">recordCreateSld</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
int ttl,
|
||||
<a href="../RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Creates a DNS record in the specified DNS zone with the provided details.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code>
|
||||
</div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#recordUpdate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)"
|
||||
class="member-name-link">recordUpdate</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a> rec)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Updates an existing DNS record in a specified Cloudflare zone.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)" class="member-name-link">sldInfo</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first even-row-color"><code><a href="../RecordEntity.html"
|
||||
title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code>
|
||||
</div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)"
|
||||
class="member-name-link">sldInfo</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="../RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Retrieves detailed information about a specific second-level domain (SLD) record for a given
|
||||
zone and record type from the Cloudflare API.</div>
|
||||
</div>
|
||||
@@ -114,14 +141,18 @@ loadScripts(document, 'script');</script>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String)" class="member-name-link">sldListAll</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS
|
||||
zone.
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.PagingRequest)" class="member-name-link">sldListAll</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="../PagingRequest.html" title="Klasse in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS
|
||||
zone.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption"><span>Methoden in <a href="../../package-summary.html">codes.thischwa.cf</a> mit Parametern vom Typ <a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></span></div>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.RecordMultipleResponse (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: RecordMultipleResponse">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.RecordSingleResponse (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: RecordSingleResponse">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Enum-Klasse codes.thischwa.cf.model.RecordType (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, enum: RecordType">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
@@ -77,25 +77,50 @@ loadScripts(document, 'script');</script>
|
||||
<div class="table-header col-last">Beschreibung</div>
|
||||
<div class="col-first even-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#recordCreate(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)" class="member-name-link">recordCreate</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> name,
|
||||
int ttl,
|
||||
<a href="../RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Creates a DNS record in the specified DNS zone with the provided details.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code>
|
||||
</div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#recordCreateSld(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)"
|
||||
class="member-name-link">recordCreateSld</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
int ttl,
|
||||
<a href="../RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Creates a DNS record in the specified DNS zone with the provided details.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code>void</code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#recordDeleteTypeIfExists(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType...)" class="member-name-link">recordDeleteTypeIfExists</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first even-row-color"><code>void</code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#recordDeleteTypeIfExists(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType...)"
|
||||
class="member-name-link">recordDeleteTypeIfExists</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="../RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a>... recordTypes)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Deletes DNS records of a specific type within a given zone if they exist.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)" class="member-name-link">sldInfo</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first odd-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code>
|
||||
</div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)"
|
||||
class="member-name-link">sldInfo</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="../RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Retrieves detailed information about a specific second-level domain (SLD) record for a given
|
||||
zone and record type from the Cloudflare API.</div>
|
||||
</div>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Schnittstelle codes.thischwa.cf.model.ResponseEntity (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, interface: ResponseEntity">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.ResponseResultInfo (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: ResponseResultInfo">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.ResultInfo (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: ResultInfo">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.ZoneEntity (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: ZoneEntity">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
@@ -106,58 +106,119 @@ loadScripts(document, 'script');</script>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#recordCreate(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)" class="member-name-link">recordCreate</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> name,
|
||||
int ttl,
|
||||
<a href="../RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Creates a DNS record in the specified DNS zone with the provided details.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code>boolean</code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#recordDelete(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)" class="member-name-link">recordDelete</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a> rec)</code></div>
|
||||
<div class="col-first even-row-color"><code><a href="../RecordEntity.html"
|
||||
title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code>
|
||||
</div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#recordCreateSld(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)"
|
||||
class="member-name-link">recordCreateSld</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
int ttl,
|
||||
<a href="../RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html"
|
||||
title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> content)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
||||
<div class="block">Creates a DNS record in the specified DNS zone with the provided details.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code>boolean</code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#recordDelete(codes.thischwa.cf.model.ZoneEntity,java.lang.String)" class="member-name-link">recordDelete</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#recordDelete(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)"
|
||||
class="member-name-link">recordDelete</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a> rec)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code>boolean</code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#recordDelete(codes.thischwa.cf.model.ZoneEntity,java.lang.String)"
|
||||
class="member-name-link">recordDelete</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> id)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code>void</code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#recordDeleteTypeIfExists(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType...)" class="member-name-link">recordDeleteTypeIfExists</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first odd-row-color"><code>void</code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#recordDeleteTypeIfExists(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType...)"
|
||||
class="member-name-link">recordDeleteTypeIfExists</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="../RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a>... recordTypes)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Deletes DNS records of a specific type within a given zone if they exist.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#recordUpdate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)" class="member-name-link">recordUpdate</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first even-row-color"><code><a href="../RecordEntity.html"
|
||||
title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code>
|
||||
</div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#recordUpdate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)"
|
||||
class="member-name-link">recordUpdate</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a> rec)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Updates an existing DNS record in a specified Cloudflare zone.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)" class="member-name-link">sldInfo</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first odd-row-color"><code><a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a></code>
|
||||
</div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)"
|
||||
class="member-name-link">sldInfo</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="../RecordType.html" title="Enum-Klasse in codes.thischwa.cf.model">RecordType</a> type)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Retrieves detailed information about a specific second-level domain (SLD) record for a given
|
||||
zone and record type from the Cloudflare API.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String)" class="member-name-link">sldListAll</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first even-row-color"><code><a
|
||||
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html"
|
||||
title="Klasse oder Schnittstelle in java.util" class="external-link">List</a>
|
||||
<wbr><<a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code>
|
||||
</div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String)"
|
||||
class="member-name-link">sldListAll</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS
|
||||
zone.
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="Klasse oder Schnittstelle in java.util" class="external-link">List</a><wbr><<a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
||||
<div class="col-second even-row-color"><span class="type-name-label">CfDnsClient.</span><code><a href="../../CfDnsClient.html#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.PagingRequest)" class="member-name-link">sldListAll</a><wbr>(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<div class="col-first odd-row-color"><code><a
|
||||
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html"
|
||||
title="Klasse oder Schnittstelle in java.util" class="external-link">List</a>
|
||||
<wbr><<a href="../RecordEntity.html" title="Klasse in codes.thischwa.cf.model">RecordEntity</a>></code>
|
||||
</div>
|
||||
<div class="col-second odd-row-color"><span class="type-name-label">CfDnsClient.</span><code><a
|
||||
href="../../CfDnsClient.html#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.PagingRequest)"
|
||||
class="member-name-link">sldListAll</a>
|
||||
<wbr>
|
||||
(<a href="../ZoneEntity.html" title="Klasse in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="Klasse oder Schnittstelle in java.lang" class="external-link">String</a> sld,
|
||||
<a href="../PagingRequest.html" title="Klasse in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS
|
||||
zone.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Klasse codes.thischwa.cf.model.ZoneMultipleResponse (CloudflareDNS-java 0.2.0-SNAPSHOT
|
||||
API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model, class: ZoneMultipleResponse">
|
||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>codes.thischwa.cf.model (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf.model">
|
||||
<meta name="generator" content="javadoc/PackageWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>codes.thischwa.cf.model Klassenhierarchie (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="tree: package: codes.thischwa.cf.model">
|
||||
<meta name="generator" content="javadoc/PackageTreeWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Package codes.thischwa.cf.model (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf.model">
|
||||
<meta name="generator" content="javadoc/PackageUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>codes.thischwa.cf (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="declaration: package: codes.thischwa.cf">
|
||||
<meta name="generator" content="javadoc/PackageWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>codes.thischwa.cf Klassenhierarchie (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="tree: package: codes.thischwa.cf">
|
||||
<meta name="generator" content="javadoc/PackageTreeWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (21) on Tue Apr 22 18:16:59 CEST 2025 -->
|
||||
<!-- Generated by javadoc (21) on Wed Apr 23 16:29:51 CEST 2025 -->
|
||||
<title>Verwendungsweise von Package codes.thischwa.cf (CloudflareDNS-java 0.2.0-SNAPSHOT API)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2025-04-22">
|
||||
<meta name="dc.created" content="2025-04-23">
|
||||
<meta name="description" content="use: package: codes.thischwa.cf">
|
||||
<meta name="generator" content="javadoc/PackageUseWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
|
||||
Reference in New Issue
Block a user