Skip to content

Commit

Permalink
chore: Update java-dns overview links (#8814)
Browse files Browse the repository at this point in the history
* chore: Update java-dns overview links

* chore: Fix format issues

* chore: Add api_description to repo-metadata
  • Loading branch information
lqiu96 committed Nov 18, 2022
1 parent d8e47d3 commit c35a763
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions java-dns/.repo-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"name_pretty": "Cloud DNS",
"product_documentation": "https://cloud.google.com/dns",
"client_documentation": "https://cloud.google.com/java/docs/reference/google-cloud-dns/latest/overview",
"api_description": "provides methods that you can use to manage DNS for your applications.",
"issue_tracker": "https://issuetracker.google.com/savedsearches/559772",
"release_level": "stable",
"language": "java",
Expand Down
10 changes: 5 additions & 5 deletions java-dns/src/main/java/com/google/cloud/dns/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
*
* <p>The first snippet shows how to create a zone resource. The complete source code can be found
* on <a href=
* "https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/dns/snippets/CreateAndListZones.java">
* CreateAndListZones.java</a>. Note that you need to replace the {@code domainName} with a domain
* name that you own and the ownership of which you verified with Google.
* "https://github.com/googleapis/google-cloud-java/blob/main/google-cloud-examples/src/main/java/com/google/cloud/examples/dns/snippets/CreateZone.java">
* CreateZone.java</a>. Note that you need to replace the {@code domainName} with a domain name that
* you own and the ownership of which you verified with Google.
*
* <pre>{@code
* Dns dns = DnsOptions.getDefaultInstance().getService();
Expand All @@ -36,8 +36,8 @@
*
* <p>The second example shows how to create records inside a zone. The complete code can be found
* on <a href=
* "https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/dns/snippets/CreateAndListDnsRecords.java">
* CreateAndListDnsRecords.java</a>.
* "https://github.com/googleapis/google-cloud-java/blob/main/google-cloud-examples/src/main/java/com/google/cloud/examples/dns/snippets/CreateOrUpdateRecordSets.java">
* CreateOrUpdateRecordSets.java</a>.
*
* <pre>{@code
* Dns dns = DnsOptions.getDefaultInstance().getService();
Expand Down

0 comments on commit c35a763

Please sign in to comment.