diff --git a/ci/cloudbuild/builds/generate-libraries.sh b/ci/cloudbuild/builds/generate-libraries.sh index 3772e80de3a2b..f24f299b39581 100755 --- a/ci/cloudbuild/builds/generate-libraries.sh +++ b/ci/cloudbuild/builds/generate-libraries.sh @@ -18,7 +18,9 @@ set -euo pipefail source "$(dirname "$0")/../../lib/init.sh" source module ci/cloudbuild/builds/lib/bazel.sh +source module ci/cloudbuild/builds/lib/features.sh source module ci/cloudbuild/builds/lib/git.sh +source module ci/lib/io.sh bazel_output_base="$(bazel info output_base)" @@ -115,6 +117,11 @@ else io::log_yellow "Skipping update of protobuf lists/deps." fi +io::log_h2 "Running doxygen landing-page updates:" +time { + features::libraries | xargs -P "$(nproc)" -n 1 ci/generate-markdown/update-library-landing-dox.sh +} + io::log_h2 "Highlight generated code differences" # We use `--compact-summary` because in almost all cases the delta is at # least hundreds of lines long, and often it is thousands of lines long. The diff --git a/generator/integration_tests/golden/doc/environment-variables.dox b/generator/integration_tests/golden/doc/environment-variables.dox new file mode 100644 index 0000000000000..6b10a6bb88d36 --- /dev/null +++ b/generator/integration_tests/golden/doc/environment-variables.dox @@ -0,0 +1,44 @@ +/*! +@page golden-env Environment Variables + +A number of environment variables can be used to configure the behavior of +the library. There are also functions to configure this behavior in code. The +environment variables are convenient when troubleshooting problems. + +@section golden-env-endpoint Endpoint Overrides + + + + +@see google::cloud::EndpointOption + +@section golden-env-logging Logging + +`GOOGLE_CLOUD_CPP_ENABLE_TRACING=rpc`: turns on tracing for most gRPC +calls. The library injects an additional Stub decorator that prints each gRPC +request and response. Unless you have configured your own logging backend, +you should also set `GOOGLE_CLOUD_CPP_ENABLE_CLOG` to produce any output on +the program's console. + +@see google::cloud::LoggingComponentsOption + +`GOOGLE_CLOUD_CPP_TRACING_OPTIONS=...`: modifies the behavior of gRPC tracing, +including whether messages will be output on multiple lines, or whether +string/bytes fields will be truncated. + +@see google::cloud::GrpcTracingOptionsOption + +`GOOGLE_CLOUD_CPP_ENABLE_CLOG=yes`: turns on logging in the library, basically +the library always "logs" but the logging infrastructure has no backend to +actually print anything until the application sets a backend or they set this +environment variable. + +@see google::cloud::LogBackend +@see google::cloud::LogSink + +@section golden-env-project Setting the Default Project + +`GOOGLE_CLOUD_PROJECT=...`: is used in examples and integration tests to +configure the GCP project. This has no effect in the library. + +*/ diff --git a/generator/integration_tests/golden/doc/options.dox b/generator/integration_tests/golden/doc/options.dox new file mode 100644 index 0000000000000..4edf4d140325a --- /dev/null +++ b/generator/integration_tests/golden/doc/options.dox @@ -0,0 +1,10 @@ +/*! +@defgroup generator-integration_tests-golden-options Test Deprecated Configuration Options + +This library uses the same mechanism (`google::cloud::Options`) and the common +[options](@ref options) as all other C++ client libraries for its configuration. +Some `*Option` classes, which are only used in this library, are documented in +this page. + +@see @ref options - for an overview of client library configuration. +*/ diff --git a/generator/integration_tests/golden/doc/override-authentication.dox b/generator/integration_tests/golden/doc/override-authentication.dox new file mode 100644 index 0000000000000..ce3ea26a9a245 --- /dev/null +++ b/generator/integration_tests/golden/doc/override-authentication.dox @@ -0,0 +1,27 @@ +/*! +@page golden-override-authentication How to Override the Authentication Credentials + +Unless otherwise configured, the client libraries use +[Application Default Credentials] to authenticate with Google Cloud Services. +While this works for most applications, in some cases you may need to override +this default. You can do so by providing the +[UnifiedCredentialsOption](@ref google::cloud::UnifiedCredentialsOption) +The following example shows how to explicitly load a service account key file: + + + + +Keep in mind that we chose this as an example because it is relatively easy to +understand. Consult the [Best practices for managing service account keys] +guide for more details. + +@see @ref guac - for more information on the factory functions to create +`google::cloud::Credentials` objects. + +[Best practices for managing service account keys]: https://cloud.google.com/iam/docs/best-practices-for-managing-service-account-keys +[Application Default Credentials]: https://cloud.google.com/docs/authentication#adc + +*/ + +// +// diff --git a/generator/integration_tests/golden/doc/override-endpoint.dox b/generator/integration_tests/golden/doc/override-endpoint.dox new file mode 100644 index 0000000000000..939e142a78412 --- /dev/null +++ b/generator/integration_tests/golden/doc/override-endpoint.dox @@ -0,0 +1,15 @@ +/*! +@page golden-override-endpoint How to Override the Default Endpoint + +In some cases, you may need to override the default endpoint used by the client +library. Use the +[EndpointOption](@ref google::cloud::EndpointOption) when initializing the +client library to change this default. + + + + +*/ + +// +// diff --git a/generator/integration_tests/golden/doc/override-retry-policies.dox b/generator/integration_tests/golden/doc/override-retry-policies.dox new file mode 100644 index 0000000000000..980e7ada98c89 --- /dev/null +++ b/generator/integration_tests/golden/doc/override-retry-policies.dox @@ -0,0 +1,83 @@ +/*! +@page golden-override-retry Override Retry, Backoff, and Idempotency Policies + +When it is safe to do so, the library automatically retries requests that fail +due to a transient error. The library then uses [exponential backoff] to backoff +before trying again. Which operations are considered safe to retry, which +errors are treated as transient failures, the details of the exponential backoff +algorithm, and for how long the library retries are all configurable via +policies. + +This document provides examples showing how to override the default policies. + +The policies can be set when the `*Connection` object is created. The library +provides default policies for any policy that is not set. The application can +also override some (or all) policies when the `*Client` object is created. This +can be useful if multiple `*Client` objects share the same `*Connection` object, +but you want different retry behavior in some of the clients. Finally, the +application can override some retry policies when calling a specific member +function. + +The library uses three different options to control the retry loop. The options +have per-client names. + +@section golden-override-retry-retry-policy Configuring the transient errors and retry duration + +The `*RetryPolicyOption` controls: + +- Which errors are to be treated as transient errors. +- How long the library will keep retrying transient errors. + +You can provide your own class for this option. The library also provides two +built-in policies: + +- `*LimitedErrorCountRetryPolicy`: stops retrying after a specified number + of transient errors. +- `*LimitedTimeRetryPolicy`: stops retrying after a specified time. + +Note that a library may have more than one version of these classes. Their name +match the `*Client` and `*Connection` object they are intended to be used +with. Some `*Client` objects treat different error codes as transient errors. +In most cases, only [kUnavailable](@ref google::cloud::StatusCode) is treated +as a transient error. + +@section golden-override-retry-backoff-policy Controlling the backoff algorithm + +The `*BackoffPolicyOption` controls how long the client library will wait +before retrying a request that failed with a transient error. You can provide +your own class for this option. + +The only built-in backoff policy is +[`ExponentialBackoffPolicy`](@ref google::cloud::ExponentialBackoffPolicy). +This class implements a truncated exponential backoff algorithm, with jitter. +In summary, it doubles the current backoff time after each failure. The actual +backoff time for an RPC is chosen at random, but never exceeds the current +backoff. The current backoff is doubled after each failure, but never exceeds +(or is "truncated") if it reaches a prescribed maximum. + +@section golden-override-retry-idempotency-policy Controlling which operations are retryable + +The `*IdempotencyPolicyOption` controls which requests are retryable, as some +requests are never safe to retry. + +Only one built-in idempotency policy is provided by the library. The name +matches the name of the client it is intended for. For example, `FooBarClient` +will use `FooBarIdempotencyPolicy`. This policy is very conservative. + +@section golden-override-retry-example Example + + + + +@section golden-override-retry-more-information More Information + +@see google::cloud::Options +@see google::cloud::BackoffPolicy +@see google::cloud::ExponentialBackoffPolicy + +[exponential backoff]: https://en.wikipedia.org/wiki/Exponential_backoff + +*/ + +// +// diff --git a/generator/integration_tests/test2.yaml b/generator/integration_tests/test2.yaml new file mode 100644 index 0000000000000..5d79a9cf27ec3 --- /dev/null +++ b/generator/integration_tests/test2.yaml @@ -0,0 +1,21 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +type: google.api.Service +config_version: 3 +name: test.googleapis.com +title: Test2 + +apis: +- name: google.test.rest.only.v1.GoldenRestOnly diff --git a/generator/integration_tests/test_deprecated.yaml b/generator/integration_tests/test_deprecated.yaml new file mode 100644 index 0000000000000..396e1228e7f3e --- /dev/null +++ b/generator/integration_tests/test_deprecated.yaml @@ -0,0 +1,21 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +type: google.api.Service +config_version: 3 +name: test.googleapis.com +title: Test Deprecated + +apis: +- name: google.test.deprecated.v1.DeprecatedService diff --git a/generator/internal/scaffold_generator.cc b/generator/internal/scaffold_generator.cc index 06c6e1bbb77c2..6df8ee3737f2e 100644 --- a/generator/internal/scaffold_generator.cc +++ b/generator/internal/scaffold_generator.cc @@ -326,28 +326,13 @@ void GenerateMetadata( void GenerateScaffold( std::map const& vars, std::string const& scaffold_templates_path, std::string const& output_path, - google::cloud::cpp::generator::ServiceConfiguration const& service) { + google::cloud::cpp::generator::ServiceConfiguration const& service, + ScaffoldFiles scaffold_files) { using Generator = std::function const&)>; struct Destination { std::string name; Generator generator; - } files[] = { - {"README.md", GenerateReadme}, - {"BUILD.bazel", GenerateBuild}, - {"CMakeLists.txt", GenerateCMakeLists}, - {"doc/main.dox", GenerateDoxygenMainPage}, - {"doc/environment-variables.dox", GenerateDoxygenEnvironmentPage}, - {"doc/override-authentication.dox", GenerateOverrideAuthenticationPage}, - {"doc/override-endpoint.dox", GenerateOverrideEndpointPage}, - {"doc/override-retry-policies.dox", GenerateOverrideRetryPoliciesPage}, - {"doc/options.dox", GenerateDoxygenOptionsPage}, - {"quickstart/README.md", GenerateQuickstartReadme}, - {"quickstart/quickstart.cc", GenerateQuickstartSkeleton}, - {"quickstart/CMakeLists.txt", GenerateQuickstartCMake}, - {"quickstart/Makefile", GenerateQuickstartMakefile}, - {"quickstart/BUILD.bazel", GenerateQuickstartBuild}, - {"quickstart/.bazelrc", GenerateQuickstartBazelrc}, }; MakeDirectory(output_path + "/"); @@ -355,15 +340,45 @@ void GenerateScaffold( output_path + "/" + LibraryPath(service.product_path()); MakeDirectory(destination); MakeDirectory(destination + "doc/"); - MakeDirectory(destination + "quickstart/"); + + std::vector files; + if (scaffold_files == ScaffoldFiles::kDocDir) { + files = { + {"doc/environment-variables.dox", GenerateDoxygenEnvironmentPage}, + {"doc/override-authentication.dox", GenerateOverrideAuthenticationPage}, + {"doc/override-endpoint.dox", GenerateOverrideEndpointPage}, + {"doc/override-retry-policies.dox", GenerateOverrideRetryPoliciesPage}, + {"doc/options.dox", GenerateDoxygenOptionsPage}, + }; + } else { + MakeDirectory(destination + "quickstart/"); + files = { + {"README.md", GenerateReadme}, + {"BUILD.bazel", GenerateBuild}, + {"CMakeLists.txt", GenerateCMakeLists}, + {"doc/main.dox", GenerateDoxygenMainPage}, + {"doc/environment-variables.dox", GenerateDoxygenEnvironmentPage}, + {"doc/override-authentication.dox", GenerateOverrideAuthenticationPage}, + {"doc/override-endpoint.dox", GenerateOverrideEndpointPage}, + {"doc/override-retry-policies.dox", GenerateOverrideRetryPoliciesPage}, + {"doc/options.dox", GenerateDoxygenOptionsPage}, + {"quickstart/README.md", GenerateQuickstartReadme}, + {"quickstart/quickstart.cc", GenerateQuickstartSkeleton}, + {"quickstart/CMakeLists.txt", GenerateQuickstartCMake}, + {"quickstart/Makefile", GenerateQuickstartMakefile}, + {"quickstart/BUILD.bazel", GenerateQuickstartBuild}, + {"quickstart/.bazelrc", GenerateQuickstartBazelrc}, + }; + std::ifstream is(scaffold_templates_path + kWorkspaceTemplate); + auto const contents = std::string{std::istreambuf_iterator(is), {}}; + std::ofstream os(destination + "quickstart/WORKSPACE.bazel"); + GenerateQuickstartWorkspace(os, vars, contents); + } + for (auto const& f : files) { std::ofstream os(destination + f.name); f.generator(os, vars); } - std::ifstream is(scaffold_templates_path + kWorkspaceTemplate); - auto const contents = std::string{std::istreambuf_iterator(is), {}}; - std::ofstream os(destination + "quickstart/WORKSPACE.bazel"); - GenerateQuickstartWorkspace(os, vars, contents); } void GenerateReadme(std::ostream& os, @@ -547,7 +562,6 @@ which should give you a taste of the $title$ C++ client library API. void GenerateDoxygenEnvironmentPage( std::ostream& os, std::map const& variables) { auto constexpr kText = R"""(/*! - @page $library$-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/generator/internal/scaffold_generator.h b/generator/internal/scaffold_generator.h index 785ab87afd64d..cafd384dbd064 100644 --- a/generator/internal/scaffold_generator.h +++ b/generator/internal/scaffold_generator.h @@ -96,11 +96,17 @@ void GenerateMetadata( google::cloud::cpp::generator::ServiceConfiguration const& service, bool allow_placeholders); +enum class ScaffoldFiles { + kAll, + kDocDir, // Does not include main.dox due to all the hand edits. +}; + /// Generates the build and documentation scaffold for @p service. void GenerateScaffold( std::map const& vars, std::string const& scaffold_templates_path, std::string const& output_path, - google::cloud::cpp::generator::ServiceConfiguration const& service); + google::cloud::cpp::generator::ServiceConfiguration const& service, + ScaffoldFiles = ScaffoldFiles::kAll); ///@{ /// @name Generators for each scaffold file. diff --git a/generator/standalone_main.cc b/generator/standalone_main.cc index 9ad75a9106654..ff7db95f54018 100644 --- a/generator/standalone_main.cc +++ b/generator/standalone_main.cc @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -231,6 +232,33 @@ std::vector> GenerateCodeFromProtos( if (generate_scaffold) { GenerateScaffold(scaffold_vars, generator_args.scaffold_templates_path, generator_args.output_path, service); + } else { + // Bigtable, pubsub, and spanner, have their admin services generated but + // their data services handwritten. The dox files for these are also + // handwritten, so we don't want to overwrite them with generated ones. + // + // Compute is a special case that has almost a hundred generated services, + // but the dox files are not per service, but are all under the compute + // umbrella which has one set of dox files intended to cover all of them. + static constexpr std::array kOmittedDocDirs = { + "google/cloud/bigtable", "google/cloud/compute", + "google/cloud/pubsub", "google/cloud/spanner"}; + + if (!service.omit_client() && + !std::any_of(kOmittedDocDirs.begin(), kOmittedDocDirs.end(), + [&](auto s) { + // TODO(#15652): Remove when service is turned down. + if (absl::StartsWith(service.product_path(), + "google/cloud/pubsublite")) { + return false; + } + return absl::StartsWith(service.product_path(), s); + })) { + GenerateScaffold( + scaffold_vars, generator_args.scaffold_templates_path, + generator_args.output_path, service, + google::cloud::generator_internal::ScaffoldFiles::kDocDir); + } } if (!service.omit_repo_metadata()) { GenerateMetadata(scaffold_vars, generator_args.output_path, service, diff --git a/google/cloud/accessapproval/doc/environment-variables.dox b/google/cloud/accessapproval/doc/environment-variables.dox index 9a4aa844e60c8..dd89f940f1a78 100644 --- a/google/cloud/accessapproval/doc/environment-variables.dox +++ b/google/cloud/accessapproval/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page accessapproval-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/accessapproval/doc/override-retry-policies.dox b/google/cloud/accessapproval/doc/override-retry-policies.dox index 86a687b936ff0..6b874f639d4e2 100644 --- a/google/cloud/accessapproval/doc/override-retry-policies.dox +++ b/google/cloud/accessapproval/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page accessapproval-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/accesscontextmanager/doc/environment-variables.dox b/google/cloud/accesscontextmanager/doc/environment-variables.dox index dcc99d41275b3..1a93a53c852ad 100644 --- a/google/cloud/accesscontextmanager/doc/environment-variables.dox +++ b/google/cloud/accesscontextmanager/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page accesscontextmanager-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/accesscontextmanager/doc/override-retry-policies.dox b/google/cloud/accesscontextmanager/doc/override-retry-policies.dox index b5feaa4cb9301..2b7879d5cbdd4 100644 --- a/google/cloud/accesscontextmanager/doc/override-retry-policies.dox +++ b/google/cloud/accesscontextmanager/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page accesscontextmanager-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/advisorynotifications/doc/environment-variables.dox b/google/cloud/advisorynotifications/doc/environment-variables.dox index 2cda28227b26c..7a9ccef1da378 100644 --- a/google/cloud/advisorynotifications/doc/environment-variables.dox +++ b/google/cloud/advisorynotifications/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page advisorynotifications-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/advisorynotifications/doc/override-retry-policies.dox b/google/cloud/advisorynotifications/doc/override-retry-policies.dox index 595707106a4e6..0597e4b418045 100644 --- a/google/cloud/advisorynotifications/doc/override-retry-policies.dox +++ b/google/cloud/advisorynotifications/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page advisorynotifications-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/aiplatform/doc/environment-variables.dox b/google/cloud/aiplatform/doc/environment-variables.dox index ebdb4e42b6c98..502f099bc73c8 100644 --- a/google/cloud/aiplatform/doc/environment-variables.dox +++ b/google/cloud/aiplatform/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page aiplatform-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/aiplatform/doc/override-retry-policies.dox b/google/cloud/aiplatform/doc/override-retry-policies.dox index b6317a2a36205..42ffd944181ee 100644 --- a/google/cloud/aiplatform/doc/override-retry-policies.dox +++ b/google/cloud/aiplatform/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page aiplatform-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/alloydb/doc/environment-variables.dox b/google/cloud/alloydb/doc/environment-variables.dox index 30d464a2dc6cc..cd3e8784602e7 100644 --- a/google/cloud/alloydb/doc/environment-variables.dox +++ b/google/cloud/alloydb/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page alloydb-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/alloydb/doc/override-retry-policies.dox b/google/cloud/alloydb/doc/override-retry-policies.dox index 2aca75aec2343..40d787dc81598 100644 --- a/google/cloud/alloydb/doc/override-retry-policies.dox +++ b/google/cloud/alloydb/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page alloydb-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/apigateway/doc/environment-variables.dox b/google/cloud/apigateway/doc/environment-variables.dox index 7b9c0233b6955..d5fe7fec0f6ee 100644 --- a/google/cloud/apigateway/doc/environment-variables.dox +++ b/google/cloud/apigateway/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page apigateway-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/apigateway/doc/override-retry-policies.dox b/google/cloud/apigateway/doc/override-retry-policies.dox index d116bd7a66558..f5b95cd8b8643 100644 --- a/google/cloud/apigateway/doc/override-retry-policies.dox +++ b/google/cloud/apigateway/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page apigateway-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/apigeeconnect/doc/environment-variables.dox b/google/cloud/apigeeconnect/doc/environment-variables.dox index 022d6293d23fe..7c47e7f06ce20 100644 --- a/google/cloud/apigeeconnect/doc/environment-variables.dox +++ b/google/cloud/apigeeconnect/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page apigeeconnect-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/apigeeconnect/doc/override-retry-policies.dox b/google/cloud/apigeeconnect/doc/override-retry-policies.dox index 2cbb37f6b31c6..2ed776c2fe374 100644 --- a/google/cloud/apigeeconnect/doc/override-retry-policies.dox +++ b/google/cloud/apigeeconnect/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page apigeeconnect-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/apikeys/doc/environment-variables.dox b/google/cloud/apikeys/doc/environment-variables.dox index fbf8ffb1a671c..c7f3221f13284 100644 --- a/google/cloud/apikeys/doc/environment-variables.dox +++ b/google/cloud/apikeys/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page apikeys-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/apikeys/doc/override-retry-policies.dox b/google/cloud/apikeys/doc/override-retry-policies.dox index 2e86506bdab1f..10eed9bf67943 100644 --- a/google/cloud/apikeys/doc/override-retry-policies.dox +++ b/google/cloud/apikeys/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page apikeys-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/appengine/doc/environment-variables.dox b/google/cloud/appengine/doc/environment-variables.dox index 1544a5cb1cfb8..15311e3d82ea2 100644 --- a/google/cloud/appengine/doc/environment-variables.dox +++ b/google/cloud/appengine/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page appengine-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/appengine/doc/override-retry-policies.dox b/google/cloud/appengine/doc/override-retry-policies.dox index 8ae49e750804b..40116156037e2 100644 --- a/google/cloud/appengine/doc/override-retry-policies.dox +++ b/google/cloud/appengine/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page appengine-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/apphub/doc/environment-variables.dox b/google/cloud/apphub/doc/environment-variables.dox index 42f651e75f0de..77a1d2088e1f1 100644 --- a/google/cloud/apphub/doc/environment-variables.dox +++ b/google/cloud/apphub/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page apphub-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/artifactregistry/doc/environment-variables.dox b/google/cloud/artifactregistry/doc/environment-variables.dox index 8b37563ffa12e..3263b74353443 100644 --- a/google/cloud/artifactregistry/doc/environment-variables.dox +++ b/google/cloud/artifactregistry/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page artifactregistry-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/artifactregistry/doc/override-retry-policies.dox b/google/cloud/artifactregistry/doc/override-retry-policies.dox index 6e530791003bd..9ac5c75dd7f18 100644 --- a/google/cloud/artifactregistry/doc/override-retry-policies.dox +++ b/google/cloud/artifactregistry/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page artifactregistry-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/asset/doc/environment-variables.dox b/google/cloud/asset/doc/environment-variables.dox index 318b5e02f231c..821ac27b5fde8 100644 --- a/google/cloud/asset/doc/environment-variables.dox +++ b/google/cloud/asset/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page asset-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/asset/doc/override-retry-policies.dox b/google/cloud/asset/doc/override-retry-policies.dox index be4be282b5270..08481ef903e81 100644 --- a/google/cloud/asset/doc/override-retry-policies.dox +++ b/google/cloud/asset/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page asset-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/assuredworkloads/doc/environment-variables.dox b/google/cloud/assuredworkloads/doc/environment-variables.dox index 425ebaf46980a..01ecdc4572171 100644 --- a/google/cloud/assuredworkloads/doc/environment-variables.dox +++ b/google/cloud/assuredworkloads/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page assuredworkloads-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/assuredworkloads/doc/override-retry-policies.dox b/google/cloud/assuredworkloads/doc/override-retry-policies.dox index 7e9c895990400..73cb16d7f47a8 100644 --- a/google/cloud/assuredworkloads/doc/override-retry-policies.dox +++ b/google/cloud/assuredworkloads/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page assuredworkloads-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/automl/doc/environment-variables.dox b/google/cloud/automl/doc/environment-variables.dox index 7706f2dbad32f..4e11a9c91a231 100644 --- a/google/cloud/automl/doc/environment-variables.dox +++ b/google/cloud/automl/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page automl-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/automl/doc/override-retry-policies.dox b/google/cloud/automl/doc/override-retry-policies.dox index f6266f85df025..c7dff04e4b5cd 100644 --- a/google/cloud/automl/doc/override-retry-policies.dox +++ b/google/cloud/automl/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page automl-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/backupdr/doc/environment-variables.dox b/google/cloud/backupdr/doc/environment-variables.dox index 661b4f45b23ed..229d8fc9146d3 100644 --- a/google/cloud/backupdr/doc/environment-variables.dox +++ b/google/cloud/backupdr/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page backupdr-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/baremetalsolution/doc/environment-variables.dox b/google/cloud/baremetalsolution/doc/environment-variables.dox index 3471ff01b0ccd..96fb4251e327e 100644 --- a/google/cloud/baremetalsolution/doc/environment-variables.dox +++ b/google/cloud/baremetalsolution/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page baremetalsolution-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/baremetalsolution/doc/override-retry-policies.dox b/google/cloud/baremetalsolution/doc/override-retry-policies.dox index 31c65e5773667..e9ae5422a4dae 100644 --- a/google/cloud/baremetalsolution/doc/override-retry-policies.dox +++ b/google/cloud/baremetalsolution/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page baremetalsolution-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/batch/doc/environment-variables.dox b/google/cloud/batch/doc/environment-variables.dox index 199f3a5ed45d4..b649a3c229e93 100644 --- a/google/cloud/batch/doc/environment-variables.dox +++ b/google/cloud/batch/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page batch-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/batch/doc/override-retry-policies.dox b/google/cloud/batch/doc/override-retry-policies.dox index abb935856fc6e..11c261356a734 100644 --- a/google/cloud/batch/doc/override-retry-policies.dox +++ b/google/cloud/batch/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page batch-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/beyondcorp/doc/environment-variables.dox b/google/cloud/beyondcorp/doc/environment-variables.dox index b2ac3d7a0e3f0..3a6082de6e29b 100644 --- a/google/cloud/beyondcorp/doc/environment-variables.dox +++ b/google/cloud/beyondcorp/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page beyondcorp-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/beyondcorp/doc/override-retry-policies.dox b/google/cloud/beyondcorp/doc/override-retry-policies.dox index 96a1c90f5fcfd..b4c5f8fc35eed 100644 --- a/google/cloud/beyondcorp/doc/override-retry-policies.dox +++ b/google/cloud/beyondcorp/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page beyondcorp-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/bigquery/doc/environment-variables.dox b/google/cloud/bigquery/doc/environment-variables.dox index 787699873bd62..d093e07e8ab83 100644 --- a/google/cloud/bigquery/doc/environment-variables.dox +++ b/google/cloud/bigquery/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page bigquery-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/bigquery/doc/options.dox b/google/cloud/bigquery/doc/options.dox index f0a1b80645b24..c6ef4e3cbed06 100644 --- a/google/cloud/bigquery/doc/options.dox +++ b/google/cloud/bigquery/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-bigquery-options Cloud BigQuery Configuration Options +@defgroup google-cloud-bigquery-options BigQuery Storage API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/bigquery/doc/override-retry-policies.dox b/google/cloud/bigquery/doc/override-retry-policies.dox index c0775abf47af9..16f023f43e0e9 100644 --- a/google/cloud/bigquery/doc/override-retry-policies.dox +++ b/google/cloud/bigquery/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page bigquery-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/bigquerycontrol/doc/environment-variables.dox b/google/cloud/bigquerycontrol/doc/environment-variables.dox index 024f0f31e6cdb..3f5fbce00cfd9 100644 --- a/google/cloud/bigquerycontrol/doc/environment-variables.dox +++ b/google/cloud/bigquerycontrol/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page bigquerycontrol-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/billing/doc/environment-variables.dox b/google/cloud/billing/doc/environment-variables.dox index e73942f2a29a7..d0edf5bada471 100644 --- a/google/cloud/billing/doc/environment-variables.dox +++ b/google/cloud/billing/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page billing-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/billing/doc/options.dox b/google/cloud/billing/doc/options.dox index 759febc88d43f..29d0ee503a75f 100644 --- a/google/cloud/billing/doc/options.dox +++ b/google/cloud/billing/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-billing-options Cloud Billing API Configuration Options +@defgroup google-cloud-billing-options Cloud Billing Budget API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/billing/doc/override-retry-policies.dox b/google/cloud/billing/doc/override-retry-policies.dox index 67418053ddc46..605bec7ba8c2c 100644 --- a/google/cloud/billing/doc/override-retry-policies.dox +++ b/google/cloud/billing/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page billing-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/binaryauthorization/doc/environment-variables.dox b/google/cloud/binaryauthorization/doc/environment-variables.dox index efd74d8888bef..9d58fcb27ba80 100644 --- a/google/cloud/binaryauthorization/doc/environment-variables.dox +++ b/google/cloud/binaryauthorization/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page binaryauthorization-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/binaryauthorization/doc/override-retry-policies.dox b/google/cloud/binaryauthorization/doc/override-retry-policies.dox index b810f7c38fce8..93710be3beefd 100644 --- a/google/cloud/binaryauthorization/doc/override-retry-policies.dox +++ b/google/cloud/binaryauthorization/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page binaryauthorization-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/certificatemanager/doc/environment-variables.dox b/google/cloud/certificatemanager/doc/environment-variables.dox index bd6e81b8fedb3..68b58f497d240 100644 --- a/google/cloud/certificatemanager/doc/environment-variables.dox +++ b/google/cloud/certificatemanager/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page certificatemanager-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/certificatemanager/doc/override-retry-policies.dox b/google/cloud/certificatemanager/doc/override-retry-policies.dox index 9a21aa715a5b3..e59ee1582b9c9 100644 --- a/google/cloud/certificatemanager/doc/override-retry-policies.dox +++ b/google/cloud/certificatemanager/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page certificatemanager-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/channel/doc/environment-variables.dox b/google/cloud/channel/doc/environment-variables.dox index 9d99fd826d26a..87279b5131706 100644 --- a/google/cloud/channel/doc/environment-variables.dox +++ b/google/cloud/channel/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page channel-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/channel/doc/override-retry-policies.dox b/google/cloud/channel/doc/override-retry-policies.dox index 628f52b66c879..0b361974f26a9 100644 --- a/google/cloud/channel/doc/override-retry-policies.dox +++ b/google/cloud/channel/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page channel-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/chronicle/doc/environment-variables.dox b/google/cloud/chronicle/doc/environment-variables.dox index f50dacebb8c84..a9e77a30996b4 100644 --- a/google/cloud/chronicle/doc/environment-variables.dox +++ b/google/cloud/chronicle/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page chronicle-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/cloudbuild/doc/environment-variables.dox b/google/cloud/cloudbuild/doc/environment-variables.dox index be2152867933f..c0da523bc1e29 100644 --- a/google/cloud/cloudbuild/doc/environment-variables.dox +++ b/google/cloud/cloudbuild/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page cloudbuild-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/cloudbuild/doc/override-retry-policies.dox b/google/cloud/cloudbuild/doc/override-retry-policies.dox index 3b7476084cb27..390488d2f731a 100644 --- a/google/cloud/cloudbuild/doc/override-retry-policies.dox +++ b/google/cloud/cloudbuild/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page cloudbuild-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/cloudcontrolspartner/doc/environment-variables.dox b/google/cloud/cloudcontrolspartner/doc/environment-variables.dox index e566dfba8f82a..226b9382c8d93 100644 --- a/google/cloud/cloudcontrolspartner/doc/environment-variables.dox +++ b/google/cloud/cloudcontrolspartner/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page cloudcontrolspartner-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/cloudquotas/doc/environment-variables.dox b/google/cloud/cloudquotas/doc/environment-variables.dox index 0f993e3d7638e..97307c4f0a81c 100644 --- a/google/cloud/cloudquotas/doc/environment-variables.dox +++ b/google/cloud/cloudquotas/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page cloudquotas-env Environment Variables A number of environment variables can be used to configure the behavior of @@ -47,11 +46,4 @@ environment variable. `GOOGLE_CLOUD_PROJECT=...`: is used in examples and integration tests to configure the GCP project. This has no effect in the library. -@section cloudquotas-env-quota-project Setting the Quota Project -`GOOGLE_CLOUD_CPP_USER_PROJECT=...`: can be used to set the quota project when -using Application Default Credentials. See see [Troubleshoot your ADC setup][cloud-adc-user-creds] -for more details. - -[cloud-adc-user-creds]: https://cloud.google.com/docs/authentication/adc-troubleshooting/user-creds - */ diff --git a/google/cloud/cloudquotas/doc/override-authentication.dox b/google/cloud/cloudquotas/doc/override-authentication.dox index 7b8c1c48c0d2b..00ffda74ce0f9 100644 --- a/google/cloud/cloudquotas/doc/override-authentication.dox +++ b/google/cloud/cloudquotas/doc/override-authentication.dox @@ -22,7 +22,6 @@ guide for more details. [Best practices for managing service account keys]: https://cloud.google.com/iam/docs/best-practices-for-managing-service-account-keys [Application Default Credentials]: https://cloud.google.com/docs/authentication#adc -[Troubleshoot your ADC setup]: https://cloud.google.com/docs/authentication/adc-troubleshooting/user-creds */ diff --git a/google/cloud/cloudsecuritycompliance/doc/environment-variables.dox b/google/cloud/cloudsecuritycompliance/doc/environment-variables.dox index aa4e7ed646bc1..9a8b5844b611e 100644 --- a/google/cloud/cloudsecuritycompliance/doc/environment-variables.dox +++ b/google/cloud/cloudsecuritycompliance/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page cloudsecuritycompliance-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/commerce/doc/environment-variables.dox b/google/cloud/commerce/doc/environment-variables.dox index 48fe8735d9ed1..72499d23572b5 100644 --- a/google/cloud/commerce/doc/environment-variables.dox +++ b/google/cloud/commerce/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page commerce-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/composer/doc/environment-variables.dox b/google/cloud/composer/doc/environment-variables.dox index ba675b4fd1c71..2c5ff1276ef35 100644 --- a/google/cloud/composer/doc/environment-variables.dox +++ b/google/cloud/composer/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page composer-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/composer/doc/options.dox b/google/cloud/composer/doc/options.dox index 33b6973571a82..c7ea9090e4fe1 100644 --- a/google/cloud/composer/doc/options.dox +++ b/google/cloud/composer/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-composer-options Cloud Composer Configuration Options +@defgroup google-cloud-composer-options Cloud Composer API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/composer/doc/override-retry-policies.dox b/google/cloud/composer/doc/override-retry-policies.dox index f3451c76f7084..213584862714e 100644 --- a/google/cloud/composer/doc/override-retry-policies.dox +++ b/google/cloud/composer/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page composer-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/confidentialcomputing/doc/environment-variables.dox b/google/cloud/confidentialcomputing/doc/environment-variables.dox index e3b1c1e35d958..8d23622d42aa7 100644 --- a/google/cloud/confidentialcomputing/doc/environment-variables.dox +++ b/google/cloud/confidentialcomputing/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page confidentialcomputing-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/confidentialcomputing/doc/override-retry-policies.dox b/google/cloud/confidentialcomputing/doc/override-retry-policies.dox index 1f87febda114b..4cba9b9367eef 100644 --- a/google/cloud/confidentialcomputing/doc/override-retry-policies.dox +++ b/google/cloud/confidentialcomputing/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page confidentialcomputing-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/config/doc/environment-variables.dox b/google/cloud/config/doc/environment-variables.dox index 67ce328a0e579..5a85cecf1676e 100644 --- a/google/cloud/config/doc/environment-variables.dox +++ b/google/cloud/config/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page config-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/configdelivery/doc/environment-variables.dox b/google/cloud/configdelivery/doc/environment-variables.dox index dab5bc9a3d7b3..c4d0b12e8ed4a 100644 --- a/google/cloud/configdelivery/doc/environment-variables.dox +++ b/google/cloud/configdelivery/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page configdelivery-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/connectors/doc/environment-variables.dox b/google/cloud/connectors/doc/environment-variables.dox index f529d6ecccc96..860ce5bc4a7ff 100644 --- a/google/cloud/connectors/doc/environment-variables.dox +++ b/google/cloud/connectors/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page connectors-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/connectors/doc/override-retry-policies.dox b/google/cloud/connectors/doc/override-retry-policies.dox index f66c7e793ced7..8713e597ab415 100644 --- a/google/cloud/connectors/doc/override-retry-policies.dox +++ b/google/cloud/connectors/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page connectors-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/contactcenterinsights/doc/environment-variables.dox b/google/cloud/contactcenterinsights/doc/environment-variables.dox index 4fc841456310a..edd0e8f85d9d6 100644 --- a/google/cloud/contactcenterinsights/doc/environment-variables.dox +++ b/google/cloud/contactcenterinsights/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page contactcenterinsights-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/contactcenterinsights/doc/override-retry-policies.dox b/google/cloud/contactcenterinsights/doc/override-retry-policies.dox index 23d38daaf9f41..527417fa3c18f 100644 --- a/google/cloud/contactcenterinsights/doc/override-retry-policies.dox +++ b/google/cloud/contactcenterinsights/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page contactcenterinsights-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/container/doc/environment-variables.dox b/google/cloud/container/doc/environment-variables.dox index 1fefab593263b..6f9e5d73bf3da 100644 --- a/google/cloud/container/doc/environment-variables.dox +++ b/google/cloud/container/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page container-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/container/doc/override-retry-policies.dox b/google/cloud/container/doc/override-retry-policies.dox index bc143487e57ee..b5b6a51b5cd6d 100644 --- a/google/cloud/container/doc/override-retry-policies.dox +++ b/google/cloud/container/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page container-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/containeranalysis/doc/environment-variables.dox b/google/cloud/containeranalysis/doc/environment-variables.dox index 9b34baa246149..87cf264b639ff 100644 --- a/google/cloud/containeranalysis/doc/environment-variables.dox +++ b/google/cloud/containeranalysis/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page containeranalysis-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/containeranalysis/doc/override-retry-policies.dox b/google/cloud/containeranalysis/doc/override-retry-policies.dox index 74488153ba0ae..3add6d80d9769 100644 --- a/google/cloud/containeranalysis/doc/override-retry-policies.dox +++ b/google/cloud/containeranalysis/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page containeranalysis-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/contentwarehouse/doc/environment-variables.dox b/google/cloud/contentwarehouse/doc/environment-variables.dox index 55300a332856e..4181dcedc69a6 100644 --- a/google/cloud/contentwarehouse/doc/environment-variables.dox +++ b/google/cloud/contentwarehouse/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page contentwarehouse-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/contentwarehouse/doc/override-retry-policies.dox b/google/cloud/contentwarehouse/doc/override-retry-policies.dox index fd28418b8f814..d85d1f5cc0b55 100644 --- a/google/cloud/contentwarehouse/doc/override-retry-policies.dox +++ b/google/cloud/contentwarehouse/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page contentwarehouse-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/datacatalog/doc/environment-variables.dox b/google/cloud/datacatalog/doc/environment-variables.dox index 73b9cbc2fb5fd..983ee273118d0 100644 --- a/google/cloud/datacatalog/doc/environment-variables.dox +++ b/google/cloud/datacatalog/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page datacatalog-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/datacatalog/doc/options.dox b/google/cloud/datacatalog/doc/options.dox index 65f881cff3a8b..fe0205461708e 100644 --- a/google/cloud/datacatalog/doc/options.dox +++ b/google/cloud/datacatalog/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-datacatalog-options Google Cloud Data Catalog API Configuration Options +@defgroup google-cloud-datacatalog-options Data Lineage API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/datacatalog/doc/override-retry-policies.dox b/google/cloud/datacatalog/doc/override-retry-policies.dox index c2e5ee08eec97..55e3577996ebb 100644 --- a/google/cloud/datacatalog/doc/override-retry-policies.dox +++ b/google/cloud/datacatalog/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page datacatalog-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/dataform/doc/environment-variables.dox b/google/cloud/dataform/doc/environment-variables.dox index 7bfc7ea7d1fa2..1f96e9b7f8b84 100644 --- a/google/cloud/dataform/doc/environment-variables.dox +++ b/google/cloud/dataform/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page dataform-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/datafusion/doc/environment-variables.dox b/google/cloud/datafusion/doc/environment-variables.dox index 64ac63de963d9..a4d3f2a89ca80 100644 --- a/google/cloud/datafusion/doc/environment-variables.dox +++ b/google/cloud/datafusion/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page datafusion-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/datafusion/doc/override-retry-policies.dox b/google/cloud/datafusion/doc/override-retry-policies.dox index 0c4fa68e078d6..9defd32231963 100644 --- a/google/cloud/datafusion/doc/override-retry-policies.dox +++ b/google/cloud/datafusion/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page datafusion-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/datamigration/doc/environment-variables.dox b/google/cloud/datamigration/doc/environment-variables.dox index a6e3d1afd1f81..eaae5450b4302 100644 --- a/google/cloud/datamigration/doc/environment-variables.dox +++ b/google/cloud/datamigration/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page datamigration-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/datamigration/doc/override-retry-policies.dox b/google/cloud/datamigration/doc/override-retry-policies.dox index bed3d6e77f32f..3c06ce5bd3c4a 100644 --- a/google/cloud/datamigration/doc/override-retry-policies.dox +++ b/google/cloud/datamigration/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page datamigration-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/dataplex/doc/environment-variables.dox b/google/cloud/dataplex/doc/environment-variables.dox index 85438987c53f5..65c34e0b913cd 100644 --- a/google/cloud/dataplex/doc/environment-variables.dox +++ b/google/cloud/dataplex/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page dataplex-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/dataplex/doc/override-retry-policies.dox b/google/cloud/dataplex/doc/override-retry-policies.dox index 38f65bcf88b0c..13db6292c0f7c 100644 --- a/google/cloud/dataplex/doc/override-retry-policies.dox +++ b/google/cloud/dataplex/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page dataplex-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/dataproc/doc/environment-variables.dox b/google/cloud/dataproc/doc/environment-variables.dox index 1c90ba6c1a516..eef82ba7fb74e 100644 --- a/google/cloud/dataproc/doc/environment-variables.dox +++ b/google/cloud/dataproc/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page dataproc-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/dataproc/doc/override-retry-policies.dox b/google/cloud/dataproc/doc/override-retry-policies.dox index 56e37ddd73416..f2eda9c959553 100644 --- a/google/cloud/dataproc/doc/override-retry-policies.dox +++ b/google/cloud/dataproc/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page dataproc-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/datastore/doc/environment-variables.dox b/google/cloud/datastore/doc/environment-variables.dox index 944c0036dfd10..9a41b8bcde952 100644 --- a/google/cloud/datastore/doc/environment-variables.dox +++ b/google/cloud/datastore/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page datastore-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/datastream/doc/environment-variables.dox b/google/cloud/datastream/doc/environment-variables.dox index fd528d69f8077..566708b0562cc 100644 --- a/google/cloud/datastream/doc/environment-variables.dox +++ b/google/cloud/datastream/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page datastream-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/datastream/doc/override-retry-policies.dox b/google/cloud/datastream/doc/override-retry-policies.dox index ca543516c1de4..327b20ab20b9e 100644 --- a/google/cloud/datastream/doc/override-retry-policies.dox +++ b/google/cloud/datastream/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page datastream-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/deploy/doc/environment-variables.dox b/google/cloud/deploy/doc/environment-variables.dox index 2d7998b8397ba..98079b3f22974 100644 --- a/google/cloud/deploy/doc/environment-variables.dox +++ b/google/cloud/deploy/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page deploy-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/deploy/doc/options.dox b/google/cloud/deploy/doc/options.dox index c1f173ac8a1cf..afa0628748acf 100644 --- a/google/cloud/deploy/doc/options.dox +++ b/google/cloud/deploy/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-deploy-options Google Cloud Deploy API Configuration Options +@defgroup google-cloud-deploy-options Cloud Deploy API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/deploy/doc/override-retry-policies.dox b/google/cloud/deploy/doc/override-retry-policies.dox index fa082d3ea069f..ae194f1a46ef7 100644 --- a/google/cloud/deploy/doc/override-retry-policies.dox +++ b/google/cloud/deploy/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page deploy-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/developerconnect/doc/environment-variables.dox b/google/cloud/developerconnect/doc/environment-variables.dox index 0e187a9909e02..f653fba14f6a2 100644 --- a/google/cloud/developerconnect/doc/environment-variables.dox +++ b/google/cloud/developerconnect/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page developerconnect-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/devicestreaming/doc/environment-variables.dox b/google/cloud/devicestreaming/doc/environment-variables.dox index f744736dbb891..960eb68589e26 100644 --- a/google/cloud/devicestreaming/doc/environment-variables.dox +++ b/google/cloud/devicestreaming/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page devicestreaming-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/dialogflow_cx/doc/environment-variables.dox b/google/cloud/dialogflow_cx/doc/environment-variables.dox index 611f0c30a950a..4a77624992267 100644 --- a/google/cloud/dialogflow_cx/doc/environment-variables.dox +++ b/google/cloud/dialogflow_cx/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page dialogflow_cx-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/dialogflow_cx/doc/override-retry-policies.dox b/google/cloud/dialogflow_cx/doc/override-retry-policies.dox index 4b6ca3400b92d..d5fcda416a74c 100644 --- a/google/cloud/dialogflow_cx/doc/override-retry-policies.dox +++ b/google/cloud/dialogflow_cx/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page dialogflow_cx-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/dialogflow_es/doc/environment-variables.dox b/google/cloud/dialogflow_es/doc/environment-variables.dox index 9e818ef4cdb8f..f56939b1d5282 100644 --- a/google/cloud/dialogflow_es/doc/environment-variables.dox +++ b/google/cloud/dialogflow_es/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page dialogflow_es-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/dialogflow_es/doc/options.dox b/google/cloud/dialogflow_es/doc/options.dox index 7ea51e9dd5c99..6335d0f08d393 100644 --- a/google/cloud/dialogflow_es/doc/options.dox +++ b/google/cloud/dialogflow_es/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-dialogflow_es-options Dialogflow ES API Configuration Options +@defgroup google-cloud-dialogflow_es-options Dialogflow API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/dialogflow_es/doc/override-retry-policies.dox b/google/cloud/dialogflow_es/doc/override-retry-policies.dox index 7ac088ba97a37..ed597f17b006e 100644 --- a/google/cloud/dialogflow_es/doc/override-retry-policies.dox +++ b/google/cloud/dialogflow_es/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page dialogflow_es-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/discoveryengine/doc/environment-variables.dox b/google/cloud/discoveryengine/doc/environment-variables.dox index a42c06c62966b..269195b4ffffa 100644 --- a/google/cloud/discoveryengine/doc/environment-variables.dox +++ b/google/cloud/discoveryengine/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page discoveryengine-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/dlp/doc/environment-variables.dox b/google/cloud/dlp/doc/environment-variables.dox index eb47830b5c596..abecc80e1d52d 100644 --- a/google/cloud/dlp/doc/environment-variables.dox +++ b/google/cloud/dlp/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page dlp-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/dlp/doc/options.dox b/google/cloud/dlp/doc/options.dox index 8eb51e80f1e7c..22ae28aaa288c 100644 --- a/google/cloud/dlp/doc/options.dox +++ b/google/cloud/dlp/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-dlp-options Cloud Data Loss Prevention (DLP) API Configuration Options +@defgroup google-cloud-dlp-options Sensitive Data Protection (DLP) Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/dlp/doc/override-retry-policies.dox b/google/cloud/dlp/doc/override-retry-policies.dox index a4995ab9c8c7f..919429377fba2 100644 --- a/google/cloud/dlp/doc/override-retry-policies.dox +++ b/google/cloud/dlp/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page dlp-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/documentai/doc/environment-variables.dox b/google/cloud/documentai/doc/environment-variables.dox index ecefb71d2f8e3..85a0eb2abaec3 100644 --- a/google/cloud/documentai/doc/environment-variables.dox +++ b/google/cloud/documentai/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page documentai-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/documentai/doc/override-retry-policies.dox b/google/cloud/documentai/doc/override-retry-policies.dox index 952fe184b278d..a7eeca528cbcb 100644 --- a/google/cloud/documentai/doc/override-retry-policies.dox +++ b/google/cloud/documentai/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page documentai-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/domains/doc/environment-variables.dox b/google/cloud/domains/doc/environment-variables.dox index d5246e5619fed..3ec524b5e7350 100644 --- a/google/cloud/domains/doc/environment-variables.dox +++ b/google/cloud/domains/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page domains-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/domains/doc/override-retry-policies.dox b/google/cloud/domains/doc/override-retry-policies.dox index 80ebd73ea0d8d..27dffb202c974 100644 --- a/google/cloud/domains/doc/override-retry-policies.dox +++ b/google/cloud/domains/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page domains-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/edgecontainer/doc/environment-variables.dox b/google/cloud/edgecontainer/doc/environment-variables.dox index e074261e7f6b7..796af1c4577bd 100644 --- a/google/cloud/edgecontainer/doc/environment-variables.dox +++ b/google/cloud/edgecontainer/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page edgecontainer-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/edgecontainer/doc/override-retry-policies.dox b/google/cloud/edgecontainer/doc/override-retry-policies.dox index d3305631e880c..8af248d0d004b 100644 --- a/google/cloud/edgecontainer/doc/override-retry-policies.dox +++ b/google/cloud/edgecontainer/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page edgecontainer-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/edgenetwork/doc/environment-variables.dox b/google/cloud/edgenetwork/doc/environment-variables.dox index 725f17c99ffb9..ecd58a55a6af1 100644 --- a/google/cloud/edgenetwork/doc/environment-variables.dox +++ b/google/cloud/edgenetwork/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page edgenetwork-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/essentialcontacts/doc/environment-variables.dox b/google/cloud/essentialcontacts/doc/environment-variables.dox index 5f018dc167c52..763b5bcb802d2 100644 --- a/google/cloud/essentialcontacts/doc/environment-variables.dox +++ b/google/cloud/essentialcontacts/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page essentialcontacts-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/essentialcontacts/doc/override-retry-policies.dox b/google/cloud/essentialcontacts/doc/override-retry-policies.dox index 7a5a080a15c6f..8f233cf2b560a 100644 --- a/google/cloud/essentialcontacts/doc/override-retry-policies.dox +++ b/google/cloud/essentialcontacts/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page essentialcontacts-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/eventarc/doc/environment-variables.dox b/google/cloud/eventarc/doc/environment-variables.dox index 6fb3aec796257..e37d6e6c6b76f 100644 --- a/google/cloud/eventarc/doc/environment-variables.dox +++ b/google/cloud/eventarc/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page eventarc-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/eventarc/doc/options.dox b/google/cloud/eventarc/doc/options.dox index d9294278f04bb..7ca79a0a1a35b 100644 --- a/google/cloud/eventarc/doc/options.dox +++ b/google/cloud/eventarc/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-eventarc-options Eventarc API Configuration Options +@defgroup google-cloud-eventarc-options Eventarc Publishing API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/eventarc/doc/override-retry-policies.dox b/google/cloud/eventarc/doc/override-retry-policies.dox index 9a7eb8d3ba756..a2d6099802182 100644 --- a/google/cloud/eventarc/doc/override-retry-policies.dox +++ b/google/cloud/eventarc/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page eventarc-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/filestore/doc/environment-variables.dox b/google/cloud/filestore/doc/environment-variables.dox index d3270d5132117..d3772fda61548 100644 --- a/google/cloud/filestore/doc/environment-variables.dox +++ b/google/cloud/filestore/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page filestore-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/filestore/doc/override-retry-policies.dox b/google/cloud/filestore/doc/override-retry-policies.dox index 3fb03a271ef87..479fc92e737a0 100644 --- a/google/cloud/filestore/doc/override-retry-policies.dox +++ b/google/cloud/filestore/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page filestore-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/financialservices/doc/environment-variables.dox b/google/cloud/financialservices/doc/environment-variables.dox index 4ae2e8f6242f9..e987178799d67 100644 --- a/google/cloud/financialservices/doc/environment-variables.dox +++ b/google/cloud/financialservices/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page financialservices-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/functions/doc/environment-variables.dox b/google/cloud/functions/doc/environment-variables.dox index b876a54b6fe21..a9e282a19a4fd 100644 --- a/google/cloud/functions/doc/environment-variables.dox +++ b/google/cloud/functions/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page functions-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/functions/doc/override-retry-policies.dox b/google/cloud/functions/doc/override-retry-policies.dox index 6de3a3287bd03..b25523a412520 100644 --- a/google/cloud/functions/doc/override-retry-policies.dox +++ b/google/cloud/functions/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page functions-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/gkebackup/doc/environment-variables.dox b/google/cloud/gkebackup/doc/environment-variables.dox index f722f17befa51..5c22aab88154e 100644 --- a/google/cloud/gkebackup/doc/environment-variables.dox +++ b/google/cloud/gkebackup/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page gkebackup-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/gkebackup/doc/override-retry-policies.dox b/google/cloud/gkebackup/doc/override-retry-policies.dox index e89e463db3ab5..0e672e1041ac7 100644 --- a/google/cloud/gkebackup/doc/override-retry-policies.dox +++ b/google/cloud/gkebackup/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page gkebackup-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/gkeconnect/doc/environment-variables.dox b/google/cloud/gkeconnect/doc/environment-variables.dox index e29b9f58e961c..0756a08ef2a74 100644 --- a/google/cloud/gkeconnect/doc/environment-variables.dox +++ b/google/cloud/gkeconnect/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page gkeconnect-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/gkehub/doc/environment-variables.dox b/google/cloud/gkehub/doc/environment-variables.dox index c8d81e1c07da9..61fdbbfbb0b82 100644 --- a/google/cloud/gkehub/doc/environment-variables.dox +++ b/google/cloud/gkehub/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page gkehub-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/gkehub/doc/override-retry-policies.dox b/google/cloud/gkehub/doc/override-retry-policies.dox index 6d9503ed290ca..f2cdb6a1b8954 100644 --- a/google/cloud/gkehub/doc/override-retry-policies.dox +++ b/google/cloud/gkehub/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page gkehub-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/gkemulticloud/doc/environment-variables.dox b/google/cloud/gkemulticloud/doc/environment-variables.dox index 9db94243b0afc..dfd90973e66df 100644 --- a/google/cloud/gkemulticloud/doc/environment-variables.dox +++ b/google/cloud/gkemulticloud/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page gkemulticloud-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/gkemulticloud/doc/options.dox b/google/cloud/gkemulticloud/doc/options.dox index a48acbd6c1211..b65e594c2573e 100644 --- a/google/cloud/gkemulticloud/doc/options.dox +++ b/google/cloud/gkemulticloud/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-gkemulticloud-options Anthos Multi-Cloud API Configuration Options +@defgroup google-cloud-gkemulticloud-options GKE Multi-Cloud API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/gkemulticloud/doc/override-retry-policies.dox b/google/cloud/gkemulticloud/doc/override-retry-policies.dox index 4f62cd284ebc0..004dead7fc908 100644 --- a/google/cloud/gkemulticloud/doc/override-retry-policies.dox +++ b/google/cloud/gkemulticloud/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page gkemulticloud-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/iam/doc/environment-variables.dox b/google/cloud/iam/doc/environment-variables.dox index 5064fde26b726..1dcb4855ff229 100644 --- a/google/cloud/iam/doc/environment-variables.dox +++ b/google/cloud/iam/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page iam-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/iam/doc/options.dox b/google/cloud/iam/doc/options.dox index 080c5e214ed7c..b94f584f4e553 100644 --- a/google/cloud/iam/doc/options.dox +++ b/google/cloud/iam/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-iam-options Cloud IAM Configuration Options +@defgroup google-cloud-iam-options Identity and Access Management (IAM) API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/iam/doc/override-retry-policies.dox b/google/cloud/iam/doc/override-retry-policies.dox index 7a07b28f4e993..1b15a0fec780d 100644 --- a/google/cloud/iam/doc/override-retry-policies.dox +++ b/google/cloud/iam/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page iam-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/iap/doc/environment-variables.dox b/google/cloud/iap/doc/environment-variables.dox index 5b425c2ad88e0..14a5a94927bf8 100644 --- a/google/cloud/iap/doc/environment-variables.dox +++ b/google/cloud/iap/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page iap-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/iap/doc/override-retry-policies.dox b/google/cloud/iap/doc/override-retry-policies.dox index f007bc569c04c..af4fa65481bcf 100644 --- a/google/cloud/iap/doc/override-retry-policies.dox +++ b/google/cloud/iap/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page iap-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/ids/doc/environment-variables.dox b/google/cloud/ids/doc/environment-variables.dox index 8e9e00df2e109..5bccf438786cd 100644 --- a/google/cloud/ids/doc/environment-variables.dox +++ b/google/cloud/ids/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page ids-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/ids/doc/override-retry-policies.dox b/google/cloud/ids/doc/override-retry-policies.dox index 90606899f53c6..4d33064506158 100644 --- a/google/cloud/ids/doc/override-retry-policies.dox +++ b/google/cloud/ids/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page ids-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/kms/doc/environment-variables.dox b/google/cloud/kms/doc/environment-variables.dox index 27949878a37c2..a32cfb49a2491 100644 --- a/google/cloud/kms/doc/environment-variables.dox +++ b/google/cloud/kms/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page kms-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/kms/doc/options.dox b/google/cloud/kms/doc/options.dox index f9731a1a4e5cd..9b282048347b6 100644 --- a/google/cloud/kms/doc/options.dox +++ b/google/cloud/kms/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-kms-options Cloud Key Management Service (KMS) Configuration Options +@defgroup google-cloud-kms-options KMS Inventory API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/kms/doc/override-retry-policies.dox b/google/cloud/kms/doc/override-retry-policies.dox index 7540c2d5479f6..6c88a15cecf33 100644 --- a/google/cloud/kms/doc/override-retry-policies.dox +++ b/google/cloud/kms/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page kms-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/language/doc/environment-variables.dox b/google/cloud/language/doc/environment-variables.dox index 63af4319d011f..21687a1028dd4 100644 --- a/google/cloud/language/doc/environment-variables.dox +++ b/google/cloud/language/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page language-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/licensemanager/doc/environment-variables.dox b/google/cloud/licensemanager/doc/environment-variables.dox index 2618230a06b23..d16aaf7d34e06 100644 --- a/google/cloud/licensemanager/doc/environment-variables.dox +++ b/google/cloud/licensemanager/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page licensemanager-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/logging/doc/environment-variables.dox b/google/cloud/logging/doc/environment-variables.dox index 787f3c10804d9..0ff0a2ddcc314 100644 --- a/google/cloud/logging/doc/environment-variables.dox +++ b/google/cloud/logging/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page logging-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/logging/doc/override-retry-policies.dox b/google/cloud/logging/doc/override-retry-policies.dox index 7e63b16f04946..35ee9f7e19f1c 100644 --- a/google/cloud/logging/doc/override-retry-policies.dox +++ b/google/cloud/logging/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page logging-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/lustre/doc/environment-variables.dox b/google/cloud/lustre/doc/environment-variables.dox index 950066917209c..31a4da297b091 100644 --- a/google/cloud/lustre/doc/environment-variables.dox +++ b/google/cloud/lustre/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page lustre-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/managedidentities/doc/environment-variables.dox b/google/cloud/managedidentities/doc/environment-variables.dox index 5a79a1cb564d3..dd32f0d1af6fd 100644 --- a/google/cloud/managedidentities/doc/environment-variables.dox +++ b/google/cloud/managedidentities/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page managedidentities-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/managedidentities/doc/override-retry-policies.dox b/google/cloud/managedidentities/doc/override-retry-policies.dox index 4e9a462dc5070..ead687d5934a2 100644 --- a/google/cloud/managedidentities/doc/override-retry-policies.dox +++ b/google/cloud/managedidentities/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page managedidentities-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/managedkafka/doc/environment-variables.dox b/google/cloud/managedkafka/doc/environment-variables.dox index dbac7c75f9f7e..ca07b3daa19e2 100644 --- a/google/cloud/managedkafka/doc/environment-variables.dox +++ b/google/cloud/managedkafka/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page managedkafka-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/memcache/doc/environment-variables.dox b/google/cloud/memcache/doc/environment-variables.dox index 8c93d87356fd7..4fcb0cfabdccc 100644 --- a/google/cloud/memcache/doc/environment-variables.dox +++ b/google/cloud/memcache/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page memcache-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/memcache/doc/override-retry-policies.dox b/google/cloud/memcache/doc/override-retry-policies.dox index 805aa2f772b1e..a7f21e5b532bb 100644 --- a/google/cloud/memcache/doc/override-retry-policies.dox +++ b/google/cloud/memcache/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page memcache-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/memorystore/doc/environment-variables.dox b/google/cloud/memorystore/doc/environment-variables.dox index 317ac7883bb14..a58abb816b61b 100644 --- a/google/cloud/memorystore/doc/environment-variables.dox +++ b/google/cloud/memorystore/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page memorystore-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/metastore/doc/environment-variables.dox b/google/cloud/metastore/doc/environment-variables.dox index 887454d0fee19..8ffab11db8eab 100644 --- a/google/cloud/metastore/doc/environment-variables.dox +++ b/google/cloud/metastore/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page metastore-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/metastore/doc/override-retry-policies.dox b/google/cloud/metastore/doc/override-retry-policies.dox index c6da5cf43adb1..4c00b7c509b4b 100644 --- a/google/cloud/metastore/doc/override-retry-policies.dox +++ b/google/cloud/metastore/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page metastore-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/migrationcenter/doc/environment-variables.dox b/google/cloud/migrationcenter/doc/environment-variables.dox index 687cb6b4195a7..bbc0ba0fe606c 100644 --- a/google/cloud/migrationcenter/doc/environment-variables.dox +++ b/google/cloud/migrationcenter/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page migrationcenter-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/monitoring/doc/environment-variables.dox b/google/cloud/monitoring/doc/environment-variables.dox index 9a9c8be1fb99e..da3b9ef6cf4d6 100644 --- a/google/cloud/monitoring/doc/environment-variables.dox +++ b/google/cloud/monitoring/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page monitoring-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/monitoring/doc/override-retry-policies.dox b/google/cloud/monitoring/doc/override-retry-policies.dox index 3e66fe4ab514e..26fe133590d5c 100644 --- a/google/cloud/monitoring/doc/override-retry-policies.dox +++ b/google/cloud/monitoring/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page monitoring-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/netapp/doc/environment-variables.dox b/google/cloud/netapp/doc/environment-variables.dox index 21e3adbc8553e..b8eb87d6760dd 100644 --- a/google/cloud/netapp/doc/environment-variables.dox +++ b/google/cloud/netapp/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page netapp-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/networkconnectivity/doc/environment-variables.dox b/google/cloud/networkconnectivity/doc/environment-variables.dox index 0eb90c4808301..7e43ae2a38f0d 100644 --- a/google/cloud/networkconnectivity/doc/environment-variables.dox +++ b/google/cloud/networkconnectivity/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page networkconnectivity-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/networkconnectivity/doc/override-retry-policies.dox b/google/cloud/networkconnectivity/doc/override-retry-policies.dox index 7792448678cf8..ae743de1f61fc 100644 --- a/google/cloud/networkconnectivity/doc/override-retry-policies.dox +++ b/google/cloud/networkconnectivity/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page networkconnectivity-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/networkmanagement/doc/environment-variables.dox b/google/cloud/networkmanagement/doc/environment-variables.dox index bf84a230525a7..b0563ef833925 100644 --- a/google/cloud/networkmanagement/doc/environment-variables.dox +++ b/google/cloud/networkmanagement/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page networkmanagement-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/networkmanagement/doc/override-retry-policies.dox b/google/cloud/networkmanagement/doc/override-retry-policies.dox index b87ecf3c738a0..0f97637d7224a 100644 --- a/google/cloud/networkmanagement/doc/override-retry-policies.dox +++ b/google/cloud/networkmanagement/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page networkmanagement-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/networksecurity/doc/environment-variables.dox b/google/cloud/networksecurity/doc/environment-variables.dox index 24c9cf30da1e5..1bf30b35b9b18 100644 --- a/google/cloud/networksecurity/doc/environment-variables.dox +++ b/google/cloud/networksecurity/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page networksecurity-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/networksecurity/doc/override-retry-policies.dox b/google/cloud/networksecurity/doc/override-retry-policies.dox index 21b657f484314..6009ec03cb3cf 100644 --- a/google/cloud/networksecurity/doc/override-retry-policies.dox +++ b/google/cloud/networksecurity/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page networksecurity-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/networkservices/doc/environment-variables.dox b/google/cloud/networkservices/doc/environment-variables.dox index 915b769eae131..495fd6b30d4f6 100644 --- a/google/cloud/networkservices/doc/environment-variables.dox +++ b/google/cloud/networkservices/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page networkservices-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/networkservices/doc/override-retry-policies.dox b/google/cloud/networkservices/doc/override-retry-policies.dox index f74d654c57edc..bd3b221582538 100644 --- a/google/cloud/networkservices/doc/override-retry-policies.dox +++ b/google/cloud/networkservices/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page networkservices-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/notebooks/doc/environment-variables.dox b/google/cloud/notebooks/doc/environment-variables.dox index cce4557580330..1c98cab2acfc2 100644 --- a/google/cloud/notebooks/doc/environment-variables.dox +++ b/google/cloud/notebooks/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page notebooks-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/notebooks/doc/override-retry-policies.dox b/google/cloud/notebooks/doc/override-retry-policies.dox index fc1db2cb8eea4..da4b8b5935ea8 100644 --- a/google/cloud/notebooks/doc/override-retry-policies.dox +++ b/google/cloud/notebooks/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page notebooks-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/optimization/doc/environment-variables.dox b/google/cloud/optimization/doc/environment-variables.dox index 92fcc63d170a6..8a7e26d653f08 100644 --- a/google/cloud/optimization/doc/environment-variables.dox +++ b/google/cloud/optimization/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page optimization-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/optimization/doc/override-retry-policies.dox b/google/cloud/optimization/doc/override-retry-policies.dox index 6bfd36ade5e15..e95b12a55d35d 100644 --- a/google/cloud/optimization/doc/override-retry-policies.dox +++ b/google/cloud/optimization/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page optimization-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/oracledatabase/doc/environment-variables.dox b/google/cloud/oracledatabase/doc/environment-variables.dox index 0710f42bf39ea..019005b88ec6e 100644 --- a/google/cloud/oracledatabase/doc/environment-variables.dox +++ b/google/cloud/oracledatabase/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page oracledatabase-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/orgpolicy/doc/environment-variables.dox b/google/cloud/orgpolicy/doc/environment-variables.dox index 4d1fc0c66a1a5..0013adc1bd1c1 100644 --- a/google/cloud/orgpolicy/doc/environment-variables.dox +++ b/google/cloud/orgpolicy/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page orgpolicy-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/orgpolicy/doc/override-retry-policies.dox b/google/cloud/orgpolicy/doc/override-retry-policies.dox index 00dd03429b47c..5b2c3d50494df 100644 --- a/google/cloud/orgpolicy/doc/override-retry-policies.dox +++ b/google/cloud/orgpolicy/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page orgpolicy-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/osconfig/doc/environment-variables.dox b/google/cloud/osconfig/doc/environment-variables.dox index 1caca057fa9d9..5823fdb71d2ca 100644 --- a/google/cloud/osconfig/doc/environment-variables.dox +++ b/google/cloud/osconfig/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page osconfig-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/osconfig/doc/override-retry-policies.dox b/google/cloud/osconfig/doc/override-retry-policies.dox index c648e5799f6d1..9997e5b4e00b0 100644 --- a/google/cloud/osconfig/doc/override-retry-policies.dox +++ b/google/cloud/osconfig/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page osconfig-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/oslogin/doc/environment-variables.dox b/google/cloud/oslogin/doc/environment-variables.dox index 81372770bcde2..275ac01db4efb 100644 --- a/google/cloud/oslogin/doc/environment-variables.dox +++ b/google/cloud/oslogin/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page oslogin-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/oslogin/doc/override-retry-policies.dox b/google/cloud/oslogin/doc/override-retry-policies.dox index 8c56f208d4b70..ed1a5f69f5ec9 100644 --- a/google/cloud/oslogin/doc/override-retry-policies.dox +++ b/google/cloud/oslogin/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page oslogin-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/parallelstore/doc/environment-variables.dox b/google/cloud/parallelstore/doc/environment-variables.dox index 02709c2ebbb7c..fdb51b1076f4e 100644 --- a/google/cloud/parallelstore/doc/environment-variables.dox +++ b/google/cloud/parallelstore/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page parallelstore-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/parametermanager/doc/environment-variables.dox b/google/cloud/parametermanager/doc/environment-variables.dox index 6f11ece181917..4f9aa95e30dd2 100644 --- a/google/cloud/parametermanager/doc/environment-variables.dox +++ b/google/cloud/parametermanager/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page parametermanager-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/policysimulator/doc/environment-variables.dox b/google/cloud/policysimulator/doc/environment-variables.dox index 64ccdde2b5c41..dfa60ebdbc7d0 100644 --- a/google/cloud/policysimulator/doc/environment-variables.dox +++ b/google/cloud/policysimulator/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page policysimulator-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/policytroubleshooter/doc/environment-variables.dox b/google/cloud/policytroubleshooter/doc/environment-variables.dox index bbbfd9197b1de..66100ae988080 100644 --- a/google/cloud/policytroubleshooter/doc/environment-variables.dox +++ b/google/cloud/policytroubleshooter/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page policytroubleshooter-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/policytroubleshooter/doc/override-retry-policies.dox b/google/cloud/policytroubleshooter/doc/override-retry-policies.dox index f9fc67f8fc866..e2a766d815bbb 100644 --- a/google/cloud/policytroubleshooter/doc/override-retry-policies.dox +++ b/google/cloud/policytroubleshooter/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page policytroubleshooter-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/privateca/doc/environment-variables.dox b/google/cloud/privateca/doc/environment-variables.dox index 10824b6660ebf..c56e7dba93505 100644 --- a/google/cloud/privateca/doc/environment-variables.dox +++ b/google/cloud/privateca/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page privateca-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/privateca/doc/override-retry-policies.dox b/google/cloud/privateca/doc/override-retry-policies.dox index b25f237ed1a70..3e758276bf135 100644 --- a/google/cloud/privateca/doc/override-retry-policies.dox +++ b/google/cloud/privateca/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page privateca-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/privilegedaccessmanager/doc/environment-variables.dox b/google/cloud/privilegedaccessmanager/doc/environment-variables.dox index c48f449774a77..ca674be3d09cc 100644 --- a/google/cloud/privilegedaccessmanager/doc/environment-variables.dox +++ b/google/cloud/privilegedaccessmanager/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page privilegedaccessmanager-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/profiler/doc/environment-variables.dox b/google/cloud/profiler/doc/environment-variables.dox index bd4a0e9190ae9..498b6c80e0374 100644 --- a/google/cloud/profiler/doc/environment-variables.dox +++ b/google/cloud/profiler/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page profiler-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/profiler/doc/override-retry-policies.dox b/google/cloud/profiler/doc/override-retry-policies.dox index 99e84338a7bb5..99275ca3c14fb 100644 --- a/google/cloud/profiler/doc/override-retry-policies.dox +++ b/google/cloud/profiler/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page profiler-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/publicca/doc/environment-variables.dox b/google/cloud/publicca/doc/environment-variables.dox index 5ab766edf1d63..d78434d439e20 100644 --- a/google/cloud/publicca/doc/environment-variables.dox +++ b/google/cloud/publicca/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page publicca-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/pubsublite/doc/environment-variables.dox b/google/cloud/pubsublite/doc/environment-variables.dox index 2449491a317ad..f56d226e4788b 100644 --- a/google/cloud/pubsublite/doc/environment-variables.dox +++ b/google/cloud/pubsublite/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page pubsublite-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/pubsublite/doc/override-retry-policies.dox b/google/cloud/pubsublite/doc/override-retry-policies.dox index 75f138d8600e0..7bb61e8428db0 100644 --- a/google/cloud/pubsublite/doc/override-retry-policies.dox +++ b/google/cloud/pubsublite/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page pubsublite-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/rapidmigrationassessment/doc/environment-variables.dox b/google/cloud/rapidmigrationassessment/doc/environment-variables.dox index 70a87bd6fc0e2..c9b606facb35c 100644 --- a/google/cloud/rapidmigrationassessment/doc/environment-variables.dox +++ b/google/cloud/rapidmigrationassessment/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page rapidmigrationassessment-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/recaptchaenterprise/doc/environment-variables.dox b/google/cloud/recaptchaenterprise/doc/environment-variables.dox index abe1d21987ec4..6af53ad8167cb 100644 --- a/google/cloud/recaptchaenterprise/doc/environment-variables.dox +++ b/google/cloud/recaptchaenterprise/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page recaptchaenterprise-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/recaptchaenterprise/doc/override-retry-policies.dox b/google/cloud/recaptchaenterprise/doc/override-retry-policies.dox index 306d9aa3aac5a..72c0291db7989 100644 --- a/google/cloud/recaptchaenterprise/doc/override-retry-policies.dox +++ b/google/cloud/recaptchaenterprise/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page recaptchaenterprise-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/recommender/doc/environment-variables.dox b/google/cloud/recommender/doc/environment-variables.dox index e711a0dd707cc..8d97834506405 100644 --- a/google/cloud/recommender/doc/environment-variables.dox +++ b/google/cloud/recommender/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page recommender-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/recommender/doc/options.dox b/google/cloud/recommender/doc/options.dox index 7f73ae0152636..5e46063fa558c 100644 --- a/google/cloud/recommender/doc/options.dox +++ b/google/cloud/recommender/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-recommender-options Recommender Configuration Options +@defgroup google-cloud-recommender-options Recommender API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/recommender/doc/override-retry-policies.dox b/google/cloud/recommender/doc/override-retry-policies.dox index 4949b085bcdbd..b24155d50ff44 100644 --- a/google/cloud/recommender/doc/override-retry-policies.dox +++ b/google/cloud/recommender/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page recommender-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/redis/doc/environment-variables.dox b/google/cloud/redis/doc/environment-variables.dox index 30a11815c1410..56443099c19ba 100644 --- a/google/cloud/redis/doc/environment-variables.dox +++ b/google/cloud/redis/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page redis-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/resourcemanager/doc/environment-variables.dox b/google/cloud/resourcemanager/doc/environment-variables.dox index 094fe1f14c04d..90d49fa63b9ff 100644 --- a/google/cloud/resourcemanager/doc/environment-variables.dox +++ b/google/cloud/resourcemanager/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page resourcemanager-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/resourcemanager/doc/override-retry-policies.dox b/google/cloud/resourcemanager/doc/override-retry-policies.dox index e051656b621a2..128ae4308f5d1 100644 --- a/google/cloud/resourcemanager/doc/override-retry-policies.dox +++ b/google/cloud/resourcemanager/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page resourcemanager-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/retail/doc/environment-variables.dox b/google/cloud/retail/doc/environment-variables.dox index a4e62ab9be5fc..31134b1552c37 100644 --- a/google/cloud/retail/doc/environment-variables.dox +++ b/google/cloud/retail/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page retail-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/retail/doc/options.dox b/google/cloud/retail/doc/options.dox index cbf60a409d3dd..f55930910965c 100644 --- a/google/cloud/retail/doc/options.dox +++ b/google/cloud/retail/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-retail-options Retail API Configuration Options +@defgroup google-cloud-retail-options Vertex AI Search for commerce API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/retail/doc/override-retry-policies.dox b/google/cloud/retail/doc/override-retry-policies.dox index 669b39c50456e..9da2b19b242e8 100644 --- a/google/cloud/retail/doc/override-retry-policies.dox +++ b/google/cloud/retail/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page retail-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/run/doc/environment-variables.dox b/google/cloud/run/doc/environment-variables.dox index 6f2f4852ac52f..181ba77b95539 100644 --- a/google/cloud/run/doc/environment-variables.dox +++ b/google/cloud/run/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page run-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/run/doc/override-retry-policies.dox b/google/cloud/run/doc/override-retry-policies.dox index 4249a9d46b4bc..74e34bebea5ca 100644 --- a/google/cloud/run/doc/override-retry-policies.dox +++ b/google/cloud/run/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page run-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/scheduler/doc/environment-variables.dox b/google/cloud/scheduler/doc/environment-variables.dox index a76a3875f8829..bf5cafb29992c 100644 --- a/google/cloud/scheduler/doc/environment-variables.dox +++ b/google/cloud/scheduler/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page scheduler-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/scheduler/doc/override-retry-policies.dox b/google/cloud/scheduler/doc/override-retry-policies.dox index c242a9158aeb9..a801f0208cfba 100644 --- a/google/cloud/scheduler/doc/override-retry-policies.dox +++ b/google/cloud/scheduler/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page scheduler-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/secretmanager/doc/environment-variables.dox b/google/cloud/secretmanager/doc/environment-variables.dox index 4e11b4fdcda00..2145607d9955c 100644 --- a/google/cloud/secretmanager/doc/environment-variables.dox +++ b/google/cloud/secretmanager/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page secretmanager-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/secretmanager/doc/override-retry-policies.dox b/google/cloud/secretmanager/doc/override-retry-policies.dox index e70453095bb22..7d8beb675fcd4 100644 --- a/google/cloud/secretmanager/doc/override-retry-policies.dox +++ b/google/cloud/secretmanager/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page secretmanager-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/securesourcemanager/doc/environment-variables.dox b/google/cloud/securesourcemanager/doc/environment-variables.dox index 620e37087ff1c..0bd13438524da 100644 --- a/google/cloud/securesourcemanager/doc/environment-variables.dox +++ b/google/cloud/securesourcemanager/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page securesourcemanager-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/securitycenter/doc/environment-variables.dox b/google/cloud/securitycenter/doc/environment-variables.dox index 60fbecbd0e56e..f8d50a609fbdd 100644 --- a/google/cloud/securitycenter/doc/environment-variables.dox +++ b/google/cloud/securitycenter/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page securitycenter-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/securitycenter/doc/override-retry-policies.dox b/google/cloud/securitycenter/doc/override-retry-policies.dox index 6fe4a3c3345ff..8e081999396d8 100644 --- a/google/cloud/securitycenter/doc/override-retry-policies.dox +++ b/google/cloud/securitycenter/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page securitycenter-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/securitycentermanagement/doc/environment-variables.dox b/google/cloud/securitycentermanagement/doc/environment-variables.dox index 5b0542707f084..0ff529fb9fd69 100644 --- a/google/cloud/securitycentermanagement/doc/environment-variables.dox +++ b/google/cloud/securitycentermanagement/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page securitycentermanagement-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/securitycentermanagement/doc/options.dox b/google/cloud/securitycentermanagement/doc/options.dox index 5b857412f5dd8..7104510b54156 100644 --- a/google/cloud/securitycentermanagement/doc/options.dox +++ b/google/cloud/securitycentermanagement/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-securitycentermanagement-options Security Center Management API Configuration Options +@defgroup google-cloud-securitycentermanagement-options Security Command Center Management API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/servicecontrol/doc/environment-variables.dox b/google/cloud/servicecontrol/doc/environment-variables.dox index fba46f2660b3d..dc6e1a4c4ba47 100644 --- a/google/cloud/servicecontrol/doc/environment-variables.dox +++ b/google/cloud/servicecontrol/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page servicecontrol-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/servicecontrol/doc/override-retry-policies.dox b/google/cloud/servicecontrol/doc/override-retry-policies.dox index 0669b46ef2c25..3d0bf246fb781 100644 --- a/google/cloud/servicecontrol/doc/override-retry-policies.dox +++ b/google/cloud/servicecontrol/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page servicecontrol-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/servicedirectory/doc/environment-variables.dox b/google/cloud/servicedirectory/doc/environment-variables.dox index 87dcaf66a07a2..8a4979da48eee 100644 --- a/google/cloud/servicedirectory/doc/environment-variables.dox +++ b/google/cloud/servicedirectory/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page servicedirectory-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/servicedirectory/doc/override-retry-policies.dox b/google/cloud/servicedirectory/doc/override-retry-policies.dox index 957de047b9dd2..c8184362afbeb 100644 --- a/google/cloud/servicedirectory/doc/override-retry-policies.dox +++ b/google/cloud/servicedirectory/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page servicedirectory-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/servicehealth/doc/environment-variables.dox b/google/cloud/servicehealth/doc/environment-variables.dox index ea1d62b7f19c0..b424c0c45954e 100644 --- a/google/cloud/servicehealth/doc/environment-variables.dox +++ b/google/cloud/servicehealth/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page servicehealth-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/servicemanagement/doc/environment-variables.dox b/google/cloud/servicemanagement/doc/environment-variables.dox index 94b41cb2624fa..0d43e0056acb0 100644 --- a/google/cloud/servicemanagement/doc/environment-variables.dox +++ b/google/cloud/servicemanagement/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page servicemanagement-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/servicemanagement/doc/override-retry-policies.dox b/google/cloud/servicemanagement/doc/override-retry-policies.dox index 777244b2e2524..50c2e7aaa1c65 100644 --- a/google/cloud/servicemanagement/doc/override-retry-policies.dox +++ b/google/cloud/servicemanagement/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page servicemanagement-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/serviceusage/doc/environment-variables.dox b/google/cloud/serviceusage/doc/environment-variables.dox index 26f872fc4f7bd..bc4ff5a5029b8 100644 --- a/google/cloud/serviceusage/doc/environment-variables.dox +++ b/google/cloud/serviceusage/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page serviceusage-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/serviceusage/doc/override-retry-policies.dox b/google/cloud/serviceusage/doc/override-retry-policies.dox index 816ae04a0d73d..a85011e970640 100644 --- a/google/cloud/serviceusage/doc/override-retry-policies.dox +++ b/google/cloud/serviceusage/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page serviceusage-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/shell/doc/environment-variables.dox b/google/cloud/shell/doc/environment-variables.dox index 2d339dfd402c4..dbbba859ffda4 100644 --- a/google/cloud/shell/doc/environment-variables.dox +++ b/google/cloud/shell/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page shell-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/shell/doc/override-retry-policies.dox b/google/cloud/shell/doc/override-retry-policies.dox index 2a0856fe1aa7d..328f6a951751f 100644 --- a/google/cloud/shell/doc/override-retry-policies.dox +++ b/google/cloud/shell/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page shell-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/speech/doc/environment-variables.dox b/google/cloud/speech/doc/environment-variables.dox index 5f8c42ed2fed4..03d884bebecdf 100644 --- a/google/cloud/speech/doc/environment-variables.dox +++ b/google/cloud/speech/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page speech-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/speech/doc/override-retry-policies.dox b/google/cloud/speech/doc/override-retry-policies.dox index ceefd28916871..f426123d21204 100644 --- a/google/cloud/speech/doc/override-retry-policies.dox +++ b/google/cloud/speech/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page speech-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/sql/doc/environment-variables.dox b/google/cloud/sql/doc/environment-variables.dox index 4c2d3e211a0b4..6ae0c5ed1b2a7 100644 --- a/google/cloud/sql/doc/environment-variables.dox +++ b/google/cloud/sql/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page sql-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/sql/doc/override-retry-policies.dox b/google/cloud/sql/doc/override-retry-policies.dox index 42606cccc5b1d..ebc500df9ac9c 100644 --- a/google/cloud/sql/doc/override-retry-policies.dox +++ b/google/cloud/sql/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page sql-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/storagebatchoperations/doc/environment-variables.dox b/google/cloud/storagebatchoperations/doc/environment-variables.dox index c5b15e2dccc91..38fdf8e7ae674 100644 --- a/google/cloud/storagebatchoperations/doc/environment-variables.dox +++ b/google/cloud/storagebatchoperations/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page storagebatchoperations-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/storagecontrol/doc/environment-variables.dox b/google/cloud/storagecontrol/doc/environment-variables.dox index 3d2afa890fce7..e16a34e67bdf0 100644 --- a/google/cloud/storagecontrol/doc/environment-variables.dox +++ b/google/cloud/storagecontrol/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page storagecontrol-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/storagecontrol/doc/options.dox b/google/cloud/storagecontrol/doc/options.dox index 0d90e22e26633..cbfacbcff5717 100644 --- a/google/cloud/storagecontrol/doc/options.dox +++ b/google/cloud/storagecontrol/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-storagecontrol-options Cloud Storage Control API Configuration Options +@defgroup google-cloud-storagecontrol-options Storage Control API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/storageinsights/doc/environment-variables.dox b/google/cloud/storageinsights/doc/environment-variables.dox index 9dee4cb5a3e5e..823c81b94af89 100644 --- a/google/cloud/storageinsights/doc/environment-variables.dox +++ b/google/cloud/storageinsights/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page storageinsights-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/storageinsights/doc/override-retry-policies.dox b/google/cloud/storageinsights/doc/override-retry-policies.dox index 059e2b206ba89..affeb6ced2641 100644 --- a/google/cloud/storageinsights/doc/override-retry-policies.dox +++ b/google/cloud/storageinsights/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page storageinsights-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/storagetransfer/doc/environment-variables.dox b/google/cloud/storagetransfer/doc/environment-variables.dox index 1a55b6fb09a80..5c429a16437d5 100644 --- a/google/cloud/storagetransfer/doc/environment-variables.dox +++ b/google/cloud/storagetransfer/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page storagetransfer-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/storagetransfer/doc/override-retry-policies.dox b/google/cloud/storagetransfer/doc/override-retry-policies.dox index b3b3cdbd27fec..ea63a9e82aea8 100644 --- a/google/cloud/storagetransfer/doc/override-retry-policies.dox +++ b/google/cloud/storagetransfer/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page storagetransfer-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/support/doc/environment-variables.dox b/google/cloud/support/doc/environment-variables.dox index e2f2adfb0ff54..88dc61f2dcbb7 100644 --- a/google/cloud/support/doc/environment-variables.dox +++ b/google/cloud/support/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page support-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/support/doc/override-retry-policies.dox b/google/cloud/support/doc/override-retry-policies.dox index ac1a4715bdf1d..d820301cbc83e 100644 --- a/google/cloud/support/doc/override-retry-policies.dox +++ b/google/cloud/support/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page support-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/talent/doc/environment-variables.dox b/google/cloud/talent/doc/environment-variables.dox index 5068fde59d986..ab61b52bf93cb 100644 --- a/google/cloud/talent/doc/environment-variables.dox +++ b/google/cloud/talent/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page talent-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/talent/doc/options.dox b/google/cloud/talent/doc/options.dox index e5c7458943c2e..e78fdd18d5603 100644 --- a/google/cloud/talent/doc/options.dox +++ b/google/cloud/talent/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-talent-options Cloud Talent Solution Configuration Options +@defgroup google-cloud-talent-options Cloud Talent Solution API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/talent/doc/override-retry-policies.dox b/google/cloud/talent/doc/override-retry-policies.dox index be149ba1a9183..d2114832b4b93 100644 --- a/google/cloud/talent/doc/override-retry-policies.dox +++ b/google/cloud/talent/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page talent-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/tasks/doc/environment-variables.dox b/google/cloud/tasks/doc/environment-variables.dox index 2e4c86db55579..7d4488a151179 100644 --- a/google/cloud/tasks/doc/environment-variables.dox +++ b/google/cloud/tasks/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page tasks-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/tasks/doc/override-retry-policies.dox b/google/cloud/tasks/doc/override-retry-policies.dox index 08d2ad8f90092..2fb8739806fc4 100644 --- a/google/cloud/tasks/doc/override-retry-policies.dox +++ b/google/cloud/tasks/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page tasks-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/telcoautomation/doc/environment-variables.dox b/google/cloud/telcoautomation/doc/environment-variables.dox index 93bf251bc3eda..6505fb90ea987 100644 --- a/google/cloud/telcoautomation/doc/environment-variables.dox +++ b/google/cloud/telcoautomation/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page telcoautomation-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/texttospeech/doc/environment-variables.dox b/google/cloud/texttospeech/doc/environment-variables.dox index 79c061de17cd2..4af5e597a3e06 100644 --- a/google/cloud/texttospeech/doc/environment-variables.dox +++ b/google/cloud/texttospeech/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page texttospeech-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/texttospeech/doc/override-retry-policies.dox b/google/cloud/texttospeech/doc/override-retry-policies.dox index a8a62408ea40e..57f665d97b9af 100644 --- a/google/cloud/texttospeech/doc/override-retry-policies.dox +++ b/google/cloud/texttospeech/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page texttospeech-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/timeseriesinsights/doc/environment-variables.dox b/google/cloud/timeseriesinsights/doc/environment-variables.dox index 92ac561797b3c..9a06a833330a2 100644 --- a/google/cloud/timeseriesinsights/doc/environment-variables.dox +++ b/google/cloud/timeseriesinsights/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page timeseriesinsights-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/timeseriesinsights/doc/override-retry-policies.dox b/google/cloud/timeseriesinsights/doc/override-retry-policies.dox index c24d4d67bb137..534dcc8b620b8 100644 --- a/google/cloud/timeseriesinsights/doc/override-retry-policies.dox +++ b/google/cloud/timeseriesinsights/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page timeseriesinsights-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/tpu/doc/environment-variables.dox b/google/cloud/tpu/doc/environment-variables.dox index 5e6c752eb8323..8a027fdf373d3 100644 --- a/google/cloud/tpu/doc/environment-variables.dox +++ b/google/cloud/tpu/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page tpu-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/tpu/doc/override-retry-policies.dox b/google/cloud/tpu/doc/override-retry-policies.dox index 05f4761c08783..52ec3981e912f 100644 --- a/google/cloud/tpu/doc/override-retry-policies.dox +++ b/google/cloud/tpu/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page tpu-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/trace/doc/environment-variables.dox b/google/cloud/trace/doc/environment-variables.dox index 4ad11cf287556..830c1c5527ee4 100644 --- a/google/cloud/trace/doc/environment-variables.dox +++ b/google/cloud/trace/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page trace-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/trace/doc/options.dox b/google/cloud/trace/doc/options.dox index 5a5b3af965bba..7d80cf367f436 100644 --- a/google/cloud/trace/doc/options.dox +++ b/google/cloud/trace/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-trace-options Cloud Trace API Configuration Options +@defgroup google-cloud-trace-options Stackdriver Trace API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/trace/doc/override-retry-policies.dox b/google/cloud/trace/doc/override-retry-policies.dox index 94fe1df69056d..cc2321911091b 100644 --- a/google/cloud/trace/doc/override-retry-policies.dox +++ b/google/cloud/trace/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page trace-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/translate/doc/environment-variables.dox b/google/cloud/translate/doc/environment-variables.dox index 9b7ea100bdc06..2709d6d1d519e 100644 --- a/google/cloud/translate/doc/environment-variables.dox +++ b/google/cloud/translate/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page translate-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/translate/doc/override-retry-policies.dox b/google/cloud/translate/doc/override-retry-policies.dox index 457cba1d5492d..45ad708a2dace 100644 --- a/google/cloud/translate/doc/override-retry-policies.dox +++ b/google/cloud/translate/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page translate-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/video/doc/environment-variables.dox b/google/cloud/video/doc/environment-variables.dox index 3aa37a70100b3..5e61a4893e2a9 100644 --- a/google/cloud/video/doc/environment-variables.dox +++ b/google/cloud/video/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page video-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/video/doc/override-retry-policies.dox b/google/cloud/video/doc/override-retry-policies.dox index 1a6f5eed23ea0..23654475a4ea1 100644 --- a/google/cloud/video/doc/override-retry-policies.dox +++ b/google/cloud/video/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page video-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/videointelligence/doc/environment-variables.dox b/google/cloud/videointelligence/doc/environment-variables.dox index e021543ddd6a3..5cc33038527a4 100644 --- a/google/cloud/videointelligence/doc/environment-variables.dox +++ b/google/cloud/videointelligence/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page videointelligence-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/videointelligence/doc/override-retry-policies.dox b/google/cloud/videointelligence/doc/override-retry-policies.dox index 27b36162af370..c3e70f5d261e6 100644 --- a/google/cloud/videointelligence/doc/override-retry-policies.dox +++ b/google/cloud/videointelligence/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page videointelligence-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/vision/doc/environment-variables.dox b/google/cloud/vision/doc/environment-variables.dox index 247521c310b82..4c464c2d734df 100644 --- a/google/cloud/vision/doc/environment-variables.dox +++ b/google/cloud/vision/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page vision-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/vision/doc/override-retry-policies.dox b/google/cloud/vision/doc/override-retry-policies.dox index 80ad9cdf0fc7e..df27e40a951ae 100644 --- a/google/cloud/vision/doc/override-retry-policies.dox +++ b/google/cloud/vision/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page vision-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/vmmigration/doc/environment-variables.dox b/google/cloud/vmmigration/doc/environment-variables.dox index c8806e58b7f02..f8ffb9df424fa 100644 --- a/google/cloud/vmmigration/doc/environment-variables.dox +++ b/google/cloud/vmmigration/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page vmmigration-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/vmmigration/doc/override-retry-policies.dox b/google/cloud/vmmigration/doc/override-retry-policies.dox index b793963d72c47..959083d6e1ee0 100644 --- a/google/cloud/vmmigration/doc/override-retry-policies.dox +++ b/google/cloud/vmmigration/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page vmmigration-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/vmwareengine/doc/environment-variables.dox b/google/cloud/vmwareengine/doc/environment-variables.dox index 4d33fcaa2fc1c..553b564c2cb1d 100644 --- a/google/cloud/vmwareengine/doc/environment-variables.dox +++ b/google/cloud/vmwareengine/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page vmwareengine-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/vmwareengine/doc/override-retry-policies.dox b/google/cloud/vmwareengine/doc/override-retry-policies.dox index 818ebd7081828..d7913288131ef 100644 --- a/google/cloud/vmwareengine/doc/override-retry-policies.dox +++ b/google/cloud/vmwareengine/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page vmwareengine-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/vpcaccess/doc/environment-variables.dox b/google/cloud/vpcaccess/doc/environment-variables.dox index 67555d68d1691..78c5c55daea47 100644 --- a/google/cloud/vpcaccess/doc/environment-variables.dox +++ b/google/cloud/vpcaccess/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page vpcaccess-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/vpcaccess/doc/override-retry-policies.dox b/google/cloud/vpcaccess/doc/override-retry-policies.dox index e691a006be4b5..a64bcbaeb09a7 100644 --- a/google/cloud/vpcaccess/doc/override-retry-policies.dox +++ b/google/cloud/vpcaccess/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page vpcaccess-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/webrisk/doc/environment-variables.dox b/google/cloud/webrisk/doc/environment-variables.dox index 308024c59d3ea..58993f0eeeaf5 100644 --- a/google/cloud/webrisk/doc/environment-variables.dox +++ b/google/cloud/webrisk/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page webrisk-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/webrisk/doc/override-retry-policies.dox b/google/cloud/webrisk/doc/override-retry-policies.dox index f5dc793a48339..f102826638a17 100644 --- a/google/cloud/webrisk/doc/override-retry-policies.dox +++ b/google/cloud/webrisk/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page webrisk-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/websecurityscanner/doc/environment-variables.dox b/google/cloud/websecurityscanner/doc/environment-variables.dox index b9b2887d31ee5..c17b1797328a1 100644 --- a/google/cloud/websecurityscanner/doc/environment-variables.dox +++ b/google/cloud/websecurityscanner/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page websecurityscanner-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/websecurityscanner/doc/override-retry-policies.dox b/google/cloud/websecurityscanner/doc/override-retry-policies.dox index 6425def64a5f9..b78ff554507b4 100644 --- a/google/cloud/websecurityscanner/doc/override-retry-policies.dox +++ b/google/cloud/websecurityscanner/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page websecurityscanner-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/workflows/doc/environment-variables.dox b/google/cloud/workflows/doc/environment-variables.dox index a6bcee6480f69..67f61422a95b6 100644 --- a/google/cloud/workflows/doc/environment-variables.dox +++ b/google/cloud/workflows/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page workflows-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/workflows/doc/options.dox b/google/cloud/workflows/doc/options.dox index 828b146aca612..2ed88299ba0e5 100644 --- a/google/cloud/workflows/doc/options.dox +++ b/google/cloud/workflows/doc/options.dox @@ -1,5 +1,5 @@ /*! -@defgroup google-cloud-workflows-options Workflows API Configuration Options +@defgroup google-cloud-workflows-options Workflow Executions API Configuration Options This library uses the same mechanism (`google::cloud::Options`) and the common [options](@ref options) as all other C++ client libraries for its configuration. diff --git a/google/cloud/workflows/doc/override-retry-policies.dox b/google/cloud/workflows/doc/override-retry-policies.dox index c73d4558ad5fc..60232d82c81a2 100644 --- a/google/cloud/workflows/doc/override-retry-policies.dox +++ b/google/cloud/workflows/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page workflows-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail diff --git a/google/cloud/workstations/doc/environment-variables.dox b/google/cloud/workstations/doc/environment-variables.dox index f4fcc87869e60..0e0c96d6ac4e2 100644 --- a/google/cloud/workstations/doc/environment-variables.dox +++ b/google/cloud/workstations/doc/environment-variables.dox @@ -1,5 +1,4 @@ /*! - @page workstations-env Environment Variables A number of environment variables can be used to configure the behavior of diff --git a/google/cloud/workstations/doc/override-retry-policies.dox b/google/cloud/workstations/doc/override-retry-policies.dox index 5c46382a94cf3..e47c3d820587a 100644 --- a/google/cloud/workstations/doc/override-retry-policies.dox +++ b/google/cloud/workstations/doc/override-retry-policies.dox @@ -1,5 +1,4 @@ /*! - @page workstations-override-retry Override Retry, Backoff, and Idempotency Policies When it is safe to do so, the library automatically retries requests that fail