Skip to content

Commit 34fed49

Browse files
chore: Update broken links in Cloud DNS
1 parent 43b1557 commit 34fed49

File tree

6 files changed

+17
-16
lines changed

6 files changed

+17
-16
lines changed

google-cloud-dns/OVERVIEW.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Google Cloud DNS is a high-performance, resilient, global DNS service that
44
provides a cost-effective way to make your applications and services
55
available to your users. This programmable, authoritative DNS service can
66
be used to easily publish and manage DNS records using the same
7-
infrastructure relied upon by Google. To learn more, read [What is Google
8-
Cloud DNS?](https://cloud.google.com/dns/what-is-cloud-dns).
7+
infrastructure relied upon by Google. To learn more, read [Cloud DNS
8+
Overview](https://cloud.google.com/dns/docs/overview).
99

1010
The goal of google-cloud is to provide an API that is comfortable to Rubyists.
1111
Your authentication credentials are detected automatically in Google Cloud

google-cloud-dns/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# google-cloud-dns
22

3-
[Google Cloud DNS](https://cloud.google.com/dns/) ([docs](https://cloud.google.com/dns/docs)) is a high-performance, resilient, global DNS service that provides a cost-effective way to make your applications and services available to your users. This programmable, authoritative DNS service can be used to easily publish and manage DNS records using the same infrastructure relied upon by Google. To learn more, read [What is Google Cloud DNS?](https://cloud.google.com/dns/what-is-cloud-dns).
3+
[Google Cloud DNS](https://cloud.google.com/dns/) ([docs](https://cloud.google.com/dns/docs)) is a high-performance, resilient, global DNS service that provides a cost-effective way to make your applications and services available to your users.
4+
This programmable, authoritative DNS service can be used to easily publish and manage DNS records using the same infrastructure relied upon by Google.
45

56
- [google-cloud-dns API documentation](https://googleapis.dev/ruby/google-cloud-dns/latest)
67
- [google-cloud-dns on RubyGems](https://rubygems.org/gems/google-cloud-dns)

google-cloud-dns/lib/google/cloud/dns.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ module Cloud
2727
# provides a cost-effective way to make your applications and services
2828
# available to your users. This programmable, authoritative DNS service can
2929
# be used to easily publish and manage DNS records using the same
30-
# infrastructure relied upon by Google. To learn more, read [What is Google
31-
# Cloud DNS?](https://cloud.google.com/dns/what-is-cloud-dns).
30+
# infrastructure relied upon by Google. To learn more, read [Cloud
31+
# DNS Overview](https://cloud.google.com/dns/docs/overview).
3232
#
3333
# See {file:OVERVIEW.md Google Cloud DNS Overview}.
3434
#

google-cloud-dns/lib/google/cloud/dns/record.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class Record
5252

5353
##
5454
# The identifier of a [supported record type
55-
# ](https://cloud.google.com/dns/what-is-cloud-dns#supported_record_types).
55+
# ](https://cloud.google.com/dns/docs/records-overview).
5656
# For example: `A`, `AAAA`, `CNAME`, `MX`, or `TXT`.
5757
#
5858
# @return [String]
@@ -83,7 +83,7 @@ class Record
8383
# @param [String] name The owner of the record. For example:
8484
# `example.com.`.
8585
# @param [String] type The identifier of a [supported record
86-
# type](https://cloud.google.com/dns/what-is-cloud-dns).
86+
# type](https://cloud.google.com/dns/docs/records-overview).
8787
# For example: `A`, `AAAA`, `CNAME`, `MX`, or `TXT`.
8888
# @param [Integer] ttl The number of seconds that the record can be
8989
# cached by resolvers.

google-cloud-dns/lib/google/cloud/dns/zone.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def changes token: nil, max: nil, order: nil
256256
# @param [String] name Return only records with this domain or subdomain
257257
# name.
258258
# @param [String] type Return only records with this [record
259-
# type](https://cloud.google.com/dns/what-is-cloud-dns). If present,
259+
# type](https://cloud.google.com/dns/docs/records-overview). If present,
260260
# the `name` parameter must also be present.
261261
# @param [String] token A previously-returned page token representing
262262
# part of the larger set of results to view.
@@ -505,7 +505,7 @@ def update additions = [], deletions = [], skip_soa: nil, soa_serial: nil
505505
# @param [String] name The owner of the record. For example:
506506
# `example.com.`.
507507
# @param [String] type The identifier of a [supported record
508-
# type](https://cloud.google.com/dns/what-is-cloud-dns).
508+
# type](https://cloud.google.com/dns/docs/records-overview).
509509
# For example: `A`, `AAAA`, `CNAME`, `MX`, or `TXT`.
510510
# @param [Integer] ttl The number of seconds that the record can be
511511
# cached by resolvers.
@@ -547,7 +547,7 @@ def add name, type, ttl, data, skip_soa: nil, soa_serial: nil
547547
# @param [String] name The owner of the record. For example:
548548
# `example.com.`.
549549
# @param [String] type The identifier of a [supported record
550-
# type](https://cloud.google.com/dns/what-is-cloud-dns).
550+
# type](https://cloud.google.com/dns/docs/records-overview).
551551
# For example: `A`, `AAAA`, `CNAME`, `MX`, or `TXT`.
552552
# @param [Boolean] skip_soa Do not automatically update the SOA record
553553
# serial number. See {#update} for details.
@@ -581,7 +581,7 @@ def remove name, type, skip_soa: nil, soa_serial: nil
581581
# @param [String] name The owner of the record. For example:
582582
# `example.com.`.
583583
# @param [String] type The identifier of a [supported record
584-
# type](https://cloud.google.com/dns/what-is-cloud-dns).
584+
# type](https://cloud.google.com/dns/docs/records-overview).
585585
# For example: `A`, `AAAA`, `CNAME`, `MX`, or `TXT`.
586586
# @param [Integer] ttl The number of seconds that the record can be
587587
# cached by resolvers.
@@ -627,7 +627,7 @@ def to_zonefile
627627
# @param [String] name The owner of the record. For example:
628628
# `example.com.`.
629629
# @param [String] type The identifier of a [supported record
630-
# type](https://cloud.google.com/dns/what-is-cloud-dns).
630+
# type](https://cloud.google.com/dns/docs/records-overview).
631631
# For example: `A`, `AAAA`, `CNAME`, `MX`, or `TXT`.
632632
# @param [Boolean] skip_soa Do not automatically update the SOA record
633633
# serial number. See {#update} for details.

google-cloud-dns/lib/google/cloud/dns/zone/transaction.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def initialize zone
5757
# @param [String] name The owner of the record. For example:
5858
# `example.com.`.
5959
# @param [String] type The identifier of a [supported record
60-
# type](https://cloud.google.com/dns/what-is-cloud-dns).
60+
# type](https://cloud.google.com/dns/docs/records-overview).
6161
# For example: `A`, `AAAA`, `CNAME`, `MX`, or `TXT`.
6262
# @param [Integer] ttl The number of seconds that the record can be
6363
# cached by resolvers.
@@ -88,7 +88,7 @@ def add name, type, ttl, data
8888
# @param [String] name The owner of the record. For example:
8989
# `example.com.`.
9090
# @param [String] type The identifier of a [supported record
91-
# type](https://cloud.google.com/dns/what-is-cloud-dns).
91+
# type](https://cloud.google.com/dns/docs/records-overview).
9292
# For example: `A`, `AAAA`, `CNAME`, `MX`, or `TXT`.
9393
#
9494
# @example
@@ -111,7 +111,7 @@ def remove name, type
111111
# @param [String] name The owner of the record. For example:
112112
# `example.com.`.
113113
# @param [String] type The identifier of a [supported record
114-
# type](https://cloud.google.com/dns/what-is-cloud-dns).
114+
# type](https://cloud.google.com/dns/docs/records-overview).
115115
# For example: `A`, `AAAA`, `CNAME`, `MX`, or `TXT`.
116116
# @param [Integer] ttl The number of seconds that the record can be
117117
# cached by resolvers.
@@ -146,7 +146,7 @@ def replace name, type, ttl, data
146146
# @param [String] name The owner of the record. For example:
147147
# `example.com.`.
148148
# @param [String] type The identifier of a [supported record
149-
# type](https://cloud.google.com/dns/what-is-cloud-dns).
149+
# type](https://cloud.google.com/dns/docs/records-overview).
150150
# For example: `A`, `AAAA`, `CNAME`, `MX`, or `TXT`.
151151
# @yield [record] a block yielding each matching record
152152
# @yieldparam [Record] record the record to be modified

0 commit comments

Comments
 (0)