Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: link reference docs at c.g.c/cpp/docs/reference #11799

Merged
merged 4 commits into from
Jun 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3582,14 +3582,14 @@ releases. The relevant notes are:
[architecture design]: /ARCHITECTURE.md#the-client-classes
[architecture-connection]: /ARCHITECTURE.md#the-connection-classes
[bq-analytics-hub]: https://cloud.google.com/bigquery/docs/analytics-hub-introduction
[cbt-dataclient-migration]: https://googleapis.dev/cpp/google-cloud-bigtable/latest/migrating-from-dataclient.html
[cbt-dataclient-migration]: https://cloud.google.com/cpp/docs/reference/bigtable/latest/migrating-from-dataclient
[cloud bigtable admin api]: https://cloud.google.com/bigtable/docs/reference/admin/rpc
[cloud tasks]: /google/cloud/tasks/README.md
[cloud-debugger-deprecated]: https://cloud.google.com/debugger/docs/deprecations
[github-cpp-common]: https://github.com/googleapis/google-cloud-cpp-common
[google.pubsub.v1.schemaserviceclient]: https://cloud.google.com/pubsub/docs/reference/rpc/google.pubsub.v1#google.pubsub.v1.SchemaService
[guac-dox]: https://googleapis.dev/cpp/google-cloud-common/latest/credentials_8h.html
[howto-mock-data-api]: https://googleapis.dev/cpp/google-cloud-bigtable/latest/bigtable-mocking.html
[guac-dox]: https://cloud.google.com/cpp/docs/reference/common/latest/group__guac
[howto-mock-data-api]: https://cloud.google.com/cpp/docs/reference/bigtable/latest/bigtable-mocking
[iam-conditions-link]: https://cloud.google.com/iam/docs/conditions-overview
[iam-policy-link]: https://cloud.google.com/iam/docs/manage-access-other-resources
[issue-2567]: https://github.com/googleapis/google-cloud-cpp/issues/2567
Expand All @@ -3600,6 +3600,6 @@ releases. The relevant notes are:
[pub/sub lite]: /google/cloud/pubsublite/README.md
[resource-types-with-policies]: https://cloud.google.com/iam/docs/resource-types-with-policies
[secret manager]: /google/cloud/secretmanager/README.md
[storage-dox-link]: https://googleapis.dev/cpp/google-cloud-storage/latest/
[storage-mocking-link]: https://googleapis.dev/cpp/google-cloud-storage/latest/storage-mocking.html
[storage-dox-link]: https://cloud.google.com/cpp/docs/reference/storage/latest/
[storage-mocking-link]: https://cloud.google.com/cpp/docs/reference/storage/latest/storage-mocking
[vcpkg-github]: https://github.com/microsoft/vcpkg
204 changes: 102 additions & 102 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ci/generate-markdown/generate-readme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ file="README.md"
description="$(sed -n '1 s/# \(.*\) C++ Client Library/\1/p' "google/cloud/${library}/README.md")"
printf -- '- [%s](google/cloud/%s/README.md)\n' "${description}" "${library}"
printf -- ' [[quickstart]](google/cloud/%s/quickstart/README.md)\n' "${library}"
printf -- ' [[reference]](https://googleapis.dev/cpp/google-cloud-%s/latest)\n' "${library}"
printf -- ' [[reference]](https://cloud.google.com/cpp/docs/reference/%s/latest)\n' "${library}"
done
sed -n '/<!-- inject-GA-libraries-end -->/,$p' "${file}"
) | sponge "${file}"
2 changes: 1 addition & 1 deletion generator/internal/scaffold_generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ this library.
* Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/$site_root$
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-$library$/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/$library$/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/$library$
)""";
google::protobuf::io::OstreamOutputStream output(&os);
Expand Down
2 changes: 1 addition & 1 deletion generator/internal/scaffold_generator_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ TEST_F(ScaffoldGenerator, Readme) {
auto const actual = std::move(os).str();
EXPECT_THAT(actual, HasSubstr(R"""(
[cloud-service-docs]: https://cloud.google.com/test
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-test/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/test/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/test
)"""));
EXPECT_THAT(actual, Not(HasSubstr("$construction$")));
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ as well as how to properly format your code.

Apache 2.0; see [`LICENSE`](/LICENSE) for details.

[doxygen-link]: https://googleapis.dev/cpp/google-cloud-common/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/common/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud
2 changes: 1 addition & 1 deletion google/cloud/accessapproval/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/access-approval
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-accessapproval/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/accessapproval/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/accessapproval
2 changes: 1 addition & 1 deletion google/cloud/accesscontextmanager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/access-context-manager
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-accesscontextmanager/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/accesscontextmanager/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/accesscontextmanager
2 changes: 1 addition & 1 deletion google/cloud/advisorynotifications/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/advisory-notifications
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-advisorynotifications/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/advisorynotifications/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/advisorynotifications
2 changes: 1 addition & 1 deletion google/cloud/alloydb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/alloydb
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-alloydb/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/alloydb/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/alloydb
2 changes: 1 addition & 1 deletion google/cloud/apigateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/api-gateway
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-apigateway/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/apigateway/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/apigateway
2 changes: 1 addition & 1 deletion google/cloud/apigeeconnect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/apigee/docs/hybrid/
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-apigeeconnect/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/apigeeconnect/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/apigeeconnect
2 changes: 1 addition & 1 deletion google/cloud/apikeys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/api-keys
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-apikeys/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/apikeys/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/apikeys
2 changes: 1 addition & 1 deletion google/cloud/appengine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/appengine/docs/admin-api
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-appengine/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/appengine/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/appengine
2 changes: 1 addition & 1 deletion google/cloud/artifactregistry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/artifact-registry
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-artifactregistry/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/artifactregistry/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/artifactregistry
2 changes: 1 addition & 1 deletion google/cloud/asset/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/asset-inventory
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-asset/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/asset/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/asset
2 changes: 1 addition & 1 deletion google/cloud/assuredworkloads/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/assured-workloads
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-assuredworkloads/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/assuredworkloads/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/assuredworkloads
2 changes: 1 addition & 1 deletion google/cloud/automl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/automl
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-automl/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/automl/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/automl
2 changes: 1 addition & 1 deletion google/cloud/baremetalsolution/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ int main(int argc, char* argv[]) try {

[cloud-service-docs]: https://cloud.google.com/bare-metal/docs
[cloud-service-root]: https://cloud.google.com/bare-metal
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-baremetalsolution/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/baremetalsolution/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/baremetalsolution
2 changes: 1 addition & 1 deletion google/cloud/batch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/batch
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-batch/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/batch/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/batch
2 changes: 1 addition & 1 deletion google/cloud/beyondcorp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/beyondcorp
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-beyondcorp/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/beyondcorp/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/beyondcorp
2 changes: 1 addition & 1 deletion google/cloud/bigquery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-bigquery-docs]: https://cloud.google.com/bigquery/docs/
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-bigquery/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/bigquery/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/bigquery
2 changes: 1 addition & 1 deletion google/cloud/bigtable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,5 +151,5 @@ int main(int argc, char* argv[]) try {
<!-- inject-quickstart-end -->

[cloud-bigtable-docs]: https://cloud.google.com/bigtable/docs/
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-bigtable/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/bigtable/latest/
[howto-setup-dev-workstation]: /doc/contributor/howto-guide-setup-development-workstation.md
8 changes: 4 additions & 4 deletions google/cloud/bigtable/examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ $ ./table_admin_iam_policy_snippets get-iam-policy <project-id> <instance-id> <t
[cbt-doc-backups]: https://cloud.google.com/bigtable/docs/backups
[cbt-doc-filters]: https://cloud.google.com/bigtable/docs/filters
[cbt-doc-quickstart]: https://cloud.google.com/bigtable/docs/quickstart-cbt
[doxygen-grpc]: https://googleapis.dev/cpp/google-cloud-bigtable/latest/bigtable-samples-grpc-credentials.html
[doxygen-hello-world]: https://googleapis.dev/cpp/google-cloud-bigtable/latest/bigtable-hello-world.html
[doxygen-instance-admin]: https://googleapis.dev/cpp/google-cloud-bigtable/latest/bigtable-hello-instance-admin.html
[doxygen-table-admin]: https://googleapis.dev/cpp/google-cloud-bigtable/latest/bigtable-hello-table-admin.html
[doxygen-grpc]: https://cloud.google.com/cpp/docs/reference/bigtable/latest/bigtable-samples-grpc-credentials
[doxygen-hello-world]: https://cloud.google.com/cpp/docs/reference/bigtable/latest/bigtable-hello-world
[doxygen-instance-admin]: https://cloud.google.com/cpp/docs/reference/bigtable/latest/bigtable-hello-instance-admin
[doxygen-table-admin]: https://cloud.google.com/cpp/docs/reference/bigtable/latest/bigtable-hello-table-admin
[grpc-roots-pem-bug]: https://github.com/grpc/grpc/issues/16571
[hello-world-code]: bigtable_hello_world.cc
[instance-admin-code]: bigtable_hello_instance_admin.cc
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/billing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/billing
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-billing/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/billing/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/billing
2 changes: 1 addition & 1 deletion google/cloud/binaryauthorization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/binary-authorization
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-binaryauthorization/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/binaryauthorization/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/binaryauthorization
2 changes: 1 addition & 1 deletion google/cloud/certificatemanager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/certificate-manager
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-certificatemanager/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/certificatemanager/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/certificatemanager
2 changes: 1 addition & 1 deletion google/cloud/channel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/channel
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-channel/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/channel/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/channel
2 changes: 1 addition & 1 deletion google/cloud/cloudbuild/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/build
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-cloudbuild/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/cloudbuild/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/cloudbuild
2 changes: 1 addition & 1 deletion google/cloud/composer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ int main(int argc, char* argv[]) try {

[cloud-service]: https://cloud.google.com/composer
[cloud-service-docs]: https://cloud.google.com/composer/docs
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-composer/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/composer/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/composer
2 changes: 1 addition & 1 deletion google/cloud/compute/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/compute
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-compute/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/compute/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/compute
2 changes: 1 addition & 1 deletion google/cloud/confidentialcomputing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/confidential-computing
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-confidentialcomputing/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/confidentialcomputing/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/confidentialcomputing
2 changes: 1 addition & 1 deletion google/cloud/connectors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/apigee/docs/api-platform/connectors/about-connectors
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-connectors/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/connectors/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/connectors
2 changes: 1 addition & 1 deletion google/cloud/contactcenterinsights/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/contact-center/insights/docs
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-contactcenterinsights/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/contactcenterinsights/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/contactcenterinsights
2 changes: 1 addition & 1 deletion google/cloud/container/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/kubernetes-engine/docs/
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-container/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/container/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/container
2 changes: 1 addition & 1 deletion google/cloud/containeranalysis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/container-analysis
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-containeranalysis/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/containeranalysis/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/containeranalysis
3 changes: 2 additions & 1 deletion google/cloud/credentials.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ class CredentialsVisitor;
*
* [IAM overview]: https://cloud.google.com/iam/docs/overview
* [IAM Service]: https://cloud.google.com/iam/docs
* [C++ IAM client library]: https://googleapis.dev/cpp/google-cloud-iam/latest/
* [C++ IAM client library]:
* https://cloud.google.com/cpp/docs/reference/iam/latest/
*
* @ingroup guac
*/
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/datacatalog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/data-catalog
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-datacatalog/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/datacatalog/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/datacatalog
2 changes: 1 addition & 1 deletion google/cloud/datamigration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/database-migration
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-datamigration/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/datamigration/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/datamigration
2 changes: 1 addition & 1 deletion google/cloud/dataplex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ int main(int argc, char* argv[]) try {
- Detailed header comments in our [public `.h`][source-link] files

[cloud-service-docs]: https://cloud.google.com/dataplex
[doxygen-link]: https://googleapis.dev/cpp/google-cloud-dataplex/latest/
[doxygen-link]: https://cloud.google.com/cpp/docs/reference/dataplex/latest/
[source-link]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/dataplex
Loading