├── .bazelci └── presubmit.yml ├── .bazelignore ├── .bazelrc ├── .bazelversion ├── .clang-format ├── .clang-tidy ├── .cmake-format.py ├── .codecov.yml ├── .dockerignore ├── .editorconfig ├── .gemini └── styleguide.md ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── internal-cleanup.md ├── release-trigger.yml ├── renovate.json ├── snippet-bot.yml ├── trusted-contribution.yml └── workflows │ ├── codeql-analysis.yml │ ├── external-account-integration.yml │ ├── macos-bazel.yml │ ├── macos-cmake.yml │ ├── test-runner-untrusted.yml │ ├── test-runner.yml │ ├── windows-bazel.yml │ └── windows-cmake.yml ├── .gitignore ├── .mdformat.toml ├── .typos.toml ├── ARCHITECTURE.md ├── BUILD.bazel ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MODULE.bazel ├── README.md ├── SECURITY.md ├── WORKSPACE.bazel ├── WORKSPACE.bzlmod ├── bazel ├── BUILD.bazel ├── bzlmod0.bzl ├── bzlmod1.bzl ├── configure_template.bzl.patch ├── crc32c.BUILD ├── curl.BUILD ├── deps-cache.py ├── development0.bzl ├── development1.bzl ├── development2.bzl ├── downloader.cfg ├── gapic.bzl ├── google_cloud_cpp_deps.bzl ├── googleapis.BUILD ├── googleapis.modules.patch ├── libpfm.BUILD ├── library_names.bzl ├── pugixml.BUILD ├── workspace0.bzl ├── workspace1.bzl ├── workspace2.bzl ├── workspace3.bzl ├── workspace4.bzl └── workspace5.bzl ├── ci ├── .dockerignore ├── check-include-guards.gawk ├── cloudbuild │ ├── README.md │ ├── build.sh │ ├── builds │ │ ├── asan.sh │ │ ├── bazel-oldest.sh │ │ ├── bazel-otel-abi-2.sh │ │ ├── bazel-targets.sh │ │ ├── check-api.sh │ │ ├── checkers.sh │ │ ├── clang-7.0.sh │ │ ├── clang-cxx20.sh │ │ ├── clang-tidy-compute.sh │ │ ├── clang-tidy.sh │ │ ├── cmake-gcs-rest.sh │ │ ├── cmake-install.sh │ │ ├── cmake-oldest-deps.sh │ │ ├── cmake-single-feature.sh │ │ ├── cmake-split-install.sh │ │ ├── conformance.sh │ │ ├── coverage.sh │ │ ├── cxx14.sh │ │ ├── cxx20.sh │ │ ├── demo-install.sh │ │ ├── development.sh │ │ ├── gcc-oldest.sh │ │ ├── generate-libraries.sh │ │ ├── grpc-at-head.sh │ │ ├── integration-daily.sh │ │ ├── integration-production.sh │ │ ├── lib │ │ │ ├── bazel.sh │ │ │ ├── cloudcxxrc.sh │ │ │ ├── cmake.sh │ │ │ ├── conformance.sh │ │ │ ├── ctest.sh │ │ │ ├── features.sh │ │ │ ├── git.sh │ │ │ ├── integration.sh │ │ │ ├── quickstart.sh │ │ │ ├── universe_domain.sh │ │ │ └── vcpkg.sh │ │ ├── libcxx.sh │ │ ├── m32.sh │ │ ├── msan.sh │ │ ├── noex.sh │ │ ├── otel-disabled-bazel.sh │ │ ├── protobuf-at-head.sh │ │ ├── publish-docs.sh │ │ ├── quickstart-bazel.sh │ │ ├── quickstart-cmake.sh │ │ ├── quickstart-production.sh │ │ ├── rotate-keys.sh │ │ ├── scan-build.sh │ │ ├── shared.sh │ │ ├── tsan.sh │ │ ├── ubsan.sh │ │ ├── universe-domain.sh │ │ └── xsan.sh │ ├── cloudbuild.yaml │ ├── convert-to-branch-triggers.sh │ ├── dockerfiles │ │ ├── checkers.Dockerfile │ │ ├── debian-github.Dockerfile │ │ ├── demo-alpine-stable.Dockerfile │ │ ├── demo-debian-bookworm.Dockerfile │ │ ├── demo-debian-bullseye.Dockerfile │ │ ├── demo-fedora.Dockerfile │ │ ├── demo-opensuse-leap.Dockerfile │ │ ├── demo-rockylinux-9.Dockerfile │ │ ├── demo-ubuntu-24.04.Dockerfile │ │ ├── demo-ubuntu-focal.Dockerfile │ │ ├── demo-ubuntu-jammy.Dockerfile │ │ ├── fedora-latest-bazel.Dockerfile │ │ ├── fedora-latest-cmake.Dockerfile │ │ ├── fedora-latest-cxx14.Dockerfile │ │ ├── fedora-latest-cxx20.Dockerfile │ │ ├── fedora-latest-publish-docs.Dockerfile │ │ ├── fedora-m32.Dockerfile │ │ ├── fedora-msan.Dockerfile │ │ ├── gcc-oldest.Dockerfile │ │ ├── ubuntu-20.04-install.Dockerfile │ │ ├── ubuntu-24.04.Dockerfile │ │ └── ubuntu-focal.Dockerfile │ ├── notifiers │ │ ├── alerts │ │ │ ├── README.md │ │ │ ├── deploy.sh │ │ │ └── function │ │ │ │ ├── .gcloudignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── function.cc │ │ │ │ └── vcpkg.json │ │ ├── bigquery │ │ │ ├── README.md │ │ │ ├── bigquery.yaml │ │ │ └── deploy.sh │ │ └── logs │ │ │ ├── README.md │ │ │ └── function │ │ │ ├── CMakeLists.txt │ │ │ ├── function.cc │ │ │ ├── generate_svg_badge.cc │ │ │ ├── generate_svg_badge.h │ │ │ ├── print_svg_badge.cc │ │ │ └── vcpkg.json │ ├── schedule.sh │ ├── schedules │ │ ├── clang-tidy-compute-schedule.json │ │ ├── grpc-at-head-schedule.json │ │ ├── integration-daily-schedule.json │ │ ├── protobuf-at-head-schedule.json │ │ └── rotate-keys-schedule.json │ ├── trigger.sh │ └── triggers │ │ ├── asan-ci.yaml │ │ ├── asan-pr.yaml │ │ ├── bazel-oldest-ci.yaml │ │ ├── bazel-oldest-pr.yaml │ │ ├── bazel-otel-abi-2-ci.yaml │ │ ├── bazel-otel-abi-2-pr.yaml │ │ ├── bazel-targets-ci.yaml │ │ ├── bazel-targets-pr.yaml │ │ ├── check-api-ci.yaml │ │ ├── check-api-pr.yaml │ │ ├── checkers-ci.yaml │ │ ├── checkers-pr.yaml │ │ ├── clang-7-0-ci.yaml │ │ ├── clang-7-0-pr.yaml │ │ ├── clang-cxx20-ci.yaml │ │ ├── clang-cxx20-pr.yaml │ │ ├── clang-tidy-bigquery-ci.yaml │ │ ├── clang-tidy-bigquery-pr.yaml │ │ ├── clang-tidy-ci.yaml │ │ ├── clang-tidy-compute.yaml │ │ ├── clang-tidy-pr.yaml │ │ ├── clang-tidy-pubsub-ci.yaml │ │ ├── clang-tidy-pubsub-pr.yaml │ │ ├── clang-tidy-storage-ci.yaml │ │ ├── clang-tidy-storage-pr.yaml │ │ ├── clang-tidy-tools-ci.yaml │ │ ├── clang-tidy-tools-pr.yaml │ │ ├── cmake-gcs-rest-ci.yaml │ │ ├── cmake-gcs-rest-pr.yaml │ │ ├── cmake-install-ci.yaml │ │ ├── cmake-install-pr.yaml │ │ ├── cmake-oldest-deps-ci.yaml │ │ ├── cmake-oldest-deps-pr.yaml │ │ ├── cmake-single-feature-ci.yaml │ │ ├── cmake-single-feature-pr.yaml │ │ ├── cmake-split-install-ci.yaml │ │ ├── cmake-split-install-pr.yaml │ │ ├── conformance-ci.yaml │ │ ├── conformance-pr.yaml │ │ ├── coverage-ci.yaml │ │ ├── coverage-pr.yaml │ │ ├── cxx14-ci.yaml │ │ ├── cxx14-pr.yaml │ │ ├── cxx20-ci.yaml │ │ ├── cxx20-pr.yaml │ │ ├── demo-alpine-stable-ci.yaml │ │ ├── demo-alpine-stable-pr.yaml │ │ ├── demo-debian-bookworm-ci.yaml │ │ ├── demo-debian-bookworm-pr.yaml │ │ ├── demo-debian-bullseye-ci.yaml │ │ ├── demo-debian-bullseye-pr.yaml │ │ ├── demo-fedora-ci.yaml │ │ ├── demo-fedora-pr.yaml │ │ ├── demo-opensuse-leap-ci.yaml │ │ ├── demo-opensuse-leap-pr.yaml │ │ ├── demo-rockylinux-9-ci.yaml │ │ ├── demo-rockylinux-9-pr.yaml │ │ ├── demo-ubuntu-24-04-ci.yaml │ │ ├── demo-ubuntu-24-04-pr.yaml │ │ ├── demo-ubuntu-focal-ci.yaml │ │ ├── demo-ubuntu-focal-pr.yaml │ │ ├── demo-ubuntu-jammy-ci.yaml │ │ ├── demo-ubuntu-jammy-pr.yaml │ │ ├── gcc-oldest-ci.yaml │ │ ├── gcc-oldest-pr.yaml │ │ ├── generate-libraries-ci.yaml │ │ ├── generate-libraries-pr.yaml │ │ ├── grpc-at-head.yaml │ │ ├── integration-daily.yaml │ │ ├── integration-production-ci.yaml │ │ ├── integration-production-pr.yaml │ │ ├── libcxx-ci.yaml │ │ ├── libcxx-pr.yaml │ │ ├── m32-ci.yaml │ │ ├── m32-pr.yaml │ │ ├── msan-ci.yaml │ │ ├── msan-pr.yaml │ │ ├── noex-ci.yaml │ │ ├── noex-pr.yaml │ │ ├── otel-disabled-bazel-ci.yaml │ │ ├── otel-disabled-bazel-pr.yaml │ │ ├── protobuf-at-head.yaml │ │ ├── publish-docs-ci.yaml │ │ ├── publish-docs-compute-pr.yaml │ │ ├── publish-docs-pr.yaml │ │ ├── publish-docs-release.yaml │ │ ├── quickstart-bazel-ci.yaml │ │ ├── quickstart-bazel-pr.yaml │ │ ├── quickstart-cmake-ci.yaml │ │ ├── quickstart-cmake-pr.yaml │ │ ├── quickstart-production-ci.yaml │ │ ├── quickstart-production-pr.yaml │ │ ├── rotate-keys.yaml │ │ ├── shared-ci.yaml │ │ ├── shared-pr.yaml │ │ ├── tsan-ci.yaml │ │ ├── tsan-pr.yaml │ │ ├── ubsan-ci.yaml │ │ ├── ubsan-pr.yaml │ │ ├── universe-domain-ci.yaml │ │ ├── universe-domain-pr.yaml │ │ ├── xsan-ci.yaml │ │ └── xsan-pr.yaml ├── data │ └── fox.txt.gz ├── etc │ ├── README.md │ ├── cloudcxxrc │ ├── doxygen │ │ └── DoxygenLayout.xml │ ├── expected_install_directories │ ├── integration-tests-config.ps1 │ ├── integration-tests-config.sh │ ├── invalidated-keyfile.json │ ├── m32-toolchain.cmake │ ├── oldest-deps │ │ └── vcpkg.json │ ├── quickstart-config.sh │ └── vcpkg-version.txt ├── generate-markdown │ ├── README.md │ ├── dockerfile2markdown.sh │ ├── generate-packaging.sh │ ├── generate-readme.sh │ ├── update-library-landing-dox.sh │ └── update-library-readme.sh ├── gha │ └── builds │ │ ├── cmake │ │ └── windows-sccache.cmake │ │ ├── external-account.sh │ │ ├── lib │ │ ├── bazel.sh │ │ ├── cmake.sh │ │ ├── ctest.sh │ │ ├── linux.sh │ │ ├── macos.sh │ │ └── windows.sh │ │ ├── macos-bazel.sh │ │ ├── macos-cmake.sh │ │ ├── vcpkg-overlays │ │ └── opentelemetry-cpp │ │ │ └── portfile.cmake │ │ ├── windows-bazel.sh │ │ └── windows-cmake.sh ├── install-cloud-sdk.sh ├── kokoro │ ├── README.md │ ├── lib │ │ ├── cache.sh │ │ ├── gcloud.sh │ │ └── vcpkg.sh │ ├── macos │ │ ├── bazel-presubmit.cfg │ │ ├── bazel.cfg │ │ ├── build.sh │ │ ├── builds │ │ │ ├── bazel.sh │ │ │ ├── cmake-vcpkg.sh │ │ │ ├── quickstart-bazel.sh │ │ │ └── quickstart-cmake.sh │ │ ├── cmake-vcpkg-presubmit.cfg │ │ ├── cmake-vcpkg.cfg │ │ ├── common.cfg │ │ ├── download-cache.sh │ │ ├── quickstart-bazel-presubmit.cfg │ │ ├── quickstart-bazel.cfg │ │ ├── quickstart-cmake-presubmit.cfg │ │ ├── quickstart-cmake.cfg │ │ └── upload-cache.sh │ ├── release │ │ ├── publish.cfg │ │ └── publish.sh │ └── windows │ │ ├── bazel-debug-2019-presubmit.cfg │ │ ├── bazel-debug-2019.cfg │ │ ├── bazel-debug-2022-presubmit.cfg │ │ ├── bazel-debug-2022.cfg │ │ ├── bazel-release-2019-presubmit.cfg │ │ ├── bazel-release-2019.cfg │ │ ├── bazel-release-2022-presubmit.cfg │ │ ├── bazel-release-2022.cfg │ │ ├── build-32.bat │ │ ├── build.bat │ │ ├── build.ps1 │ │ ├── builds │ │ ├── bazel-debug.ps1 │ │ ├── bazel.ps1 │ │ ├── cmake.ps1 │ │ ├── quickstart-bazel.ps1 │ │ └── quickstart-cmake.ps1 │ │ ├── cmake-debug-presubmit.cfg │ │ ├── cmake-debug.cfg │ │ ├── cmake-presubmit.cfg │ │ ├── cmake-release-presubmit.cfg │ │ ├── cmake-release-x86-presubmit.cfg │ │ ├── cmake-release-x86.cfg │ │ ├── cmake-release.cfg │ │ ├── cmake.cfg │ │ ├── common.cfg │ │ ├── lib │ │ ├── bazel.ps1 │ │ ├── install-bazelisk.ps1 │ │ ├── integration.ps1 │ │ └── vcpkg.ps1 │ │ ├── quickstart-bazel-presubmit.cfg │ │ ├── quickstart-bazel.cfg │ │ ├── quickstart-cmake-dll-presubmit.cfg │ │ ├── quickstart-cmake-dll.cfg │ │ ├── quickstart-cmake-static-presubmit.cfg │ │ ├── quickstart-cmake-static.cfg │ │ └── triplets │ │ ├── x64-windows-static.cmake │ │ ├── x64-windows.cmake │ │ ├── x86-windows-static.cmake │ │ └── x86-windows.cmake ├── lib │ ├── init.sh │ ├── io.sh │ ├── module │ ├── run_gcs_httpbin_emulator_utils.sh │ └── shard.sh ├── retry-command.sh ├── tsan_suppressions.txt ├── verify_current_targets │ ├── .bazelrc │ ├── .bazelversion │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── WORKSPACE.bazel │ └── verify_current_targets.cc ├── verify_deprecated_targets │ ├── .bazelrc │ ├── .bazelversion │ ├── BUILD.bazel │ ├── README.md │ ├── WORKSPACE.bazel │ └── verify_deprecated_targets.cc └── verify_quickstart │ └── CMakeLists.txt ├── cmake ├── AddPkgConfig.cmake ├── CompileProtos.cmake ├── CreateBazelConfig.cmake ├── EnableCxxExceptions.cmake ├── FindBenchmarkWithWorkarounds.cmake ├── FindGMockWithTargets.cmake ├── FindgRPC.cmake ├── GoogleCloudCppCommon.cmake ├── GoogleCloudCppCommonOptions.cmake ├── GoogleCloudCppDoxygen.cmake ├── GoogleCloudCppFeatures.cmake ├── GoogleCloudCppLibrary.cmake ├── GoogleapisConfig.cmake ├── IncludeNlohmannJson.cmake ├── print-all-features.cmake ├── print-ga-features.cmake ├── print-ga-libraries.cmake ├── quickstart-runner.cmake └── templates │ ├── config.cmake.in │ ├── config.pc.in │ └── mocks-config.cmake.in ├── doc ├── adr │ ├── 2018-06-13-storage-always-retries.md │ ├── 2018-06-18-storage-request-parameters-are-function-arguments.md │ ├── 2018-06-19-do-not-duplicate-server-side-validation.md │ ├── 2018-10-30-storage-metadata-fields-and-optional.md │ ├── 2019-01-04-error-reporting-with-statusor.md │ ├── 2019-03-26-binary-distributions.md │ ├── 2021-03-01-deprecated-functions-do-not-have-examples.md │ ├── 2021-05-18-credential-failures-participate-in-retry-loop.md │ ├── 2022-01-21-only-public-types-in-public-APIs.md │ ├── 2022-05-06-customers-must-type-experimental-to-access-experimental-features.md │ ├── 2022-11-11-multiple-versions-of-GCP-service-in-one-library.md │ ├── 2022-11-16-option-precedence-hierarchy.md │ ├── 2023-05-03-patch-releases-are-ABI-compatible.md │ ├── 2024-08-13-googleapis-sha-update-policy.md │ └── adr-template.md ├── compile-time-configuration.md ├── contributor │ ├── README.md │ ├── howto-guide-adding-generated-libraries.md │ ├── howto-guide-declare-a-library-ga.md │ ├── howto-guide-find-missing-service-protos.md │ ├── howto-guide-forks-and-pull-requests.md │ ├── howto-guide-running-ci-builds-locally.md │ ├── howto-guide-setup-cmake-environment.md │ ├── howto-guide-setup-development-workstation.md │ ├── howto-guide-test-gha.md │ ├── howto-guide-update-googleapis-sha.md │ └── working-with-bazel-and-cmake.md ├── cpp-style-guide.md ├── ctype-cord-workarounds.md ├── deprecated.md ├── packaging.md └── public-api.md ├── docfx ├── .clang-tidy ├── BUILD.bazel ├── CMakeLists.txt ├── README.md ├── config.h ├── docfx.bzl ├── docfx_testing.bzl ├── doxygen2children.cc ├── doxygen2children.h ├── doxygen2children_test.cc ├── doxygen2docfx.cc ├── doxygen2markdown.cc ├── doxygen2markdown.h ├── doxygen2markdown_test.cc ├── doxygen2references.cc ├── doxygen2references.h ├── doxygen2references_test.cc ├── doxygen2syntax.cc ├── doxygen2syntax.h ├── doxygen2syntax_test.cc ├── doxygen2toc.cc ├── doxygen2toc.h ├── doxygen2toc_test.cc ├── doxygen2yaml.cc ├── doxygen2yaml.h ├── doxygen2yaml_test.cc ├── doxygen_errors.cc ├── doxygen_errors.h ├── doxygen_groups.cc ├── doxygen_groups.h ├── doxygen_groups_test.cc ├── doxygen_pages.cc ├── doxygen_pages.h ├── doxygen_pages_test.cc ├── function_classifiers.cc ├── function_classifiers.h ├── function_classifiers_test.cc ├── generate_metadata.cc ├── generate_metadata.h ├── generate_metadata_test.cc ├── linked_text_type.cc ├── linked_text_type.h ├── linked_text_type_test.cc ├── node_name.cc ├── node_name.h ├── node_name_test.cc ├── parse_arguments.cc ├── parse_arguments.h ├── parse_arguments_test.cc ├── public_docs.cc ├── public_docs.h ├── public_docs_test.cc ├── testing │ ├── inputs.cc │ └── inputs.h ├── toc_entry.cc ├── toc_entry.h ├── unit_tests.bzl ├── yaml_context.cc ├── yaml_context.h ├── yaml_context_test.cc ├── yaml_emit.cc └── yaml_emit.h ├── examples ├── BUILD.bazel ├── CMakeLists.txt ├── README.md ├── api_key.cc ├── batch_logging.cc ├── gcs2cbt.cc ├── grpc_credential_types.cc ├── hello_world_grpc │ ├── .dockerignore │ ├── CMakeLists.txt │ ├── Dockerfile │ ├── hello_world.proto │ ├── hello_world_grpc.cc │ └── vcpkg.json └── hello_world_http │ ├── CMakeLists.txt │ ├── hello_world_http.cc │ └── vcpkg.json ├── external └── googleapis │ ├── CMakeLists.txt │ ├── config-version.cmake.in │ ├── config.cmake.in │ ├── protodeps │ ├── accessapproval.deps │ ├── accesscontextmanager.deps │ ├── advisorynotifications.deps │ ├── aiplatform.deps │ ├── alloydb.deps │ ├── apigateway.deps │ ├── apigeeconnect.deps │ ├── apikeys.deps │ ├── appengine.deps │ ├── apphub.deps │ ├── artifactregistry.deps │ ├── asset.deps │ ├── assuredworkloads.deps │ ├── automl.deps │ ├── backupdr.deps │ ├── baremetalsolution.deps │ ├── batch.deps │ ├── beyondcorp.deps │ ├── bigquery.deps │ ├── bigquerycontrol.deps │ ├── bigtable.deps │ ├── billing.deps │ ├── binaryauthorization.deps │ ├── certificatemanager.deps │ ├── channel.deps │ ├── chronicle.deps │ ├── cloudbuild.deps │ ├── cloudcontrolspartner.deps │ ├── cloudquotas.deps │ ├── cloudsecuritycompliance.deps │ ├── commerce.deps │ ├── common.deps │ ├── composer.deps │ ├── compute.deps │ ├── confidentialcomputing.deps │ ├── config.deps │ ├── configdelivery.deps │ ├── connectors.deps │ ├── contactcenterinsights.deps │ ├── container.deps │ ├── containeranalysis.deps │ ├── contentwarehouse.deps │ ├── datacatalog.deps │ ├── dataform.deps │ ├── datafusion.deps │ ├── datamigration.deps │ ├── dataplex.deps │ ├── dataproc.deps │ ├── datastore.deps │ ├── datastream.deps │ ├── deploy.deps │ ├── developerconnect.deps │ ├── devicestreaming.deps │ ├── dialogflow_cx.deps │ ├── dialogflow_es.deps │ ├── discoveryengine.deps │ ├── dlp.deps │ ├── documentai.deps │ ├── domains.deps │ ├── edgecontainer.deps │ ├── edgenetwork.deps │ ├── essentialcontacts.deps │ ├── eventarc.deps │ ├── filestore.deps │ ├── financialservices.deps │ ├── functions.deps │ ├── gkebackup.deps │ ├── gkeconnect.deps │ ├── gkehub.deps │ ├── gkemulticloud.deps │ ├── grafeas.deps │ ├── iam.deps │ ├── iam_v2.deps │ ├── iam_v3.deps │ ├── iap.deps │ ├── ids.deps │ ├── kms.deps │ ├── language.deps │ ├── licensemanager.deps │ ├── logging.deps │ ├── logging_type.deps │ ├── lustre.deps │ ├── managedidentities.deps │ ├── managedkafka.deps │ ├── memcache.deps │ ├── memorystore.deps │ ├── metastore.deps │ ├── migrationcenter.deps │ ├── monitoring.deps │ ├── netapp.deps │ ├── networkconnectivity.deps │ ├── networkmanagement.deps │ ├── networksecurity.deps │ ├── networkservices.deps │ ├── notebooks.deps │ ├── optimization.deps │ ├── oracledatabase.deps │ ├── orgpolicy.deps │ ├── osconfig.deps │ ├── oslogin.deps │ ├── parallelstore.deps │ ├── parametermanager.deps │ ├── policysimulator.deps │ ├── policytroubleshooter.deps │ ├── privateca.deps │ ├── privilegedaccessmanager.deps │ ├── profiler.deps │ ├── publicca.deps │ ├── pubsub.deps │ ├── pubsublite.deps │ ├── rapidmigrationassessment.deps │ ├── recaptchaenterprise.deps │ ├── recommender.deps │ ├── redis.deps │ ├── resourcemanager.deps │ ├── retail.deps │ ├── run.deps │ ├── scheduler.deps │ ├── secretmanager.deps │ ├── securesourcemanager.deps │ ├── securitycenter.deps │ ├── securitycentermanagement.deps │ ├── servicecontrol.deps │ ├── servicedirectory.deps │ ├── servicehealth.deps │ ├── servicemanagement.deps │ ├── serviceusage.deps │ ├── shell.deps │ ├── spanner.deps │ ├── speech.deps │ ├── sql.deps │ ├── storage.deps │ ├── storagebatchoperations.deps │ ├── storagecontrol.deps │ ├── storageinsights.deps │ ├── storagetransfer.deps │ ├── support.deps │ ├── talent.deps │ ├── tasks.deps │ ├── telcoautomation.deps │ ├── texttospeech.deps │ ├── timeseriesinsights.deps │ ├── tpu.deps │ ├── trace.deps │ ├── translate.deps │ ├── video.deps │ ├── videointelligence.deps │ ├── vision.deps │ ├── vmmigration.deps │ ├── vmwareengine.deps │ ├── vpcaccess.deps │ ├── webrisk.deps │ ├── websecurityscanner.deps │ ├── workflows.deps │ └── workstations.deps │ ├── protolists │ ├── accessapproval.list │ ├── accesscontextmanager.list │ ├── advisorynotifications.list │ ├── aiplatform.list │ ├── alloydb.list │ ├── apigateway.list │ ├── apigeeconnect.list │ ├── apikeys.list │ ├── appengine.list │ ├── apphub.list │ ├── artifactregistry.list │ ├── asset.list │ ├── assuredworkloads.list │ ├── automl.list │ ├── backupdr.list │ ├── baremetalsolution.list │ ├── batch.list │ ├── beyondcorp.list │ ├── bigquery.list │ ├── bigquerycontrol.list │ ├── bigtable.list │ ├── billing.list │ ├── binaryauthorization.list │ ├── certificatemanager.list │ ├── channel.list │ ├── chronicle.list │ ├── cloudbuild.list │ ├── cloudcontrolspartner.list │ ├── cloudquotas.list │ ├── cloudsecuritycompliance.list │ ├── commerce.list │ ├── common.list │ ├── composer.list │ ├── confidentialcomputing.list │ ├── config.list │ ├── configdelivery.list │ ├── connectors.list │ ├── contactcenterinsights.list │ ├── container.list │ ├── containeranalysis.list │ ├── contentwarehouse.list │ ├── datacatalog.list │ ├── dataform.list │ ├── datafusion.list │ ├── datamigration.list │ ├── dataplex.list │ ├── dataproc.list │ ├── datastore.list │ ├── datastream.list │ ├── deploy.list │ ├── developerconnect.list │ ├── devicestreaming.list │ ├── dialogflow_cx.list │ ├── dialogflow_es.list │ ├── discoveryengine.list │ ├── dlp.list │ ├── documentai.list │ ├── domains.list │ ├── edgecontainer.list │ ├── edgenetwork.list │ ├── essentialcontacts.list │ ├── eventarc.list │ ├── filestore.list │ ├── financialservices.list │ ├── functions.list │ ├── gkebackup.list │ ├── gkeconnect.list │ ├── gkehub.list │ ├── gkemulticloud.list │ ├── grafeas.list │ ├── iam.list │ ├── iam_v2.list │ ├── iam_v3.list │ ├── iap.list │ ├── ids.list │ ├── kms.list │ ├── language.list │ ├── licensemanager.list │ ├── logging.list │ ├── logging_type.list │ ├── lustre.list │ ├── managedidentities.list │ ├── managedkafka.list │ ├── memcache.list │ ├── memorystore.list │ ├── metastore.list │ ├── migrationcenter.list │ ├── monitoring.list │ ├── netapp.list │ ├── networkconnectivity.list │ ├── networkmanagement.list │ ├── networksecurity.list │ ├── networkservices.list │ ├── notebooks.list │ ├── optimization.list │ ├── oracledatabase.list │ ├── orgpolicy.list │ ├── osconfig.list │ ├── oslogin.list │ ├── parallelstore.list │ ├── parametermanager.list │ ├── policysimulator.list │ ├── policytroubleshooter.list │ ├── privateca.list │ ├── privilegedaccessmanager.list │ ├── profiler.list │ ├── publicca.list │ ├── pubsub.list │ ├── pubsublite.list │ ├── rapidmigrationassessment.list │ ├── recaptchaenterprise.list │ ├── recommender.list │ ├── redis.list │ ├── resourcemanager.list │ ├── retail.list │ ├── run.list │ ├── scheduler.list │ ├── secretmanager.list │ ├── securesourcemanager.list │ ├── securitycenter.list │ ├── securitycentermanagement.list │ ├── servicecontrol.list │ ├── servicedirectory.list │ ├── servicehealth.list │ ├── servicemanagement.list │ ├── serviceusage.list │ ├── shell.list │ ├── spanner.list │ ├── speech.list │ ├── sql.list │ ├── storage.list │ ├── storagebatchoperations.list │ ├── storagecontrol.list │ ├── storageinsights.list │ ├── storagetransfer.list │ ├── support.list │ ├── talent.list │ ├── tasks.list │ ├── telcoautomation.list │ ├── texttospeech.list │ ├── timeseriesinsights.list │ ├── tpu.list │ ├── trace.list │ ├── translate.list │ ├── video.list │ ├── videointelligence.list │ ├── vision.list │ ├── vmmigration.list │ ├── vmwareengine.list │ ├── vpcaccess.list │ ├── webrisk.list │ ├── websecurityscanner.list │ ├── workflows.list │ └── workstations.list │ ├── renovate.sh │ └── update_libraries.sh ├── generator ├── BUILD.bazel ├── CMakeLists.txt ├── discovery │ ├── compute_public_google_rest_v1.json │ └── update_discovery_doc.sh ├── generator.cc ├── generator.h ├── generator_config.proto ├── generator_config.textproto ├── generator_test.cc ├── google_cloud_cpp_generator.bzl ├── google_cloud_cpp_generator_testing.bzl ├── google_cloud_cpp_generator_unit_tests.bzl ├── integration_tests │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── backup.proto │ ├── benchmarks │ │ └── client_benchmark.cc │ ├── common.proto │ ├── golden │ │ ├── .clang-format │ │ ├── doc │ │ │ ├── environment-variables.dox │ │ │ ├── options.dox │ │ │ ├── override-authentication.dox │ │ │ ├── override-endpoint.dox │ │ │ ├── override-retry-policies.dox │ │ │ └── override-universe-domain.dox │ │ ├── golden_kitchen_sink_client.h │ │ ├── golden_kitchen_sink_connection.h │ │ ├── golden_kitchen_sink_connection_idempotency_policy.h │ │ ├── golden_kitchen_sink_options.h │ │ ├── golden_thing_admin_client.h │ │ ├── golden_thing_admin_connection.h │ │ ├── golden_thing_admin_connection_idempotency_policy.h │ │ ├── golden_thing_admin_options.h │ │ ├── mocks │ │ │ ├── mock_golden_kitchen_sink_connection.h │ │ │ └── mock_golden_thing_admin_connection.h │ │ └── v1 │ │ │ ├── deprecated_client.cc │ │ │ ├── deprecated_client.h │ │ │ ├── deprecated_connection.cc │ │ │ ├── deprecated_connection.h │ │ │ ├── deprecated_connection_idempotency_policy.cc │ │ │ ├── deprecated_connection_idempotency_policy.h │ │ │ ├── deprecated_options.h │ │ │ ├── deprecated_rest_connection.cc │ │ │ ├── deprecated_rest_connection.h │ │ │ ├── golden_kitchen_sink_client.cc │ │ │ ├── golden_kitchen_sink_client.h │ │ │ ├── golden_kitchen_sink_connection.cc │ │ │ ├── golden_kitchen_sink_connection.h │ │ │ ├── golden_kitchen_sink_connection_idempotency_policy.cc │ │ │ ├── golden_kitchen_sink_connection_idempotency_policy.h │ │ │ ├── golden_kitchen_sink_options.h │ │ │ ├── golden_kitchen_sink_rest_connection.cc │ │ │ ├── golden_kitchen_sink_rest_connection.h │ │ │ ├── golden_rest_only_client.cc │ │ │ ├── golden_rest_only_client.h │ │ │ ├── golden_rest_only_connection.cc │ │ │ ├── golden_rest_only_connection.h │ │ │ ├── golden_rest_only_connection_idempotency_policy.cc │ │ │ ├── golden_rest_only_connection_idempotency_policy.h │ │ │ ├── golden_rest_only_options.h │ │ │ ├── golden_rest_only_rest_connection.cc │ │ │ ├── golden_rest_only_rest_connection.h │ │ │ ├── golden_thing_admin_client.cc │ │ │ ├── golden_thing_admin_client.h │ │ │ ├── golden_thing_admin_connection.cc │ │ │ ├── golden_thing_admin_connection.h │ │ │ ├── golden_thing_admin_connection_idempotency_policy.cc │ │ │ ├── golden_thing_admin_connection_idempotency_policy.h │ │ │ ├── golden_thing_admin_options.h │ │ │ ├── golden_thing_admin_rest_connection.cc │ │ │ ├── golden_thing_admin_rest_connection.h │ │ │ ├── internal │ │ │ ├── deprecated_auth_decorator.cc │ │ │ ├── deprecated_auth_decorator.h │ │ │ ├── deprecated_connection_impl.cc │ │ │ ├── deprecated_connection_impl.h │ │ │ ├── deprecated_logging_decorator.cc │ │ │ ├── deprecated_logging_decorator.h │ │ │ ├── deprecated_metadata_decorator.cc │ │ │ ├── deprecated_metadata_decorator.h │ │ │ ├── deprecated_option_defaults.cc │ │ │ ├── deprecated_option_defaults.h │ │ │ ├── deprecated_rest_connection_impl.cc │ │ │ ├── deprecated_rest_connection_impl.h │ │ │ ├── deprecated_rest_logging_decorator.cc │ │ │ ├── deprecated_rest_logging_decorator.h │ │ │ ├── deprecated_rest_metadata_decorator.cc │ │ │ ├── deprecated_rest_metadata_decorator.h │ │ │ ├── deprecated_rest_stub.cc │ │ │ ├── deprecated_rest_stub.h │ │ │ ├── deprecated_rest_stub_factory.cc │ │ │ ├── deprecated_rest_stub_factory.h │ │ │ ├── deprecated_retry_traits.h │ │ │ ├── deprecated_sources.cc │ │ │ ├── deprecated_stub.cc │ │ │ ├── deprecated_stub.h │ │ │ ├── deprecated_stub_factory.cc │ │ │ ├── deprecated_stub_factory.h │ │ │ ├── deprecated_tracing_connection.cc │ │ │ ├── deprecated_tracing_connection.h │ │ │ ├── deprecated_tracing_stub.cc │ │ │ ├── deprecated_tracing_stub.h │ │ │ ├── golden_kitchen_sink_auth_decorator.cc │ │ │ ├── golden_kitchen_sink_auth_decorator.h │ │ │ ├── golden_kitchen_sink_connection_impl.cc │ │ │ ├── golden_kitchen_sink_connection_impl.h │ │ │ ├── golden_kitchen_sink_logging_decorator.cc │ │ │ ├── golden_kitchen_sink_logging_decorator.h │ │ │ ├── golden_kitchen_sink_metadata_decorator.cc │ │ │ ├── golden_kitchen_sink_metadata_decorator.h │ │ │ ├── golden_kitchen_sink_option_defaults.cc │ │ │ ├── golden_kitchen_sink_option_defaults.h │ │ │ ├── golden_kitchen_sink_rest_connection_impl.cc │ │ │ ├── golden_kitchen_sink_rest_connection_impl.h │ │ │ ├── golden_kitchen_sink_rest_logging_decorator.cc │ │ │ ├── golden_kitchen_sink_rest_logging_decorator.h │ │ │ ├── golden_kitchen_sink_rest_metadata_decorator.cc │ │ │ ├── golden_kitchen_sink_rest_metadata_decorator.h │ │ │ ├── golden_kitchen_sink_rest_stub.cc │ │ │ ├── golden_kitchen_sink_rest_stub.h │ │ │ ├── golden_kitchen_sink_rest_stub_factory.cc │ │ │ ├── golden_kitchen_sink_rest_stub_factory.h │ │ │ ├── golden_kitchen_sink_retry_traits.h │ │ │ ├── golden_kitchen_sink_round_robin_decorator.cc │ │ │ ├── golden_kitchen_sink_round_robin_decorator.h │ │ │ ├── golden_kitchen_sink_sources.cc │ │ │ ├── golden_kitchen_sink_stub.cc │ │ │ ├── golden_kitchen_sink_stub.h │ │ │ ├── golden_kitchen_sink_stub_factory.cc │ │ │ ├── golden_kitchen_sink_stub_factory.h │ │ │ ├── golden_kitchen_sink_tracing_connection.cc │ │ │ ├── golden_kitchen_sink_tracing_connection.h │ │ │ ├── golden_kitchen_sink_tracing_stub.cc │ │ │ ├── golden_kitchen_sink_tracing_stub.h │ │ │ ├── golden_rest_only_option_defaults.cc │ │ │ ├── golden_rest_only_option_defaults.h │ │ │ ├── golden_rest_only_rest_connection_impl.cc │ │ │ ├── golden_rest_only_rest_connection_impl.h │ │ │ ├── golden_rest_only_rest_logging_decorator.cc │ │ │ ├── golden_rest_only_rest_logging_decorator.h │ │ │ ├── golden_rest_only_rest_metadata_decorator.cc │ │ │ ├── golden_rest_only_rest_metadata_decorator.h │ │ │ ├── golden_rest_only_rest_stub.cc │ │ │ ├── golden_rest_only_rest_stub.h │ │ │ ├── golden_rest_only_rest_stub_factory.cc │ │ │ ├── golden_rest_only_rest_stub_factory.h │ │ │ ├── golden_rest_only_retry_traits.h │ │ │ ├── golden_rest_only_sources.cc │ │ │ ├── golden_rest_only_tracing_connection.cc │ │ │ ├── golden_rest_only_tracing_connection.h │ │ │ ├── golden_thing_admin_auth_decorator.cc │ │ │ ├── golden_thing_admin_auth_decorator.h │ │ │ ├── golden_thing_admin_connection_impl.cc │ │ │ ├── golden_thing_admin_connection_impl.h │ │ │ ├── golden_thing_admin_logging_decorator.cc │ │ │ ├── golden_thing_admin_logging_decorator.h │ │ │ ├── golden_thing_admin_metadata_decorator.cc │ │ │ ├── golden_thing_admin_metadata_decorator.h │ │ │ ├── golden_thing_admin_option_defaults.cc │ │ │ ├── golden_thing_admin_option_defaults.h │ │ │ ├── golden_thing_admin_rest_connection_impl.cc │ │ │ ├── golden_thing_admin_rest_connection_impl.h │ │ │ ├── golden_thing_admin_rest_logging_decorator.cc │ │ │ ├── golden_thing_admin_rest_logging_decorator.h │ │ │ ├── golden_thing_admin_rest_metadata_decorator.cc │ │ │ ├── golden_thing_admin_rest_metadata_decorator.h │ │ │ ├── golden_thing_admin_rest_stub.cc │ │ │ ├── golden_thing_admin_rest_stub.h │ │ │ ├── golden_thing_admin_rest_stub_factory.cc │ │ │ ├── golden_thing_admin_rest_stub_factory.h │ │ │ ├── golden_thing_admin_retry_traits.h │ │ │ ├── golden_thing_admin_round_robin_decorator.cc │ │ │ ├── golden_thing_admin_round_robin_decorator.h │ │ │ ├── golden_thing_admin_sources.cc │ │ │ ├── golden_thing_admin_stub.cc │ │ │ ├── golden_thing_admin_stub.h │ │ │ ├── golden_thing_admin_stub_factory.cc │ │ │ ├── golden_thing_admin_stub_factory.h │ │ │ ├── golden_thing_admin_tracing_connection.cc │ │ │ ├── golden_thing_admin_tracing_connection.h │ │ │ ├── golden_thing_admin_tracing_stub.cc │ │ │ ├── golden_thing_admin_tracing_stub.h │ │ │ ├── request_id_auth_decorator.cc │ │ │ ├── request_id_auth_decorator.h │ │ │ ├── request_id_connection_impl.cc │ │ │ ├── request_id_connection_impl.h │ │ │ ├── request_id_logging_decorator.cc │ │ │ ├── request_id_logging_decorator.h │ │ │ ├── request_id_metadata_decorator.cc │ │ │ ├── request_id_metadata_decorator.h │ │ │ ├── request_id_option_defaults.cc │ │ │ ├── request_id_option_defaults.h │ │ │ ├── request_id_retry_traits.h │ │ │ ├── request_id_sources.cc │ │ │ ├── request_id_stub.cc │ │ │ ├── request_id_stub.h │ │ │ ├── request_id_stub_factory.cc │ │ │ ├── request_id_stub_factory.h │ │ │ ├── request_id_tracing_connection.cc │ │ │ ├── request_id_tracing_connection.h │ │ │ ├── request_id_tracing_stub.cc │ │ │ └── request_id_tracing_stub.h │ │ │ ├── mocks │ │ │ ├── mock_deprecated_connection.h │ │ │ ├── mock_golden_kitchen_sink_connection.h │ │ │ ├── mock_golden_rest_only_connection.h │ │ │ ├── mock_golden_thing_admin_connection.h │ │ │ └── mock_request_id_connection.h │ │ │ ├── request_id_client.cc │ │ │ ├── request_id_client.h │ │ │ ├── request_id_connection.cc │ │ │ ├── request_id_connection.h │ │ │ ├── request_id_connection_idempotency_policy.cc │ │ │ ├── request_id_connection_idempotency_policy.h │ │ │ ├── request_id_options.h │ │ │ └── samples │ │ │ ├── deprecated_client_samples.cc │ │ │ ├── golden_kitchen_sink_client_samples.cc │ │ │ ├── golden_rest_only_client_samples.cc │ │ │ ├── golden_thing_admin_client_samples.cc │ │ │ └── request_id_client_samples.cc │ ├── golden_config.textproto │ ├── test.proto │ ├── test.yaml │ ├── test2.proto │ ├── test2.yaml │ ├── test_deprecated.proto │ ├── test_deprecated.yaml │ ├── test_request_id.proto │ ├── test_request_id.yaml │ └── tests │ │ ├── forwarding_headers_test.cc │ │ ├── golden_kitchen_sink_auth_decorator_test.cc │ │ ├── golden_kitchen_sink_client_test.cc │ │ ├── golden_kitchen_sink_connection_test.cc │ │ ├── golden_kitchen_sink_idempotency_policy_test.cc │ │ ├── golden_kitchen_sink_logging_decorator_test.cc │ │ ├── golden_kitchen_sink_metadata_decorator_test.cc │ │ ├── golden_kitchen_sink_option_defaults_test.cc │ │ ├── golden_kitchen_sink_rest_connection_test.cc │ │ ├── golden_kitchen_sink_rest_logging_decorator_test.cc │ │ ├── golden_kitchen_sink_rest_metadata_decorator_test.cc │ │ ├── golden_kitchen_sink_rest_stub_factory_test.cc │ │ ├── golden_kitchen_sink_rest_stub_test.cc │ │ ├── golden_kitchen_sink_round_robin_decorator_test.cc │ │ ├── golden_kitchen_sink_stub_factory_test.cc │ │ ├── golden_kitchen_sink_stub_test.cc │ │ ├── golden_kitchen_sink_tracing_connection_test.cc │ │ ├── golden_kitchen_sink_tracing_stub_test.cc │ │ ├── golden_thing_admin_auth_decorator_test.cc │ │ ├── golden_thing_admin_client_test.cc │ │ ├── golden_thing_admin_connection_test.cc │ │ ├── golden_thing_admin_idempotency_policy_test.cc │ │ ├── golden_thing_admin_logging_decorator_test.cc │ │ ├── golden_thing_admin_metadata_decorator_test.cc │ │ ├── golden_thing_admin_option_defaults_test.cc │ │ ├── golden_thing_admin_rest_connection_test.cc │ │ ├── golden_thing_admin_rest_logging_decorator_test.cc │ │ ├── golden_thing_admin_rest_metadata_decorator_test.cc │ │ ├── golden_thing_admin_rest_stub_factory_test.cc │ │ ├── golden_thing_admin_rest_stub_test.cc │ │ ├── golden_thing_admin_round_robin_decorator_test.cc │ │ ├── golden_thing_admin_stub_factory_test.cc │ │ ├── golden_thing_admin_stub_test.cc │ │ ├── golden_thing_admin_tracing_connection_test.cc │ │ ├── golden_thing_admin_tracing_stub_test.cc │ │ ├── mock_golden_kitchen_sink_rest_stub.h │ │ ├── mock_golden_kitchen_sink_stub.h │ │ ├── mock_golden_thing_admin_rest_stub.h │ │ ├── mock_golden_thing_admin_stub.h │ │ ├── mock_request_id_stub.h │ │ ├── plumbing_test.cc │ │ ├── request_id_connection_impl_test.cc │ │ ├── request_id_idempotency_test.cc │ │ ├── request_id_tracing_stub_test.cc │ │ └── universe_domain_test.cc ├── internal │ ├── auth_decorator_generator.cc │ ├── auth_decorator_generator.h │ ├── client_generator.cc │ ├── client_generator.h │ ├── codegen_utils.cc │ ├── codegen_utils.h │ ├── codegen_utils_test.cc │ ├── connection_generator.cc │ ├── connection_generator.h │ ├── connection_impl_generator.cc │ ├── connection_impl_generator.h │ ├── connection_impl_rest_generator.cc │ ├── connection_impl_rest_generator.h │ ├── connection_rest_generator.cc │ ├── connection_rest_generator.h │ ├── descriptor_utils.cc │ ├── descriptor_utils.h │ ├── descriptor_utils_test.cc │ ├── discovery_document.h │ ├── discovery_file.cc │ ├── discovery_file.h │ ├── discovery_file_test.cc │ ├── discovery_proto_export_file.cc │ ├── discovery_proto_export_file.h │ ├── discovery_proto_export_file_test.cc │ ├── discovery_resource.cc │ ├── discovery_resource.h │ ├── discovery_resource_test.cc │ ├── discovery_to_proto.cc │ ├── discovery_to_proto.h │ ├── discovery_to_proto_test.cc │ ├── discovery_type_vertex.cc │ ├── discovery_type_vertex.h │ ├── discovery_type_vertex_test.cc │ ├── doxygen.cc │ ├── doxygen.h │ ├── doxygen_test.cc │ ├── format_class_comments.cc │ ├── format_class_comments.h │ ├── format_class_comments_test.cc │ ├── format_method_comments.cc │ ├── format_method_comments.h │ ├── format_method_comments_test.cc │ ├── forwarding_client_generator.cc │ ├── forwarding_client_generator.h │ ├── forwarding_connection_generator.cc │ ├── forwarding_connection_generator.h │ ├── forwarding_idempotency_policy_generator.cc │ ├── forwarding_idempotency_policy_generator.h │ ├── forwarding_mock_connection_generator.cc │ ├── forwarding_mock_connection_generator.h │ ├── forwarding_options_generator.cc │ ├── forwarding_options_generator.h │ ├── generator_interface.h │ ├── http_annotation_parser.cc │ ├── http_annotation_parser.h │ ├── http_annotation_parser_test.cc │ ├── http_option_utils.cc │ ├── http_option_utils.h │ ├── http_option_utils_test.cc │ ├── idempotency_policy_generator.cc │ ├── idempotency_policy_generator.h │ ├── logging_decorator_generator.cc │ ├── logging_decorator_generator.h │ ├── logging_decorator_rest_generator.cc │ ├── logging_decorator_rest_generator.h │ ├── longrunning.cc │ ├── longrunning.h │ ├── longrunning_test.cc │ ├── make_generators.cc │ ├── make_generators.h │ ├── make_generators_test.cc │ ├── metadata_decorator_generator.cc │ ├── metadata_decorator_generator.h │ ├── metadata_decorator_rest_generator.cc │ ├── metadata_decorator_rest_generator.h │ ├── mixin_utils.cc │ ├── mixin_utils.h │ ├── mixin_utils_test.cc │ ├── mock_connection_generator.cc │ ├── mock_connection_generator.h │ ├── option_defaults_generator.cc │ ├── option_defaults_generator.h │ ├── options_generator.cc │ ├── options_generator.h │ ├── pagination.cc │ ├── pagination.h │ ├── pagination_test.cc │ ├── predicate_utils.cc │ ├── predicate_utils.h │ ├── predicate_utils_test.cc │ ├── printer.h │ ├── printer_test.cc │ ├── proto_definition_location.h │ ├── request_id.cc │ ├── request_id.h │ ├── request_id_test.cc │ ├── resolve_comment_references.cc │ ├── resolve_comment_references.h │ ├── resolve_comment_references_test.cc │ ├── resolve_method_return.cc │ ├── resolve_method_return.h │ ├── resolve_method_return_test.cc │ ├── retry_traits_generator.cc │ ├── retry_traits_generator.h │ ├── round_robin_decorator_generator.cc │ ├── round_robin_decorator_generator.h │ ├── routing.cc │ ├── routing.h │ ├── routing_test.cc │ ├── sample_generator.cc │ ├── sample_generator.h │ ├── scaffold_generator.cc │ ├── scaffold_generator.h │ ├── scaffold_generator_test.cc │ ├── service_code_generator.cc │ ├── service_code_generator.h │ ├── service_code_generator_test.cc │ ├── sources_generator.cc │ ├── sources_generator.h │ ├── stub_factory_generator.cc │ ├── stub_factory_generator.h │ ├── stub_factory_rest_generator.cc │ ├── stub_factory_rest_generator.h │ ├── stub_generator.cc │ ├── stub_generator.h │ ├── stub_generator_base.cc │ ├── stub_generator_base.h │ ├── stub_rest_generator.cc │ ├── stub_rest_generator.h │ ├── tracing_connection_generator.cc │ ├── tracing_connection_generator.h │ ├── tracing_stub_generator.cc │ └── tracing_stub_generator.h ├── plugin_main.cc ├── standalone_main.cc ├── templates │ └── WORKSPACE.bazel └── testing │ ├── descriptor_pool_fixture.cc │ ├── descriptor_pool_fixture.h │ ├── error_collectors.cc │ ├── error_collectors.h │ ├── fake_source_tree.cc │ ├── fake_source_tree.h │ └── printer_mocks.h ├── google └── cloud │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── access_token.cc │ ├── access_token.h │ ├── access_token_test.cc │ ├── accessapproval │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── access_approval_client.h │ ├── access_approval_connection.h │ ├── access_approval_connection_idempotency_policy.h │ ├── access_approval_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_access_approval_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── access_approval_client.cc │ │ ├── access_approval_client.h │ │ ├── access_approval_connection.cc │ │ ├── access_approval_connection.h │ │ ├── access_approval_connection_idempotency_policy.cc │ │ ├── access_approval_connection_idempotency_policy.h │ │ ├── access_approval_options.h │ │ ├── internal │ │ ├── access_approval_auth_decorator.cc │ │ ├── access_approval_auth_decorator.h │ │ ├── access_approval_connection_impl.cc │ │ ├── access_approval_connection_impl.h │ │ ├── access_approval_logging_decorator.cc │ │ ├── access_approval_logging_decorator.h │ │ ├── access_approval_metadata_decorator.cc │ │ ├── access_approval_metadata_decorator.h │ │ ├── access_approval_option_defaults.cc │ │ ├── access_approval_option_defaults.h │ │ ├── access_approval_retry_traits.h │ │ ├── access_approval_sources.cc │ │ ├── access_approval_stub.cc │ │ ├── access_approval_stub.h │ │ ├── access_approval_stub_factory.cc │ │ ├── access_approval_stub_factory.h │ │ ├── access_approval_tracing_connection.cc │ │ ├── access_approval_tracing_connection.h │ │ ├── access_approval_tracing_stub.cc │ │ └── access_approval_tracing_stub.h │ │ ├── mocks │ │ └── mock_access_approval_connection.h │ │ └── samples │ │ └── access_approval_client_samples.cc │ ├── accesscontextmanager │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── access_context_manager_client.h │ ├── access_context_manager_connection.h │ ├── access_context_manager_connection_idempotency_policy.h │ ├── access_context_manager_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_access_context_manager_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── access_context_manager_client.cc │ │ ├── access_context_manager_client.h │ │ ├── access_context_manager_connection.cc │ │ ├── access_context_manager_connection.h │ │ ├── access_context_manager_connection_idempotency_policy.cc │ │ ├── access_context_manager_connection_idempotency_policy.h │ │ ├── access_context_manager_options.h │ │ ├── internal │ │ ├── access_context_manager_auth_decorator.cc │ │ ├── access_context_manager_auth_decorator.h │ │ ├── access_context_manager_connection_impl.cc │ │ ├── access_context_manager_connection_impl.h │ │ ├── access_context_manager_logging_decorator.cc │ │ ├── access_context_manager_logging_decorator.h │ │ ├── access_context_manager_metadata_decorator.cc │ │ ├── access_context_manager_metadata_decorator.h │ │ ├── access_context_manager_option_defaults.cc │ │ ├── access_context_manager_option_defaults.h │ │ ├── access_context_manager_retry_traits.h │ │ ├── access_context_manager_sources.cc │ │ ├── access_context_manager_stub.cc │ │ ├── access_context_manager_stub.h │ │ ├── access_context_manager_stub_factory.cc │ │ ├── access_context_manager_stub_factory.h │ │ ├── access_context_manager_tracing_connection.cc │ │ ├── access_context_manager_tracing_connection.h │ │ ├── access_context_manager_tracing_stub.cc │ │ └── access_context_manager_tracing_stub.h │ │ ├── mocks │ │ └── mock_access_context_manager_connection.h │ │ └── samples │ │ └── access_context_manager_client_samples.cc │ ├── advisorynotifications │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── advisory_notifications_client.cc │ │ ├── advisory_notifications_client.h │ │ ├── advisory_notifications_connection.cc │ │ ├── advisory_notifications_connection.h │ │ ├── advisory_notifications_connection_idempotency_policy.cc │ │ ├── advisory_notifications_connection_idempotency_policy.h │ │ ├── advisory_notifications_options.h │ │ ├── internal │ │ ├── advisory_notifications_auth_decorator.cc │ │ ├── advisory_notifications_auth_decorator.h │ │ ├── advisory_notifications_connection_impl.cc │ │ ├── advisory_notifications_connection_impl.h │ │ ├── advisory_notifications_logging_decorator.cc │ │ ├── advisory_notifications_logging_decorator.h │ │ ├── advisory_notifications_metadata_decorator.cc │ │ ├── advisory_notifications_metadata_decorator.h │ │ ├── advisory_notifications_option_defaults.cc │ │ ├── advisory_notifications_option_defaults.h │ │ ├── advisory_notifications_retry_traits.h │ │ ├── advisory_notifications_sources.cc │ │ ├── advisory_notifications_stub.cc │ │ ├── advisory_notifications_stub.h │ │ ├── advisory_notifications_stub_factory.cc │ │ ├── advisory_notifications_stub_factory.h │ │ ├── advisory_notifications_tracing_connection.cc │ │ ├── advisory_notifications_tracing_connection.h │ │ ├── advisory_notifications_tracing_stub.cc │ │ └── advisory_notifications_tracing_stub.h │ │ ├── mocks │ │ └── mock_advisory_notifications_connection.h │ │ └── samples │ │ └── advisory_notifications_client_samples.cc │ ├── aiplatform │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── samples │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ └── samples.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── dataset_client.cc │ │ ├── dataset_client.h │ │ ├── dataset_connection.cc │ │ ├── dataset_connection.h │ │ ├── dataset_connection_idempotency_policy.cc │ │ ├── dataset_connection_idempotency_policy.h │ │ ├── dataset_options.h │ │ ├── deployment_resource_pool_client.cc │ │ ├── deployment_resource_pool_client.h │ │ ├── deployment_resource_pool_connection.cc │ │ ├── deployment_resource_pool_connection.h │ │ ├── deployment_resource_pool_connection_idempotency_policy.cc │ │ ├── deployment_resource_pool_connection_idempotency_policy.h │ │ ├── deployment_resource_pool_options.h │ │ ├── endpoint_client.cc │ │ ├── endpoint_client.h │ │ ├── endpoint_connection.cc │ │ ├── endpoint_connection.h │ │ ├── endpoint_connection_idempotency_policy.cc │ │ ├── endpoint_connection_idempotency_policy.h │ │ ├── endpoint_options.h │ │ ├── evaluation_client.cc │ │ ├── evaluation_client.h │ │ ├── evaluation_connection.cc │ │ ├── evaluation_connection.h │ │ ├── evaluation_connection_idempotency_policy.cc │ │ ├── evaluation_connection_idempotency_policy.h │ │ ├── evaluation_options.h │ │ ├── feature_online_store_admin_client.cc │ │ ├── feature_online_store_admin_client.h │ │ ├── feature_online_store_admin_connection.cc │ │ ├── feature_online_store_admin_connection.h │ │ ├── feature_online_store_admin_connection_idempotency_policy.cc │ │ ├── feature_online_store_admin_connection_idempotency_policy.h │ │ ├── feature_online_store_admin_options.h │ │ ├── feature_online_store_client.cc │ │ ├── feature_online_store_client.h │ │ ├── feature_online_store_connection.cc │ │ ├── feature_online_store_connection.h │ │ ├── feature_online_store_connection_idempotency_policy.cc │ │ ├── feature_online_store_connection_idempotency_policy.h │ │ ├── feature_online_store_options.h │ │ ├── feature_registry_client.cc │ │ ├── feature_registry_client.h │ │ ├── feature_registry_connection.cc │ │ ├── feature_registry_connection.h │ │ ├── feature_registry_connection_idempotency_policy.cc │ │ ├── feature_registry_connection_idempotency_policy.h │ │ ├── feature_registry_options.h │ │ ├── featurestore_client.cc │ │ ├── featurestore_client.h │ │ ├── featurestore_connection.cc │ │ ├── featurestore_connection.h │ │ ├── featurestore_connection_idempotency_policy.cc │ │ ├── featurestore_connection_idempotency_policy.h │ │ ├── featurestore_online_serving_client.cc │ │ ├── featurestore_online_serving_client.h │ │ ├── featurestore_online_serving_connection.cc │ │ ├── featurestore_online_serving_connection.h │ │ ├── featurestore_online_serving_connection_idempotency_policy.cc │ │ ├── featurestore_online_serving_connection_idempotency_policy.h │ │ ├── featurestore_online_serving_options.h │ │ ├── featurestore_options.h │ │ ├── gen_ai_tuning_client.cc │ │ ├── gen_ai_tuning_client.h │ │ ├── gen_ai_tuning_connection.cc │ │ ├── gen_ai_tuning_connection.h │ │ ├── gen_ai_tuning_connection_idempotency_policy.cc │ │ ├── gen_ai_tuning_connection_idempotency_policy.h │ │ ├── gen_ai_tuning_options.h │ │ ├── index_client.cc │ │ ├── index_client.h │ │ ├── index_connection.cc │ │ ├── index_connection.h │ │ ├── index_connection_idempotency_policy.cc │ │ ├── index_connection_idempotency_policy.h │ │ ├── index_endpoint_client.cc │ │ ├── index_endpoint_client.h │ │ ├── index_endpoint_connection.cc │ │ ├── index_endpoint_connection.h │ │ ├── index_endpoint_connection_idempotency_policy.cc │ │ ├── index_endpoint_connection_idempotency_policy.h │ │ ├── index_endpoint_options.h │ │ ├── index_options.h │ │ ├── internal │ │ ├── dataset_auth_decorator.cc │ │ ├── dataset_auth_decorator.h │ │ ├── dataset_connection_impl.cc │ │ ├── dataset_connection_impl.h │ │ ├── dataset_logging_decorator.cc │ │ ├── dataset_logging_decorator.h │ │ ├── dataset_metadata_decorator.cc │ │ ├── dataset_metadata_decorator.h │ │ ├── dataset_option_defaults.cc │ │ ├── dataset_option_defaults.h │ │ ├── dataset_retry_traits.h │ │ ├── dataset_sources.cc │ │ ├── dataset_stub.cc │ │ ├── dataset_stub.h │ │ ├── dataset_stub_factory.cc │ │ ├── dataset_stub_factory.h │ │ ├── dataset_tracing_connection.cc │ │ ├── dataset_tracing_connection.h │ │ ├── dataset_tracing_stub.cc │ │ ├── dataset_tracing_stub.h │ │ ├── deployment_resource_pool_auth_decorator.cc │ │ ├── deployment_resource_pool_auth_decorator.h │ │ ├── deployment_resource_pool_connection_impl.cc │ │ ├── deployment_resource_pool_connection_impl.h │ │ ├── deployment_resource_pool_logging_decorator.cc │ │ ├── deployment_resource_pool_logging_decorator.h │ │ ├── deployment_resource_pool_metadata_decorator.cc │ │ ├── deployment_resource_pool_metadata_decorator.h │ │ ├── deployment_resource_pool_option_defaults.cc │ │ ├── deployment_resource_pool_option_defaults.h │ │ ├── deployment_resource_pool_retry_traits.h │ │ ├── deployment_resource_pool_sources.cc │ │ ├── deployment_resource_pool_stub.cc │ │ ├── deployment_resource_pool_stub.h │ │ ├── deployment_resource_pool_stub_factory.cc │ │ ├── deployment_resource_pool_stub_factory.h │ │ ├── deployment_resource_pool_tracing_connection.cc │ │ ├── deployment_resource_pool_tracing_connection.h │ │ ├── deployment_resource_pool_tracing_stub.cc │ │ ├── deployment_resource_pool_tracing_stub.h │ │ ├── endpoint_auth_decorator.cc │ │ ├── endpoint_auth_decorator.h │ │ ├── endpoint_connection_impl.cc │ │ ├── endpoint_connection_impl.h │ │ ├── endpoint_logging_decorator.cc │ │ ├── endpoint_logging_decorator.h │ │ ├── endpoint_metadata_decorator.cc │ │ ├── endpoint_metadata_decorator.h │ │ ├── endpoint_option_defaults.cc │ │ ├── endpoint_option_defaults.h │ │ ├── endpoint_retry_traits.h │ │ ├── endpoint_sources.cc │ │ ├── endpoint_stub.cc │ │ ├── endpoint_stub.h │ │ ├── endpoint_stub_factory.cc │ │ ├── endpoint_stub_factory.h │ │ ├── endpoint_tracing_connection.cc │ │ ├── endpoint_tracing_connection.h │ │ ├── endpoint_tracing_stub.cc │ │ ├── endpoint_tracing_stub.h │ │ ├── evaluation_auth_decorator.cc │ │ ├── evaluation_auth_decorator.h │ │ ├── evaluation_connection_impl.cc │ │ ├── evaluation_connection_impl.h │ │ ├── evaluation_logging_decorator.cc │ │ ├── evaluation_logging_decorator.h │ │ ├── evaluation_metadata_decorator.cc │ │ ├── evaluation_metadata_decorator.h │ │ ├── evaluation_option_defaults.cc │ │ ├── evaluation_option_defaults.h │ │ ├── evaluation_retry_traits.h │ │ ├── evaluation_sources.cc │ │ ├── evaluation_stub.cc │ │ ├── evaluation_stub.h │ │ ├── evaluation_stub_factory.cc │ │ ├── evaluation_stub_factory.h │ │ ├── evaluation_tracing_connection.cc │ │ ├── evaluation_tracing_connection.h │ │ ├── evaluation_tracing_stub.cc │ │ ├── evaluation_tracing_stub.h │ │ ├── feature_online_store_admin_auth_decorator.cc │ │ ├── feature_online_store_admin_auth_decorator.h │ │ ├── feature_online_store_admin_connection_impl.cc │ │ ├── feature_online_store_admin_connection_impl.h │ │ ├── feature_online_store_admin_logging_decorator.cc │ │ ├── feature_online_store_admin_logging_decorator.h │ │ ├── feature_online_store_admin_metadata_decorator.cc │ │ ├── feature_online_store_admin_metadata_decorator.h │ │ ├── feature_online_store_admin_option_defaults.cc │ │ ├── feature_online_store_admin_option_defaults.h │ │ ├── feature_online_store_admin_retry_traits.h │ │ ├── feature_online_store_admin_sources.cc │ │ ├── feature_online_store_admin_stub.cc │ │ ├── feature_online_store_admin_stub.h │ │ ├── feature_online_store_admin_stub_factory.cc │ │ ├── feature_online_store_admin_stub_factory.h │ │ ├── feature_online_store_admin_tracing_connection.cc │ │ ├── feature_online_store_admin_tracing_connection.h │ │ ├── feature_online_store_admin_tracing_stub.cc │ │ ├── feature_online_store_admin_tracing_stub.h │ │ ├── feature_online_store_auth_decorator.cc │ │ ├── feature_online_store_auth_decorator.h │ │ ├── feature_online_store_connection_impl.cc │ │ ├── feature_online_store_connection_impl.h │ │ ├── feature_online_store_logging_decorator.cc │ │ ├── feature_online_store_logging_decorator.h │ │ ├── feature_online_store_metadata_decorator.cc │ │ ├── feature_online_store_metadata_decorator.h │ │ ├── feature_online_store_option_defaults.cc │ │ ├── feature_online_store_option_defaults.h │ │ ├── feature_online_store_retry_traits.h │ │ ├── feature_online_store_sources.cc │ │ ├── feature_online_store_stub.cc │ │ ├── feature_online_store_stub.h │ │ ├── feature_online_store_stub_factory.cc │ │ ├── feature_online_store_stub_factory.h │ │ ├── feature_online_store_tracing_connection.cc │ │ ├── feature_online_store_tracing_connection.h │ │ ├── feature_online_store_tracing_stub.cc │ │ ├── feature_online_store_tracing_stub.h │ │ ├── feature_registry_auth_decorator.cc │ │ ├── feature_registry_auth_decorator.h │ │ ├── feature_registry_connection_impl.cc │ │ ├── feature_registry_connection_impl.h │ │ ├── feature_registry_logging_decorator.cc │ │ ├── feature_registry_logging_decorator.h │ │ ├── feature_registry_metadata_decorator.cc │ │ ├── feature_registry_metadata_decorator.h │ │ ├── feature_registry_option_defaults.cc │ │ ├── feature_registry_option_defaults.h │ │ ├── feature_registry_retry_traits.h │ │ ├── feature_registry_sources.cc │ │ ├── feature_registry_stub.cc │ │ ├── feature_registry_stub.h │ │ ├── feature_registry_stub_factory.cc │ │ ├── feature_registry_stub_factory.h │ │ ├── feature_registry_tracing_connection.cc │ │ ├── feature_registry_tracing_connection.h │ │ ├── feature_registry_tracing_stub.cc │ │ ├── feature_registry_tracing_stub.h │ │ ├── featurestore_auth_decorator.cc │ │ ├── featurestore_auth_decorator.h │ │ ├── featurestore_connection_impl.cc │ │ ├── featurestore_connection_impl.h │ │ ├── featurestore_logging_decorator.cc │ │ ├── featurestore_logging_decorator.h │ │ ├── featurestore_metadata_decorator.cc │ │ ├── featurestore_metadata_decorator.h │ │ ├── featurestore_online_serving_auth_decorator.cc │ │ ├── featurestore_online_serving_auth_decorator.h │ │ ├── featurestore_online_serving_connection_impl.cc │ │ ├── featurestore_online_serving_connection_impl.h │ │ ├── featurestore_online_serving_logging_decorator.cc │ │ ├── featurestore_online_serving_logging_decorator.h │ │ ├── featurestore_online_serving_metadata_decorator.cc │ │ ├── featurestore_online_serving_metadata_decorator.h │ │ ├── featurestore_online_serving_option_defaults.cc │ │ ├── featurestore_online_serving_option_defaults.h │ │ ├── featurestore_online_serving_retry_traits.h │ │ ├── featurestore_online_serving_sources.cc │ │ ├── featurestore_online_serving_stub.cc │ │ ├── featurestore_online_serving_stub.h │ │ ├── featurestore_online_serving_stub_factory.cc │ │ ├── featurestore_online_serving_stub_factory.h │ │ ├── featurestore_online_serving_tracing_connection.cc │ │ ├── featurestore_online_serving_tracing_connection.h │ │ ├── featurestore_online_serving_tracing_stub.cc │ │ ├── featurestore_online_serving_tracing_stub.h │ │ ├── featurestore_option_defaults.cc │ │ ├── featurestore_option_defaults.h │ │ ├── featurestore_retry_traits.h │ │ ├── featurestore_sources.cc │ │ ├── featurestore_stub.cc │ │ ├── featurestore_stub.h │ │ ├── featurestore_stub_factory.cc │ │ ├── featurestore_stub_factory.h │ │ ├── featurestore_tracing_connection.cc │ │ ├── featurestore_tracing_connection.h │ │ ├── featurestore_tracing_stub.cc │ │ ├── featurestore_tracing_stub.h │ │ ├── gen_ai_tuning_auth_decorator.cc │ │ ├── gen_ai_tuning_auth_decorator.h │ │ ├── gen_ai_tuning_connection_impl.cc │ │ ├── gen_ai_tuning_connection_impl.h │ │ ├── gen_ai_tuning_logging_decorator.cc │ │ ├── gen_ai_tuning_logging_decorator.h │ │ ├── gen_ai_tuning_metadata_decorator.cc │ │ ├── gen_ai_tuning_metadata_decorator.h │ │ ├── gen_ai_tuning_option_defaults.cc │ │ ├── gen_ai_tuning_option_defaults.h │ │ ├── gen_ai_tuning_retry_traits.h │ │ ├── gen_ai_tuning_sources.cc │ │ ├── gen_ai_tuning_stub.cc │ │ ├── gen_ai_tuning_stub.h │ │ ├── gen_ai_tuning_stub_factory.cc │ │ ├── gen_ai_tuning_stub_factory.h │ │ ├── gen_ai_tuning_tracing_connection.cc │ │ ├── gen_ai_tuning_tracing_connection.h │ │ ├── gen_ai_tuning_tracing_stub.cc │ │ ├── gen_ai_tuning_tracing_stub.h │ │ ├── index_auth_decorator.cc │ │ ├── index_auth_decorator.h │ │ ├── index_connection_impl.cc │ │ ├── index_connection_impl.h │ │ ├── index_endpoint_auth_decorator.cc │ │ ├── index_endpoint_auth_decorator.h │ │ ├── index_endpoint_connection_impl.cc │ │ ├── index_endpoint_connection_impl.h │ │ ├── index_endpoint_logging_decorator.cc │ │ ├── index_endpoint_logging_decorator.h │ │ ├── index_endpoint_metadata_decorator.cc │ │ ├── index_endpoint_metadata_decorator.h │ │ ├── index_endpoint_option_defaults.cc │ │ ├── index_endpoint_option_defaults.h │ │ ├── index_endpoint_retry_traits.h │ │ ├── index_endpoint_sources.cc │ │ ├── index_endpoint_stub.cc │ │ ├── index_endpoint_stub.h │ │ ├── index_endpoint_stub_factory.cc │ │ ├── index_endpoint_stub_factory.h │ │ ├── index_endpoint_tracing_connection.cc │ │ ├── index_endpoint_tracing_connection.h │ │ ├── index_endpoint_tracing_stub.cc │ │ ├── index_endpoint_tracing_stub.h │ │ ├── index_logging_decorator.cc │ │ ├── index_logging_decorator.h │ │ ├── index_metadata_decorator.cc │ │ ├── index_metadata_decorator.h │ │ ├── index_option_defaults.cc │ │ ├── index_option_defaults.h │ │ ├── index_retry_traits.h │ │ ├── index_sources.cc │ │ ├── index_stub.cc │ │ ├── index_stub.h │ │ ├── index_stub_factory.cc │ │ ├── index_stub_factory.h │ │ ├── index_tracing_connection.cc │ │ ├── index_tracing_connection.h │ │ ├── index_tracing_stub.cc │ │ ├── index_tracing_stub.h │ │ ├── job_auth_decorator.cc │ │ ├── job_auth_decorator.h │ │ ├── job_connection_impl.cc │ │ ├── job_connection_impl.h │ │ ├── job_logging_decorator.cc │ │ ├── job_logging_decorator.h │ │ ├── job_metadata_decorator.cc │ │ ├── job_metadata_decorator.h │ │ ├── job_option_defaults.cc │ │ ├── job_option_defaults.h │ │ ├── job_retry_traits.h │ │ ├── job_sources.cc │ │ ├── job_stub.cc │ │ ├── job_stub.h │ │ ├── job_stub_factory.cc │ │ ├── job_stub_factory.h │ │ ├── job_tracing_connection.cc │ │ ├── job_tracing_connection.h │ │ ├── job_tracing_stub.cc │ │ ├── job_tracing_stub.h │ │ ├── llm_utility_auth_decorator.cc │ │ ├── llm_utility_auth_decorator.h │ │ ├── llm_utility_connection_impl.cc │ │ ├── llm_utility_connection_impl.h │ │ ├── llm_utility_logging_decorator.cc │ │ ├── llm_utility_logging_decorator.h │ │ ├── llm_utility_metadata_decorator.cc │ │ ├── llm_utility_metadata_decorator.h │ │ ├── llm_utility_option_defaults.cc │ │ ├── llm_utility_option_defaults.h │ │ ├── llm_utility_retry_traits.h │ │ ├── llm_utility_sources.cc │ │ ├── llm_utility_stub.cc │ │ ├── llm_utility_stub.h │ │ ├── llm_utility_stub_factory.cc │ │ ├── llm_utility_stub_factory.h │ │ ├── llm_utility_tracing_connection.cc │ │ ├── llm_utility_tracing_connection.h │ │ ├── llm_utility_tracing_stub.cc │ │ ├── llm_utility_tracing_stub.h │ │ ├── match_auth_decorator.cc │ │ ├── match_auth_decorator.h │ │ ├── match_connection_impl.cc │ │ ├── match_connection_impl.h │ │ ├── match_logging_decorator.cc │ │ ├── match_logging_decorator.h │ │ ├── match_metadata_decorator.cc │ │ ├── match_metadata_decorator.h │ │ ├── match_option_defaults.cc │ │ ├── match_option_defaults.h │ │ ├── match_retry_traits.h │ │ ├── match_sources.cc │ │ ├── match_stub.cc │ │ ├── match_stub.h │ │ ├── match_stub_factory.cc │ │ ├── match_stub_factory.h │ │ ├── match_tracing_connection.cc │ │ ├── match_tracing_connection.h │ │ ├── match_tracing_stub.cc │ │ ├── match_tracing_stub.h │ │ ├── metadata_auth_decorator.cc │ │ ├── metadata_auth_decorator.h │ │ ├── metadata_connection_impl.cc │ │ ├── metadata_connection_impl.h │ │ ├── metadata_logging_decorator.cc │ │ ├── metadata_logging_decorator.h │ │ ├── metadata_metadata_decorator.cc │ │ ├── metadata_metadata_decorator.h │ │ ├── metadata_option_defaults.cc │ │ ├── metadata_option_defaults.h │ │ ├── metadata_retry_traits.h │ │ ├── metadata_sources.cc │ │ ├── metadata_stub.cc │ │ ├── metadata_stub.h │ │ ├── metadata_stub_factory.cc │ │ ├── metadata_stub_factory.h │ │ ├── metadata_tracing_connection.cc │ │ ├── metadata_tracing_connection.h │ │ ├── metadata_tracing_stub.cc │ │ ├── metadata_tracing_stub.h │ │ ├── migration_auth_decorator.cc │ │ ├── migration_auth_decorator.h │ │ ├── migration_connection_impl.cc │ │ ├── migration_connection_impl.h │ │ ├── migration_logging_decorator.cc │ │ ├── migration_logging_decorator.h │ │ ├── migration_metadata_decorator.cc │ │ ├── migration_metadata_decorator.h │ │ ├── migration_option_defaults.cc │ │ ├── migration_option_defaults.h │ │ ├── migration_retry_traits.h │ │ ├── migration_sources.cc │ │ ├── migration_stub.cc │ │ ├── migration_stub.h │ │ ├── migration_stub_factory.cc │ │ ├── migration_stub_factory.h │ │ ├── migration_tracing_connection.cc │ │ ├── migration_tracing_connection.h │ │ ├── migration_tracing_stub.cc │ │ ├── migration_tracing_stub.h │ │ ├── model_auth_decorator.cc │ │ ├── model_auth_decorator.h │ │ ├── model_connection_impl.cc │ │ ├── model_connection_impl.h │ │ ├── model_garden_auth_decorator.cc │ │ ├── model_garden_auth_decorator.h │ │ ├── model_garden_connection_impl.cc │ │ ├── model_garden_connection_impl.h │ │ ├── model_garden_logging_decorator.cc │ │ ├── model_garden_logging_decorator.h │ │ ├── model_garden_metadata_decorator.cc │ │ ├── model_garden_metadata_decorator.h │ │ ├── model_garden_option_defaults.cc │ │ ├── model_garden_option_defaults.h │ │ ├── model_garden_retry_traits.h │ │ ├── model_garden_sources.cc │ │ ├── model_garden_stub.cc │ │ ├── model_garden_stub.h │ │ ├── model_garden_stub_factory.cc │ │ ├── model_garden_stub_factory.h │ │ ├── model_garden_tracing_connection.cc │ │ ├── model_garden_tracing_connection.h │ │ ├── model_garden_tracing_stub.cc │ │ ├── model_garden_tracing_stub.h │ │ ├── model_logging_decorator.cc │ │ ├── model_logging_decorator.h │ │ ├── model_metadata_decorator.cc │ │ ├── model_metadata_decorator.h │ │ ├── model_option_defaults.cc │ │ ├── model_option_defaults.h │ │ ├── model_retry_traits.h │ │ ├── model_sources.cc │ │ ├── model_stub.cc │ │ ├── model_stub.h │ │ ├── model_stub_factory.cc │ │ ├── model_stub_factory.h │ │ ├── model_tracing_connection.cc │ │ ├── model_tracing_connection.h │ │ ├── model_tracing_stub.cc │ │ ├── model_tracing_stub.h │ │ ├── notebook_auth_decorator.cc │ │ ├── notebook_auth_decorator.h │ │ ├── notebook_connection_impl.cc │ │ ├── notebook_connection_impl.h │ │ ├── notebook_logging_decorator.cc │ │ ├── notebook_logging_decorator.h │ │ ├── notebook_metadata_decorator.cc │ │ ├── notebook_metadata_decorator.h │ │ ├── notebook_option_defaults.cc │ │ ├── notebook_option_defaults.h │ │ ├── notebook_retry_traits.h │ │ ├── notebook_sources.cc │ │ ├── notebook_stub.cc │ │ ├── notebook_stub.h │ │ ├── notebook_stub_factory.cc │ │ ├── notebook_stub_factory.h │ │ ├── notebook_tracing_connection.cc │ │ ├── notebook_tracing_connection.h │ │ ├── notebook_tracing_stub.cc │ │ ├── notebook_tracing_stub.h │ │ ├── persistent_resource_auth_decorator.cc │ │ ├── persistent_resource_auth_decorator.h │ │ ├── persistent_resource_connection_impl.cc │ │ ├── persistent_resource_connection_impl.h │ │ ├── persistent_resource_logging_decorator.cc │ │ ├── persistent_resource_logging_decorator.h │ │ ├── persistent_resource_metadata_decorator.cc │ │ ├── persistent_resource_metadata_decorator.h │ │ ├── persistent_resource_option_defaults.cc │ │ ├── persistent_resource_option_defaults.h │ │ ├── persistent_resource_retry_traits.h │ │ ├── persistent_resource_sources.cc │ │ ├── persistent_resource_stub.cc │ │ ├── persistent_resource_stub.h │ │ ├── persistent_resource_stub_factory.cc │ │ ├── persistent_resource_stub_factory.h │ │ ├── persistent_resource_tracing_connection.cc │ │ ├── persistent_resource_tracing_connection.h │ │ ├── persistent_resource_tracing_stub.cc │ │ ├── persistent_resource_tracing_stub.h │ │ ├── pipeline_auth_decorator.cc │ │ ├── pipeline_auth_decorator.h │ │ ├── pipeline_connection_impl.cc │ │ ├── pipeline_connection_impl.h │ │ ├── pipeline_logging_decorator.cc │ │ ├── pipeline_logging_decorator.h │ │ ├── pipeline_metadata_decorator.cc │ │ ├── pipeline_metadata_decorator.h │ │ ├── pipeline_option_defaults.cc │ │ ├── pipeline_option_defaults.h │ │ ├── pipeline_retry_traits.h │ │ ├── pipeline_sources.cc │ │ ├── pipeline_stub.cc │ │ ├── pipeline_stub.h │ │ ├── pipeline_stub_factory.cc │ │ ├── pipeline_stub_factory.h │ │ ├── pipeline_tracing_connection.cc │ │ ├── pipeline_tracing_connection.h │ │ ├── pipeline_tracing_stub.cc │ │ ├── pipeline_tracing_stub.h │ │ ├── prediction_auth_decorator.cc │ │ ├── prediction_auth_decorator.h │ │ ├── prediction_connection_impl.cc │ │ ├── prediction_connection_impl.h │ │ ├── prediction_logging_decorator.cc │ │ ├── prediction_logging_decorator.h │ │ ├── prediction_metadata_decorator.cc │ │ ├── prediction_metadata_decorator.h │ │ ├── prediction_option_defaults.cc │ │ ├── prediction_option_defaults.h │ │ ├── prediction_retry_traits.h │ │ ├── prediction_sources.cc │ │ ├── prediction_stub.cc │ │ ├── prediction_stub.h │ │ ├── prediction_stub_factory.cc │ │ ├── prediction_stub_factory.h │ │ ├── prediction_tracing_connection.cc │ │ ├── prediction_tracing_connection.h │ │ ├── prediction_tracing_stub.cc │ │ ├── prediction_tracing_stub.h │ │ ├── schedule_auth_decorator.cc │ │ ├── schedule_auth_decorator.h │ │ ├── schedule_connection_impl.cc │ │ ├── schedule_connection_impl.h │ │ ├── schedule_logging_decorator.cc │ │ ├── schedule_logging_decorator.h │ │ ├── schedule_metadata_decorator.cc │ │ ├── schedule_metadata_decorator.h │ │ ├── schedule_option_defaults.cc │ │ ├── schedule_option_defaults.h │ │ ├── schedule_retry_traits.h │ │ ├── schedule_sources.cc │ │ ├── schedule_stub.cc │ │ ├── schedule_stub.h │ │ ├── schedule_stub_factory.cc │ │ ├── schedule_stub_factory.h │ │ ├── schedule_tracing_connection.cc │ │ ├── schedule_tracing_connection.h │ │ ├── schedule_tracing_stub.cc │ │ ├── schedule_tracing_stub.h │ │ ├── specialist_pool_auth_decorator.cc │ │ ├── specialist_pool_auth_decorator.h │ │ ├── specialist_pool_connection_impl.cc │ │ ├── specialist_pool_connection_impl.h │ │ ├── specialist_pool_logging_decorator.cc │ │ ├── specialist_pool_logging_decorator.h │ │ ├── specialist_pool_metadata_decorator.cc │ │ ├── specialist_pool_metadata_decorator.h │ │ ├── specialist_pool_option_defaults.cc │ │ ├── specialist_pool_option_defaults.h │ │ ├── specialist_pool_retry_traits.h │ │ ├── specialist_pool_sources.cc │ │ ├── specialist_pool_stub.cc │ │ ├── specialist_pool_stub.h │ │ ├── specialist_pool_stub_factory.cc │ │ ├── specialist_pool_stub_factory.h │ │ ├── specialist_pool_tracing_connection.cc │ │ ├── specialist_pool_tracing_connection.h │ │ ├── specialist_pool_tracing_stub.cc │ │ ├── specialist_pool_tracing_stub.h │ │ ├── tensorboard_auth_decorator.cc │ │ ├── tensorboard_auth_decorator.h │ │ ├── tensorboard_connection_impl.cc │ │ ├── tensorboard_connection_impl.h │ │ ├── tensorboard_logging_decorator.cc │ │ ├── tensorboard_logging_decorator.h │ │ ├── tensorboard_metadata_decorator.cc │ │ ├── tensorboard_metadata_decorator.h │ │ ├── tensorboard_option_defaults.cc │ │ ├── tensorboard_option_defaults.h │ │ ├── tensorboard_retry_traits.h │ │ ├── tensorboard_sources.cc │ │ ├── tensorboard_stub.cc │ │ ├── tensorboard_stub.h │ │ ├── tensorboard_stub_factory.cc │ │ ├── tensorboard_stub_factory.h │ │ ├── tensorboard_tracing_connection.cc │ │ ├── tensorboard_tracing_connection.h │ │ ├── tensorboard_tracing_stub.cc │ │ ├── tensorboard_tracing_stub.h │ │ ├── vizier_auth_decorator.cc │ │ ├── vizier_auth_decorator.h │ │ ├── vizier_connection_impl.cc │ │ ├── vizier_connection_impl.h │ │ ├── vizier_logging_decorator.cc │ │ ├── vizier_logging_decorator.h │ │ ├── vizier_metadata_decorator.cc │ │ ├── vizier_metadata_decorator.h │ │ ├── vizier_option_defaults.cc │ │ ├── vizier_option_defaults.h │ │ ├── vizier_retry_traits.h │ │ ├── vizier_sources.cc │ │ ├── vizier_stub.cc │ │ ├── vizier_stub.h │ │ ├── vizier_stub_factory.cc │ │ ├── vizier_stub_factory.h │ │ ├── vizier_tracing_connection.cc │ │ ├── vizier_tracing_connection.h │ │ ├── vizier_tracing_stub.cc │ │ └── vizier_tracing_stub.h │ │ ├── job_client.cc │ │ ├── job_client.h │ │ ├── job_connection.cc │ │ ├── job_connection.h │ │ ├── job_connection_idempotency_policy.cc │ │ ├── job_connection_idempotency_policy.h │ │ ├── job_options.h │ │ ├── llm_utility_client.cc │ │ ├── llm_utility_client.h │ │ ├── llm_utility_connection.cc │ │ ├── llm_utility_connection.h │ │ ├── llm_utility_connection_idempotency_policy.cc │ │ ├── llm_utility_connection_idempotency_policy.h │ │ ├── llm_utility_options.h │ │ ├── match_client.cc │ │ ├── match_client.h │ │ ├── match_connection.cc │ │ ├── match_connection.h │ │ ├── match_connection_idempotency_policy.cc │ │ ├── match_connection_idempotency_policy.h │ │ ├── match_options.h │ │ ├── metadata_client.cc │ │ ├── metadata_client.h │ │ ├── metadata_connection.cc │ │ ├── metadata_connection.h │ │ ├── metadata_connection_idempotency_policy.cc │ │ ├── metadata_connection_idempotency_policy.h │ │ ├── metadata_options.h │ │ ├── migration_client.cc │ │ ├── migration_client.h │ │ ├── migration_connection.cc │ │ ├── migration_connection.h │ │ ├── migration_connection_idempotency_policy.cc │ │ ├── migration_connection_idempotency_policy.h │ │ ├── migration_options.h │ │ ├── mocks │ │ ├── mock_dataset_connection.h │ │ ├── mock_deployment_resource_pool_connection.h │ │ ├── mock_endpoint_connection.h │ │ ├── mock_evaluation_connection.h │ │ ├── mock_feature_online_store_admin_connection.h │ │ ├── mock_feature_online_store_connection.h │ │ ├── mock_feature_registry_connection.h │ │ ├── mock_featurestore_connection.h │ │ ├── mock_featurestore_online_serving_connection.h │ │ ├── mock_gen_ai_tuning_connection.h │ │ ├── mock_index_connection.h │ │ ├── mock_index_endpoint_connection.h │ │ ├── mock_job_connection.h │ │ ├── mock_llm_utility_connection.h │ │ ├── mock_match_connection.h │ │ ├── mock_metadata_connection.h │ │ ├── mock_migration_connection.h │ │ ├── mock_model_connection.h │ │ ├── mock_model_garden_connection.h │ │ ├── mock_notebook_connection.h │ │ ├── mock_persistent_resource_connection.h │ │ ├── mock_pipeline_connection.h │ │ ├── mock_prediction_connection.h │ │ ├── mock_schedule_connection.h │ │ ├── mock_specialist_pool_connection.h │ │ ├── mock_tensorboard_connection.h │ │ └── mock_vizier_connection.h │ │ ├── model_client.cc │ │ ├── model_client.h │ │ ├── model_connection.cc │ │ ├── model_connection.h │ │ ├── model_connection_idempotency_policy.cc │ │ ├── model_connection_idempotency_policy.h │ │ ├── model_garden_client.cc │ │ ├── model_garden_client.h │ │ ├── model_garden_connection.cc │ │ ├── model_garden_connection.h │ │ ├── model_garden_connection_idempotency_policy.cc │ │ ├── model_garden_connection_idempotency_policy.h │ │ ├── model_garden_options.h │ │ ├── model_options.h │ │ ├── notebook_client.cc │ │ ├── notebook_client.h │ │ ├── notebook_connection.cc │ │ ├── notebook_connection.h │ │ ├── notebook_connection_idempotency_policy.cc │ │ ├── notebook_connection_idempotency_policy.h │ │ ├── notebook_options.h │ │ ├── persistent_resource_client.cc │ │ ├── persistent_resource_client.h │ │ ├── persistent_resource_connection.cc │ │ ├── persistent_resource_connection.h │ │ ├── persistent_resource_connection_idempotency_policy.cc │ │ ├── persistent_resource_connection_idempotency_policy.h │ │ ├── persistent_resource_options.h │ │ ├── pipeline_client.cc │ │ ├── pipeline_client.h │ │ ├── pipeline_connection.cc │ │ ├── pipeline_connection.h │ │ ├── pipeline_connection_idempotency_policy.cc │ │ ├── pipeline_connection_idempotency_policy.h │ │ ├── pipeline_options.h │ │ ├── prediction_client.cc │ │ ├── prediction_client.h │ │ ├── prediction_connection.cc │ │ ├── prediction_connection.h │ │ ├── prediction_connection_idempotency_policy.cc │ │ ├── prediction_connection_idempotency_policy.h │ │ ├── prediction_options.h │ │ ├── samples │ │ ├── dataset_client_samples.cc │ │ ├── deployment_resource_pool_client_samples.cc │ │ ├── endpoint_client_samples.cc │ │ ├── evaluation_client_samples.cc │ │ ├── feature_online_store_admin_client_samples.cc │ │ ├── feature_online_store_client_samples.cc │ │ ├── feature_registry_client_samples.cc │ │ ├── featurestore_client_samples.cc │ │ ├── featurestore_online_serving_client_samples.cc │ │ ├── gen_ai_tuning_client_samples.cc │ │ ├── index_client_samples.cc │ │ ├── index_endpoint_client_samples.cc │ │ ├── job_client_samples.cc │ │ ├── llm_utility_client_samples.cc │ │ ├── match_client_samples.cc │ │ ├── metadata_client_samples.cc │ │ ├── migration_client_samples.cc │ │ ├── model_client_samples.cc │ │ ├── model_garden_client_samples.cc │ │ ├── notebook_client_samples.cc │ │ ├── persistent_resource_client_samples.cc │ │ ├── pipeline_client_samples.cc │ │ ├── prediction_client_samples.cc │ │ ├── schedule_client_samples.cc │ │ ├── specialist_pool_client_samples.cc │ │ ├── tensorboard_client_samples.cc │ │ └── vizier_client_samples.cc │ │ ├── schedule_client.cc │ │ ├── schedule_client.h │ │ ├── schedule_connection.cc │ │ ├── schedule_connection.h │ │ ├── schedule_connection_idempotency_policy.cc │ │ ├── schedule_connection_idempotency_policy.h │ │ ├── schedule_options.h │ │ ├── specialist_pool_client.cc │ │ ├── specialist_pool_client.h │ │ ├── specialist_pool_connection.cc │ │ ├── specialist_pool_connection.h │ │ ├── specialist_pool_connection_idempotency_policy.cc │ │ ├── specialist_pool_connection_idempotency_policy.h │ │ ├── specialist_pool_options.h │ │ ├── tensorboard_client.cc │ │ ├── tensorboard_client.h │ │ ├── tensorboard_connection.cc │ │ ├── tensorboard_connection.h │ │ ├── tensorboard_connection_idempotency_policy.cc │ │ ├── tensorboard_connection_idempotency_policy.h │ │ ├── tensorboard_options.h │ │ ├── vizier_client.cc │ │ ├── vizier_client.h │ │ ├── vizier_connection.cc │ │ ├── vizier_connection.h │ │ ├── vizier_connection_idempotency_policy.cc │ │ ├── vizier_connection_idempotency_policy.h │ │ └── vizier_options.h │ ├── alloydb │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── alloy_db_admin_client.cc │ │ ├── alloy_db_admin_client.h │ │ ├── alloy_db_admin_connection.cc │ │ ├── alloy_db_admin_connection.h │ │ ├── alloy_db_admin_connection_idempotency_policy.cc │ │ ├── alloy_db_admin_connection_idempotency_policy.h │ │ ├── alloy_db_admin_options.h │ │ ├── internal │ │ ├── alloy_db_admin_auth_decorator.cc │ │ ├── alloy_db_admin_auth_decorator.h │ │ ├── alloy_db_admin_connection_impl.cc │ │ ├── alloy_db_admin_connection_impl.h │ │ ├── alloy_db_admin_logging_decorator.cc │ │ ├── alloy_db_admin_logging_decorator.h │ │ ├── alloy_db_admin_metadata_decorator.cc │ │ ├── alloy_db_admin_metadata_decorator.h │ │ ├── alloy_db_admin_option_defaults.cc │ │ ├── alloy_db_admin_option_defaults.h │ │ ├── alloy_db_admin_retry_traits.h │ │ ├── alloy_db_admin_sources.cc │ │ ├── alloy_db_admin_stub.cc │ │ ├── alloy_db_admin_stub.h │ │ ├── alloy_db_admin_stub_factory.cc │ │ ├── alloy_db_admin_stub_factory.h │ │ ├── alloy_db_admin_tracing_connection.cc │ │ ├── alloy_db_admin_tracing_connection.h │ │ ├── alloy_db_admin_tracing_stub.cc │ │ └── alloy_db_admin_tracing_stub.h │ │ ├── mocks │ │ └── mock_alloy_db_admin_connection.h │ │ └── samples │ │ └── alloy_db_admin_client_samples.cc │ ├── apigateway │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── api_gateway_client.h │ ├── api_gateway_connection.h │ ├── api_gateway_connection_idempotency_policy.h │ ├── api_gateway_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_api_gateway_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── api_gateway_client.cc │ │ ├── api_gateway_client.h │ │ ├── api_gateway_connection.cc │ │ ├── api_gateway_connection.h │ │ ├── api_gateway_connection_idempotency_policy.cc │ │ ├── api_gateway_connection_idempotency_policy.h │ │ ├── api_gateway_options.h │ │ ├── internal │ │ ├── api_gateway_auth_decorator.cc │ │ ├── api_gateway_auth_decorator.h │ │ ├── api_gateway_connection_impl.cc │ │ ├── api_gateway_connection_impl.h │ │ ├── api_gateway_logging_decorator.cc │ │ ├── api_gateway_logging_decorator.h │ │ ├── api_gateway_metadata_decorator.cc │ │ ├── api_gateway_metadata_decorator.h │ │ ├── api_gateway_option_defaults.cc │ │ ├── api_gateway_option_defaults.h │ │ ├── api_gateway_retry_traits.h │ │ ├── api_gateway_sources.cc │ │ ├── api_gateway_stub.cc │ │ ├── api_gateway_stub.h │ │ ├── api_gateway_stub_factory.cc │ │ ├── api_gateway_stub_factory.h │ │ ├── api_gateway_tracing_connection.cc │ │ ├── api_gateway_tracing_connection.h │ │ ├── api_gateway_tracing_stub.cc │ │ └── api_gateway_tracing_stub.h │ │ ├── mocks │ │ └── mock_api_gateway_connection.h │ │ └── samples │ │ └── api_gateway_client_samples.cc │ ├── apigeeconnect │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── connection_client.h │ ├── connection_connection.h │ ├── connection_connection_idempotency_policy.h │ ├── connection_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_connection_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── connection_client.cc │ │ ├── connection_client.h │ │ ├── connection_connection.cc │ │ ├── connection_connection.h │ │ ├── connection_connection_idempotency_policy.cc │ │ ├── connection_connection_idempotency_policy.h │ │ ├── connection_options.h │ │ ├── internal │ │ ├── connection_auth_decorator.cc │ │ ├── connection_auth_decorator.h │ │ ├── connection_connection_impl.cc │ │ ├── connection_connection_impl.h │ │ ├── connection_logging_decorator.cc │ │ ├── connection_logging_decorator.h │ │ ├── connection_metadata_decorator.cc │ │ ├── connection_metadata_decorator.h │ │ ├── connection_option_defaults.cc │ │ ├── connection_option_defaults.h │ │ ├── connection_retry_traits.h │ │ ├── connection_sources.cc │ │ ├── connection_stub.cc │ │ ├── connection_stub.h │ │ ├── connection_stub_factory.cc │ │ ├── connection_stub_factory.h │ │ ├── connection_tracing_connection.cc │ │ ├── connection_tracing_connection.h │ │ ├── connection_tracing_stub.cc │ │ └── connection_tracing_stub.h │ │ ├── mocks │ │ └── mock_connection_connection.h │ │ └── samples │ │ └── connection_client_samples.cc │ ├── apikeys │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── api_keys_client.h │ ├── api_keys_connection.h │ ├── api_keys_connection_idempotency_policy.h │ ├── api_keys_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_api_keys_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── api_keys_client.cc │ │ ├── api_keys_client.h │ │ ├── api_keys_connection.cc │ │ ├── api_keys_connection.h │ │ ├── api_keys_connection_idempotency_policy.cc │ │ ├── api_keys_connection_idempotency_policy.h │ │ ├── api_keys_options.h │ │ ├── internal │ │ ├── api_keys_auth_decorator.cc │ │ ├── api_keys_auth_decorator.h │ │ ├── api_keys_connection_impl.cc │ │ ├── api_keys_connection_impl.h │ │ ├── api_keys_logging_decorator.cc │ │ ├── api_keys_logging_decorator.h │ │ ├── api_keys_metadata_decorator.cc │ │ ├── api_keys_metadata_decorator.h │ │ ├── api_keys_option_defaults.cc │ │ ├── api_keys_option_defaults.h │ │ ├── api_keys_retry_traits.h │ │ ├── api_keys_sources.cc │ │ ├── api_keys_stub.cc │ │ ├── api_keys_stub.h │ │ ├── api_keys_stub_factory.cc │ │ ├── api_keys_stub_factory.h │ │ ├── api_keys_tracing_connection.cc │ │ ├── api_keys_tracing_connection.h │ │ ├── api_keys_tracing_stub.cc │ │ └── api_keys_tracing_stub.h │ │ ├── mocks │ │ └── mock_api_keys_connection.h │ │ └── samples │ │ └── api_keys_client_samples.cc │ ├── appengine │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── applications_client.h │ ├── applications_connection.h │ ├── applications_connection_idempotency_policy.h │ ├── applications_options.h │ ├── authorized_certificates_client.h │ ├── authorized_certificates_connection.h │ ├── authorized_certificates_connection_idempotency_policy.h │ ├── authorized_certificates_options.h │ ├── authorized_domains_client.h │ ├── authorized_domains_connection.h │ ├── authorized_domains_connection_idempotency_policy.h │ ├── authorized_domains_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── domain_mappings_client.h │ ├── domain_mappings_connection.h │ ├── domain_mappings_connection_idempotency_policy.h │ ├── domain_mappings_options.h │ ├── firewall_client.h │ ├── firewall_connection.h │ ├── firewall_connection_idempotency_policy.h │ ├── firewall_options.h │ ├── instances_client.h │ ├── instances_connection.h │ ├── instances_connection_idempotency_policy.h │ ├── instances_options.h │ ├── mocks │ │ ├── mock_applications_connection.h │ │ ├── mock_authorized_certificates_connection.h │ │ ├── mock_authorized_domains_connection.h │ │ ├── mock_domain_mappings_connection.h │ │ ├── mock_firewall_connection.h │ │ ├── mock_instances_connection.h │ │ ├── mock_services_connection.h │ │ └── mock_versions_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── services_client.h │ ├── services_connection.h │ ├── services_connection_idempotency_policy.h │ ├── services_options.h │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── applications_client.cc │ │ ├── applications_client.h │ │ ├── applications_connection.cc │ │ ├── applications_connection.h │ │ ├── applications_connection_idempotency_policy.cc │ │ ├── applications_connection_idempotency_policy.h │ │ ├── applications_options.h │ │ ├── authorized_certificates_client.cc │ │ ├── authorized_certificates_client.h │ │ ├── authorized_certificates_connection.cc │ │ ├── authorized_certificates_connection.h │ │ ├── authorized_certificates_connection_idempotency_policy.cc │ │ ├── authorized_certificates_connection_idempotency_policy.h │ │ ├── authorized_certificates_options.h │ │ ├── authorized_domains_client.cc │ │ ├── authorized_domains_client.h │ │ ├── authorized_domains_connection.cc │ │ ├── authorized_domains_connection.h │ │ ├── authorized_domains_connection_idempotency_policy.cc │ │ ├── authorized_domains_connection_idempotency_policy.h │ │ ├── authorized_domains_options.h │ │ ├── domain_mappings_client.cc │ │ ├── domain_mappings_client.h │ │ ├── domain_mappings_connection.cc │ │ ├── domain_mappings_connection.h │ │ ├── domain_mappings_connection_idempotency_policy.cc │ │ ├── domain_mappings_connection_idempotency_policy.h │ │ ├── domain_mappings_options.h │ │ ├── firewall_client.cc │ │ ├── firewall_client.h │ │ ├── firewall_connection.cc │ │ ├── firewall_connection.h │ │ ├── firewall_connection_idempotency_policy.cc │ │ ├── firewall_connection_idempotency_policy.h │ │ ├── firewall_options.h │ │ ├── instances_client.cc │ │ ├── instances_client.h │ │ ├── instances_connection.cc │ │ ├── instances_connection.h │ │ ├── instances_connection_idempotency_policy.cc │ │ ├── instances_connection_idempotency_policy.h │ │ ├── instances_options.h │ │ ├── internal │ │ │ ├── applications_auth_decorator.cc │ │ │ ├── applications_auth_decorator.h │ │ │ ├── applications_connection_impl.cc │ │ │ ├── applications_connection_impl.h │ │ │ ├── applications_logging_decorator.cc │ │ │ ├── applications_logging_decorator.h │ │ │ ├── applications_metadata_decorator.cc │ │ │ ├── applications_metadata_decorator.h │ │ │ ├── applications_option_defaults.cc │ │ │ ├── applications_option_defaults.h │ │ │ ├── applications_retry_traits.h │ │ │ ├── applications_sources.cc │ │ │ ├── applications_stub.cc │ │ │ ├── applications_stub.h │ │ │ ├── applications_stub_factory.cc │ │ │ ├── applications_stub_factory.h │ │ │ ├── applications_tracing_connection.cc │ │ │ ├── applications_tracing_connection.h │ │ │ ├── applications_tracing_stub.cc │ │ │ ├── applications_tracing_stub.h │ │ │ ├── authorized_certificates_auth_decorator.cc │ │ │ ├── authorized_certificates_auth_decorator.h │ │ │ ├── authorized_certificates_connection_impl.cc │ │ │ ├── authorized_certificates_connection_impl.h │ │ │ ├── authorized_certificates_logging_decorator.cc │ │ │ ├── authorized_certificates_logging_decorator.h │ │ │ ├── authorized_certificates_metadata_decorator.cc │ │ │ ├── authorized_certificates_metadata_decorator.h │ │ │ ├── authorized_certificates_option_defaults.cc │ │ │ ├── authorized_certificates_option_defaults.h │ │ │ ├── authorized_certificates_retry_traits.h │ │ │ ├── authorized_certificates_sources.cc │ │ │ ├── authorized_certificates_stub.cc │ │ │ ├── authorized_certificates_stub.h │ │ │ ├── authorized_certificates_stub_factory.cc │ │ │ ├── authorized_certificates_stub_factory.h │ │ │ ├── authorized_certificates_tracing_connection.cc │ │ │ ├── authorized_certificates_tracing_connection.h │ │ │ ├── authorized_certificates_tracing_stub.cc │ │ │ ├── authorized_certificates_tracing_stub.h │ │ │ ├── authorized_domains_auth_decorator.cc │ │ │ ├── authorized_domains_auth_decorator.h │ │ │ ├── authorized_domains_connection_impl.cc │ │ │ ├── authorized_domains_connection_impl.h │ │ │ ├── authorized_domains_logging_decorator.cc │ │ │ ├── authorized_domains_logging_decorator.h │ │ │ ├── authorized_domains_metadata_decorator.cc │ │ │ ├── authorized_domains_metadata_decorator.h │ │ │ ├── authorized_domains_option_defaults.cc │ │ │ ├── authorized_domains_option_defaults.h │ │ │ ├── authorized_domains_retry_traits.h │ │ │ ├── authorized_domains_sources.cc │ │ │ ├── authorized_domains_stub.cc │ │ │ ├── authorized_domains_stub.h │ │ │ ├── authorized_domains_stub_factory.cc │ │ │ ├── authorized_domains_stub_factory.h │ │ │ ├── authorized_domains_tracing_connection.cc │ │ │ ├── authorized_domains_tracing_connection.h │ │ │ ├── authorized_domains_tracing_stub.cc │ │ │ ├── authorized_domains_tracing_stub.h │ │ │ ├── domain_mappings_auth_decorator.cc │ │ │ ├── domain_mappings_auth_decorator.h │ │ │ ├── domain_mappings_connection_impl.cc │ │ │ ├── domain_mappings_connection_impl.h │ │ │ ├── domain_mappings_logging_decorator.cc │ │ │ ├── domain_mappings_logging_decorator.h │ │ │ ├── domain_mappings_metadata_decorator.cc │ │ │ ├── domain_mappings_metadata_decorator.h │ │ │ ├── domain_mappings_option_defaults.cc │ │ │ ├── domain_mappings_option_defaults.h │ │ │ ├── domain_mappings_retry_traits.h │ │ │ ├── domain_mappings_sources.cc │ │ │ ├── domain_mappings_stub.cc │ │ │ ├── domain_mappings_stub.h │ │ │ ├── domain_mappings_stub_factory.cc │ │ │ ├── domain_mappings_stub_factory.h │ │ │ ├── domain_mappings_tracing_connection.cc │ │ │ ├── domain_mappings_tracing_connection.h │ │ │ ├── domain_mappings_tracing_stub.cc │ │ │ ├── domain_mappings_tracing_stub.h │ │ │ ├── firewall_auth_decorator.cc │ │ │ ├── firewall_auth_decorator.h │ │ │ ├── firewall_connection_impl.cc │ │ │ ├── firewall_connection_impl.h │ │ │ ├── firewall_logging_decorator.cc │ │ │ ├── firewall_logging_decorator.h │ │ │ ├── firewall_metadata_decorator.cc │ │ │ ├── firewall_metadata_decorator.h │ │ │ ├── firewall_option_defaults.cc │ │ │ ├── firewall_option_defaults.h │ │ │ ├── firewall_retry_traits.h │ │ │ ├── firewall_sources.cc │ │ │ ├── firewall_stub.cc │ │ │ ├── firewall_stub.h │ │ │ ├── firewall_stub_factory.cc │ │ │ ├── firewall_stub_factory.h │ │ │ ├── firewall_tracing_connection.cc │ │ │ ├── firewall_tracing_connection.h │ │ │ ├── firewall_tracing_stub.cc │ │ │ ├── firewall_tracing_stub.h │ │ │ ├── instances_auth_decorator.cc │ │ │ ├── instances_auth_decorator.h │ │ │ ├── instances_connection_impl.cc │ │ │ ├── instances_connection_impl.h │ │ │ ├── instances_logging_decorator.cc │ │ │ ├── instances_logging_decorator.h │ │ │ ├── instances_metadata_decorator.cc │ │ │ ├── instances_metadata_decorator.h │ │ │ ├── instances_option_defaults.cc │ │ │ ├── instances_option_defaults.h │ │ │ ├── instances_retry_traits.h │ │ │ ├── instances_sources.cc │ │ │ ├── instances_stub.cc │ │ │ ├── instances_stub.h │ │ │ ├── instances_stub_factory.cc │ │ │ ├── instances_stub_factory.h │ │ │ ├── instances_tracing_connection.cc │ │ │ ├── instances_tracing_connection.h │ │ │ ├── instances_tracing_stub.cc │ │ │ ├── instances_tracing_stub.h │ │ │ ├── services_auth_decorator.cc │ │ │ ├── services_auth_decorator.h │ │ │ ├── services_connection_impl.cc │ │ │ ├── services_connection_impl.h │ │ │ ├── services_logging_decorator.cc │ │ │ ├── services_logging_decorator.h │ │ │ ├── services_metadata_decorator.cc │ │ │ ├── services_metadata_decorator.h │ │ │ ├── services_option_defaults.cc │ │ │ ├── services_option_defaults.h │ │ │ ├── services_retry_traits.h │ │ │ ├── services_sources.cc │ │ │ ├── services_stub.cc │ │ │ ├── services_stub.h │ │ │ ├── services_stub_factory.cc │ │ │ ├── services_stub_factory.h │ │ │ ├── services_tracing_connection.cc │ │ │ ├── services_tracing_connection.h │ │ │ ├── services_tracing_stub.cc │ │ │ ├── services_tracing_stub.h │ │ │ ├── versions_auth_decorator.cc │ │ │ ├── versions_auth_decorator.h │ │ │ ├── versions_connection_impl.cc │ │ │ ├── versions_connection_impl.h │ │ │ ├── versions_logging_decorator.cc │ │ │ ├── versions_logging_decorator.h │ │ │ ├── versions_metadata_decorator.cc │ │ │ ├── versions_metadata_decorator.h │ │ │ ├── versions_option_defaults.cc │ │ │ ├── versions_option_defaults.h │ │ │ ├── versions_retry_traits.h │ │ │ ├── versions_sources.cc │ │ │ ├── versions_stub.cc │ │ │ ├── versions_stub.h │ │ │ ├── versions_stub_factory.cc │ │ │ ├── versions_stub_factory.h │ │ │ ├── versions_tracing_connection.cc │ │ │ ├── versions_tracing_connection.h │ │ │ ├── versions_tracing_stub.cc │ │ │ └── versions_tracing_stub.h │ │ ├── mocks │ │ │ ├── mock_applications_connection.h │ │ │ ├── mock_authorized_certificates_connection.h │ │ │ ├── mock_authorized_domains_connection.h │ │ │ ├── mock_domain_mappings_connection.h │ │ │ ├── mock_firewall_connection.h │ │ │ ├── mock_instances_connection.h │ │ │ ├── mock_services_connection.h │ │ │ └── mock_versions_connection.h │ │ ├── samples │ │ │ ├── applications_client_samples.cc │ │ │ ├── authorized_certificates_client_samples.cc │ │ │ ├── authorized_domains_client_samples.cc │ │ │ ├── domain_mappings_client_samples.cc │ │ │ ├── firewall_client_samples.cc │ │ │ ├── instances_client_samples.cc │ │ │ ├── services_client_samples.cc │ │ │ └── versions_client_samples.cc │ │ ├── services_client.cc │ │ ├── services_client.h │ │ ├── services_connection.cc │ │ ├── services_connection.h │ │ ├── services_connection_idempotency_policy.cc │ │ ├── services_connection_idempotency_policy.h │ │ ├── services_options.h │ │ ├── versions_client.cc │ │ ├── versions_client.h │ │ ├── versions_connection.cc │ │ ├── versions_connection.h │ │ ├── versions_connection_idempotency_policy.cc │ │ ├── versions_connection_idempotency_policy.h │ │ └── versions_options.h │ ├── versions_client.h │ ├── versions_connection.h │ ├── versions_connection_idempotency_policy.h │ └── versions_options.h │ ├── apphub │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── app_hub_client.cc │ │ ├── app_hub_client.h │ │ ├── app_hub_connection.cc │ │ ├── app_hub_connection.h │ │ ├── app_hub_connection_idempotency_policy.cc │ │ ├── app_hub_connection_idempotency_policy.h │ │ ├── app_hub_options.h │ │ ├── internal │ │ ├── app_hub_auth_decorator.cc │ │ ├── app_hub_auth_decorator.h │ │ ├── app_hub_connection_impl.cc │ │ ├── app_hub_connection_impl.h │ │ ├── app_hub_logging_decorator.cc │ │ ├── app_hub_logging_decorator.h │ │ ├── app_hub_metadata_decorator.cc │ │ ├── app_hub_metadata_decorator.h │ │ ├── app_hub_option_defaults.cc │ │ ├── app_hub_option_defaults.h │ │ ├── app_hub_retry_traits.h │ │ ├── app_hub_sources.cc │ │ ├── app_hub_stub.cc │ │ ├── app_hub_stub.h │ │ ├── app_hub_stub_factory.cc │ │ ├── app_hub_stub_factory.h │ │ ├── app_hub_tracing_connection.cc │ │ ├── app_hub_tracing_connection.h │ │ ├── app_hub_tracing_stub.cc │ │ └── app_hub_tracing_stub.h │ │ ├── mocks │ │ └── mock_app_hub_connection.h │ │ └── samples │ │ └── app_hub_client_samples.cc │ ├── artifactregistry │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── artifact_registry_client.h │ ├── artifact_registry_connection.h │ ├── artifact_registry_connection_idempotency_policy.h │ ├── artifact_registry_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_artifact_registry_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── artifact_registry_client.cc │ │ ├── artifact_registry_client.h │ │ ├── artifact_registry_connection.cc │ │ ├── artifact_registry_connection.h │ │ ├── artifact_registry_connection_idempotency_policy.cc │ │ ├── artifact_registry_connection_idempotency_policy.h │ │ ├── artifact_registry_options.h │ │ ├── internal │ │ ├── artifact_registry_auth_decorator.cc │ │ ├── artifact_registry_auth_decorator.h │ │ ├── artifact_registry_connection_impl.cc │ │ ├── artifact_registry_connection_impl.h │ │ ├── artifact_registry_logging_decorator.cc │ │ ├── artifact_registry_logging_decorator.h │ │ ├── artifact_registry_metadata_decorator.cc │ │ ├── artifact_registry_metadata_decorator.h │ │ ├── artifact_registry_option_defaults.cc │ │ ├── artifact_registry_option_defaults.h │ │ ├── artifact_registry_retry_traits.h │ │ ├── artifact_registry_sources.cc │ │ ├── artifact_registry_stub.cc │ │ ├── artifact_registry_stub.h │ │ ├── artifact_registry_stub_factory.cc │ │ ├── artifact_registry_stub_factory.h │ │ ├── artifact_registry_tracing_connection.cc │ │ ├── artifact_registry_tracing_connection.h │ │ ├── artifact_registry_tracing_stub.cc │ │ └── artifact_registry_tracing_stub.h │ │ ├── mocks │ │ └── mock_artifact_registry_connection.h │ │ └── samples │ │ └── artifact_registry_client_samples.cc │ ├── asset │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── asset_client.h │ ├── asset_connection.h │ ├── asset_connection_idempotency_policy.h │ ├── asset_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_asset_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── asset_client.cc │ │ ├── asset_client.h │ │ ├── asset_connection.cc │ │ ├── asset_connection.h │ │ ├── asset_connection_idempotency_policy.cc │ │ ├── asset_connection_idempotency_policy.h │ │ ├── asset_options.h │ │ ├── internal │ │ ├── asset_auth_decorator.cc │ │ ├── asset_auth_decorator.h │ │ ├── asset_connection_impl.cc │ │ ├── asset_connection_impl.h │ │ ├── asset_logging_decorator.cc │ │ ├── asset_logging_decorator.h │ │ ├── asset_metadata_decorator.cc │ │ ├── asset_metadata_decorator.h │ │ ├── asset_option_defaults.cc │ │ ├── asset_option_defaults.h │ │ ├── asset_retry_traits.h │ │ ├── asset_sources.cc │ │ ├── asset_stub.cc │ │ ├── asset_stub.h │ │ ├── asset_stub_factory.cc │ │ ├── asset_stub_factory.h │ │ ├── asset_tracing_connection.cc │ │ ├── asset_tracing_connection.h │ │ ├── asset_tracing_stub.cc │ │ └── asset_tracing_stub.h │ │ ├── mocks │ │ └── mock_asset_connection.h │ │ └── samples │ │ └── asset_client_samples.cc │ ├── assuredworkloads │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── assured_workloads_client.h │ ├── assured_workloads_connection.h │ ├── assured_workloads_connection_idempotency_policy.h │ ├── assured_workloads_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_assured_workloads_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── assured_workloads_client.cc │ │ ├── assured_workloads_client.h │ │ ├── assured_workloads_connection.cc │ │ ├── assured_workloads_connection.h │ │ ├── assured_workloads_connection_idempotency_policy.cc │ │ ├── assured_workloads_connection_idempotency_policy.h │ │ ├── assured_workloads_options.h │ │ ├── internal │ │ ├── assured_workloads_auth_decorator.cc │ │ ├── assured_workloads_auth_decorator.h │ │ ├── assured_workloads_connection_impl.cc │ │ ├── assured_workloads_connection_impl.h │ │ ├── assured_workloads_logging_decorator.cc │ │ ├── assured_workloads_logging_decorator.h │ │ ├── assured_workloads_metadata_decorator.cc │ │ ├── assured_workloads_metadata_decorator.h │ │ ├── assured_workloads_option_defaults.cc │ │ ├── assured_workloads_option_defaults.h │ │ ├── assured_workloads_retry_traits.h │ │ ├── assured_workloads_sources.cc │ │ ├── assured_workloads_stub.cc │ │ ├── assured_workloads_stub.h │ │ ├── assured_workloads_stub_factory.cc │ │ ├── assured_workloads_stub_factory.h │ │ ├── assured_workloads_tracing_connection.cc │ │ ├── assured_workloads_tracing_connection.h │ │ ├── assured_workloads_tracing_stub.cc │ │ └── assured_workloads_tracing_stub.h │ │ ├── mocks │ │ └── mock_assured_workloads_connection.h │ │ └── samples │ │ └── assured_workloads_client_samples.cc │ ├── async_operation.h │ ├── async_streaming_read_write_rpc.h │ ├── automl │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── auto_ml_client.h │ ├── auto_ml_connection.h │ ├── auto_ml_connection_idempotency_policy.h │ ├── auto_ml_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ ├── mock_auto_ml_connection.h │ │ └── mock_prediction_connection.h │ ├── prediction_client.h │ ├── prediction_connection.h │ ├── prediction_connection_idempotency_policy.h │ ├── prediction_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── auto_ml_client.cc │ │ ├── auto_ml_client.h │ │ ├── auto_ml_connection.cc │ │ ├── auto_ml_connection.h │ │ ├── auto_ml_connection_idempotency_policy.cc │ │ ├── auto_ml_connection_idempotency_policy.h │ │ ├── auto_ml_options.h │ │ ├── internal │ │ ├── auto_ml_auth_decorator.cc │ │ ├── auto_ml_auth_decorator.h │ │ ├── auto_ml_connection_impl.cc │ │ ├── auto_ml_connection_impl.h │ │ ├── auto_ml_logging_decorator.cc │ │ ├── auto_ml_logging_decorator.h │ │ ├── auto_ml_metadata_decorator.cc │ │ ├── auto_ml_metadata_decorator.h │ │ ├── auto_ml_option_defaults.cc │ │ ├── auto_ml_option_defaults.h │ │ ├── auto_ml_retry_traits.h │ │ ├── auto_ml_sources.cc │ │ ├── auto_ml_stub.cc │ │ ├── auto_ml_stub.h │ │ ├── auto_ml_stub_factory.cc │ │ ├── auto_ml_stub_factory.h │ │ ├── auto_ml_tracing_connection.cc │ │ ├── auto_ml_tracing_connection.h │ │ ├── auto_ml_tracing_stub.cc │ │ ├── auto_ml_tracing_stub.h │ │ ├── prediction_auth_decorator.cc │ │ ├── prediction_auth_decorator.h │ │ ├── prediction_connection_impl.cc │ │ ├── prediction_connection_impl.h │ │ ├── prediction_logging_decorator.cc │ │ ├── prediction_logging_decorator.h │ │ ├── prediction_metadata_decorator.cc │ │ ├── prediction_metadata_decorator.h │ │ ├── prediction_option_defaults.cc │ │ ├── prediction_option_defaults.h │ │ ├── prediction_retry_traits.h │ │ ├── prediction_sources.cc │ │ ├── prediction_stub.cc │ │ ├── prediction_stub.h │ │ ├── prediction_stub_factory.cc │ │ ├── prediction_stub_factory.h │ │ ├── prediction_tracing_connection.cc │ │ ├── prediction_tracing_connection.h │ │ ├── prediction_tracing_stub.cc │ │ └── prediction_tracing_stub.h │ │ ├── mocks │ │ ├── mock_auto_ml_connection.h │ │ └── mock_prediction_connection.h │ │ ├── prediction_client.cc │ │ ├── prediction_client.h │ │ ├── prediction_connection.cc │ │ ├── prediction_connection.h │ │ ├── prediction_connection_idempotency_policy.cc │ │ ├── prediction_connection_idempotency_policy.h │ │ ├── prediction_options.h │ │ └── samples │ │ ├── auto_ml_client_samples.cc │ │ └── prediction_client_samples.cc │ ├── background_threads.h │ ├── backoff_policy.h │ ├── backupdr │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── backup_dr_client.cc │ │ ├── backup_dr_client.h │ │ ├── backup_dr_connection.cc │ │ ├── backup_dr_connection.h │ │ ├── backup_dr_connection_idempotency_policy.cc │ │ ├── backup_dr_connection_idempotency_policy.h │ │ ├── backup_dr_options.h │ │ ├── internal │ │ ├── backup_dr_auth_decorator.cc │ │ ├── backup_dr_auth_decorator.h │ │ ├── backup_dr_connection_impl.cc │ │ ├── backup_dr_connection_impl.h │ │ ├── backup_dr_logging_decorator.cc │ │ ├── backup_dr_logging_decorator.h │ │ ├── backup_dr_metadata_decorator.cc │ │ ├── backup_dr_metadata_decorator.h │ │ ├── backup_dr_option_defaults.cc │ │ ├── backup_dr_option_defaults.h │ │ ├── backup_dr_retry_traits.h │ │ ├── backup_dr_sources.cc │ │ ├── backup_dr_stub.cc │ │ ├── backup_dr_stub.h │ │ ├── backup_dr_stub_factory.cc │ │ ├── backup_dr_stub_factory.h │ │ ├── backup_dr_tracing_connection.cc │ │ ├── backup_dr_tracing_connection.h │ │ ├── backup_dr_tracing_stub.cc │ │ └── backup_dr_tracing_stub.h │ │ ├── mocks │ │ └── mock_backup_dr_connection.h │ │ └── samples │ │ └── backup_dr_client_samples.cc │ ├── baremetalsolution │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── bare_metal_solution_client.h │ ├── bare_metal_solution_connection.h │ ├── bare_metal_solution_connection_idempotency_policy.h │ ├── bare_metal_solution_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_bare_metal_solution_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── bare_metal_solution_client.cc │ │ ├── bare_metal_solution_client.h │ │ ├── bare_metal_solution_connection.cc │ │ ├── bare_metal_solution_connection.h │ │ ├── bare_metal_solution_connection_idempotency_policy.cc │ │ ├── bare_metal_solution_connection_idempotency_policy.h │ │ ├── bare_metal_solution_options.h │ │ ├── internal │ │ ├── bare_metal_solution_auth_decorator.cc │ │ ├── bare_metal_solution_auth_decorator.h │ │ ├── bare_metal_solution_connection_impl.cc │ │ ├── bare_metal_solution_connection_impl.h │ │ ├── bare_metal_solution_logging_decorator.cc │ │ ├── bare_metal_solution_logging_decorator.h │ │ ├── bare_metal_solution_metadata_decorator.cc │ │ ├── bare_metal_solution_metadata_decorator.h │ │ ├── bare_metal_solution_option_defaults.cc │ │ ├── bare_metal_solution_option_defaults.h │ │ ├── bare_metal_solution_retry_traits.h │ │ ├── bare_metal_solution_sources.cc │ │ ├── bare_metal_solution_stub.cc │ │ ├── bare_metal_solution_stub.h │ │ ├── bare_metal_solution_stub_factory.cc │ │ ├── bare_metal_solution_stub_factory.h │ │ ├── bare_metal_solution_tracing_connection.cc │ │ ├── bare_metal_solution_tracing_connection.h │ │ ├── bare_metal_solution_tracing_stub.cc │ │ └── bare_metal_solution_tracing_stub.h │ │ ├── mocks │ │ └── mock_bare_metal_solution_connection.h │ │ └── samples │ │ └── bare_metal_solution_client_samples.cc │ ├── batch │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── batch_client.h │ ├── batch_connection.h │ ├── batch_connection_idempotency_policy.h │ ├── batch_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_batch_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── batch_client.cc │ │ ├── batch_client.h │ │ ├── batch_connection.cc │ │ ├── batch_connection.h │ │ ├── batch_connection_idempotency_policy.cc │ │ ├── batch_connection_idempotency_policy.h │ │ ├── batch_options.h │ │ ├── internal │ │ ├── batch_auth_decorator.cc │ │ ├── batch_auth_decorator.h │ │ ├── batch_connection_impl.cc │ │ ├── batch_connection_impl.h │ │ ├── batch_logging_decorator.cc │ │ ├── batch_logging_decorator.h │ │ ├── batch_metadata_decorator.cc │ │ ├── batch_metadata_decorator.h │ │ ├── batch_option_defaults.cc │ │ ├── batch_option_defaults.h │ │ ├── batch_retry_traits.h │ │ ├── batch_sources.cc │ │ ├── batch_stub.cc │ │ ├── batch_stub.h │ │ ├── batch_stub_factory.cc │ │ ├── batch_stub_factory.h │ │ ├── batch_tracing_connection.cc │ │ ├── batch_tracing_connection.h │ │ ├── batch_tracing_stub.cc │ │ └── batch_tracing_stub.h │ │ ├── mocks │ │ └── mock_batch_connection.h │ │ └── samples │ │ ├── batch_client_samples.cc │ │ └── samples.cc │ ├── beyondcorp │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── app_connections_client.h │ ├── app_connections_connection.h │ ├── app_connections_connection_idempotency_policy.h │ ├── app_connections_options.h │ ├── app_connectors_client.h │ ├── app_connectors_connection.h │ ├── app_connectors_connection_idempotency_policy.h │ ├── app_connectors_options.h │ ├── app_gateways_client.h │ ├── app_gateways_connection.h │ ├── app_gateways_connection_idempotency_policy.h │ ├── app_gateways_options.h │ ├── appconnections │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── app_connections_client.cc │ │ │ ├── app_connections_client.h │ │ │ ├── app_connections_connection.cc │ │ │ ├── app_connections_connection.h │ │ │ ├── app_connections_connection_idempotency_policy.cc │ │ │ ├── app_connections_connection_idempotency_policy.h │ │ │ ├── app_connections_options.h │ │ │ ├── internal │ │ │ ├── app_connections_auth_decorator.cc │ │ │ ├── app_connections_auth_decorator.h │ │ │ ├── app_connections_connection_impl.cc │ │ │ ├── app_connections_connection_impl.h │ │ │ ├── app_connections_logging_decorator.cc │ │ │ ├── app_connections_logging_decorator.h │ │ │ ├── app_connections_metadata_decorator.cc │ │ │ ├── app_connections_metadata_decorator.h │ │ │ ├── app_connections_option_defaults.cc │ │ │ ├── app_connections_option_defaults.h │ │ │ ├── app_connections_retry_traits.h │ │ │ ├── app_connections_sources.cc │ │ │ ├── app_connections_stub.cc │ │ │ ├── app_connections_stub.h │ │ │ ├── app_connections_stub_factory.cc │ │ │ ├── app_connections_stub_factory.h │ │ │ ├── app_connections_tracing_connection.cc │ │ │ ├── app_connections_tracing_connection.h │ │ │ ├── app_connections_tracing_stub.cc │ │ │ └── app_connections_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_app_connections_connection.h │ │ │ └── samples │ │ │ └── app_connections_client_samples.cc │ ├── appconnectors │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── app_connectors_client.cc │ │ │ ├── app_connectors_client.h │ │ │ ├── app_connectors_connection.cc │ │ │ ├── app_connectors_connection.h │ │ │ ├── app_connectors_connection_idempotency_policy.cc │ │ │ ├── app_connectors_connection_idempotency_policy.h │ │ │ ├── app_connectors_options.h │ │ │ ├── internal │ │ │ ├── app_connectors_auth_decorator.cc │ │ │ ├── app_connectors_auth_decorator.h │ │ │ ├── app_connectors_connection_impl.cc │ │ │ ├── app_connectors_connection_impl.h │ │ │ ├── app_connectors_logging_decorator.cc │ │ │ ├── app_connectors_logging_decorator.h │ │ │ ├── app_connectors_metadata_decorator.cc │ │ │ ├── app_connectors_metadata_decorator.h │ │ │ ├── app_connectors_option_defaults.cc │ │ │ ├── app_connectors_option_defaults.h │ │ │ ├── app_connectors_retry_traits.h │ │ │ ├── app_connectors_sources.cc │ │ │ ├── app_connectors_stub.cc │ │ │ ├── app_connectors_stub.h │ │ │ ├── app_connectors_stub_factory.cc │ │ │ ├── app_connectors_stub_factory.h │ │ │ ├── app_connectors_tracing_connection.cc │ │ │ ├── app_connectors_tracing_connection.h │ │ │ ├── app_connectors_tracing_stub.cc │ │ │ └── app_connectors_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_app_connectors_connection.h │ │ │ └── samples │ │ │ └── app_connectors_client_samples.cc │ ├── appgateways │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── app_gateways_client.cc │ │ │ ├── app_gateways_client.h │ │ │ ├── app_gateways_connection.cc │ │ │ ├── app_gateways_connection.h │ │ │ ├── app_gateways_connection_idempotency_policy.cc │ │ │ ├── app_gateways_connection_idempotency_policy.h │ │ │ ├── app_gateways_options.h │ │ │ ├── internal │ │ │ ├── app_gateways_auth_decorator.cc │ │ │ ├── app_gateways_auth_decorator.h │ │ │ ├── app_gateways_connection_impl.cc │ │ │ ├── app_gateways_connection_impl.h │ │ │ ├── app_gateways_logging_decorator.cc │ │ │ ├── app_gateways_logging_decorator.h │ │ │ ├── app_gateways_metadata_decorator.cc │ │ │ ├── app_gateways_metadata_decorator.h │ │ │ ├── app_gateways_option_defaults.cc │ │ │ ├── app_gateways_option_defaults.h │ │ │ ├── app_gateways_retry_traits.h │ │ │ ├── app_gateways_sources.cc │ │ │ ├── app_gateways_stub.cc │ │ │ ├── app_gateways_stub.h │ │ │ ├── app_gateways_stub_factory.cc │ │ │ ├── app_gateways_stub_factory.h │ │ │ ├── app_gateways_tracing_connection.cc │ │ │ ├── app_gateways_tracing_connection.h │ │ │ ├── app_gateways_tracing_stub.cc │ │ │ └── app_gateways_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_app_gateways_connection.h │ │ │ └── samples │ │ │ └── app_gateways_client_samples.cc │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ ├── mock_app_connections_connection.h │ │ ├── mock_app_connectors_connection.h │ │ └── mock_app_gateways_connection.h │ └── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── bigquery │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── analytics_hub_client.h │ ├── analytics_hub_connection.h │ ├── analytics_hub_connection_idempotency_policy.h │ ├── analytics_hub_options.h │ ├── analyticshub │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── analytics_hub_client.cc │ │ │ ├── analytics_hub_client.h │ │ │ ├── analytics_hub_connection.cc │ │ │ ├── analytics_hub_connection.h │ │ │ ├── analytics_hub_connection_idempotency_policy.cc │ │ │ ├── analytics_hub_connection_idempotency_policy.h │ │ │ ├── analytics_hub_options.h │ │ │ ├── internal │ │ │ ├── analytics_hub_auth_decorator.cc │ │ │ ├── analytics_hub_auth_decorator.h │ │ │ ├── analytics_hub_connection_impl.cc │ │ │ ├── analytics_hub_connection_impl.h │ │ │ ├── analytics_hub_logging_decorator.cc │ │ │ ├── analytics_hub_logging_decorator.h │ │ │ ├── analytics_hub_metadata_decorator.cc │ │ │ ├── analytics_hub_metadata_decorator.h │ │ │ ├── analytics_hub_option_defaults.cc │ │ │ ├── analytics_hub_option_defaults.h │ │ │ ├── analytics_hub_retry_traits.h │ │ │ ├── analytics_hub_sources.cc │ │ │ ├── analytics_hub_stub.cc │ │ │ ├── analytics_hub_stub.h │ │ │ ├── analytics_hub_stub_factory.cc │ │ │ ├── analytics_hub_stub_factory.h │ │ │ ├── analytics_hub_tracing_connection.cc │ │ │ ├── analytics_hub_tracing_connection.h │ │ │ ├── analytics_hub_tracing_stub.cc │ │ │ └── analytics_hub_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_analytics_hub_connection.h │ │ │ └── samples │ │ │ └── analytics_hub_client_samples.cc │ ├── biglake │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── metastore_auth_decorator.cc │ │ │ ├── metastore_auth_decorator.h │ │ │ ├── metastore_connection_impl.cc │ │ │ ├── metastore_connection_impl.h │ │ │ ├── metastore_logging_decorator.cc │ │ │ ├── metastore_logging_decorator.h │ │ │ ├── metastore_metadata_decorator.cc │ │ │ ├── metastore_metadata_decorator.h │ │ │ ├── metastore_option_defaults.cc │ │ │ ├── metastore_option_defaults.h │ │ │ ├── metastore_retry_traits.h │ │ │ ├── metastore_sources.cc │ │ │ ├── metastore_stub.cc │ │ │ ├── metastore_stub.h │ │ │ ├── metastore_stub_factory.cc │ │ │ ├── metastore_stub_factory.h │ │ │ ├── metastore_tracing_connection.cc │ │ │ ├── metastore_tracing_connection.h │ │ │ ├── metastore_tracing_stub.cc │ │ │ └── metastore_tracing_stub.h │ │ │ ├── metastore_client.cc │ │ │ ├── metastore_client.h │ │ │ ├── metastore_connection.cc │ │ │ ├── metastore_connection.h │ │ │ ├── metastore_connection_idempotency_policy.cc │ │ │ ├── metastore_connection_idempotency_policy.h │ │ │ ├── metastore_options.h │ │ │ ├── mocks │ │ │ └── mock_metastore_connection.h │ │ │ └── samples │ │ │ └── metastore_client_samples.cc │ ├── bigquery_grpc.cmake │ ├── bigquery_read_client.h │ ├── bigquery_read_connection.h │ ├── bigquery_read_connection_idempotency_policy.h │ ├── bigquery_read_options.h │ ├── bigquery_rest.cmake │ ├── bigquery_rest_testing.bzl │ ├── bigquery_rest_unit_tests.bzl │ ├── bigquery_write_client.h │ ├── bigquery_write_connection.h │ ├── bigquery_write_connection_idempotency_policy.h │ ├── bigquery_write_options.h │ ├── config-rest.cmake.in │ ├── connection │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── connection_client.cc │ │ │ ├── connection_client.h │ │ │ ├── connection_connection.cc │ │ │ ├── connection_connection.h │ │ │ ├── connection_connection_idempotency_policy.cc │ │ │ ├── connection_connection_idempotency_policy.h │ │ │ ├── connection_options.h │ │ │ ├── internal │ │ │ ├── connection_auth_decorator.cc │ │ │ ├── connection_auth_decorator.h │ │ │ ├── connection_connection_impl.cc │ │ │ ├── connection_connection_impl.h │ │ │ ├── connection_logging_decorator.cc │ │ │ ├── connection_logging_decorator.h │ │ │ ├── connection_metadata_decorator.cc │ │ │ ├── connection_metadata_decorator.h │ │ │ ├── connection_option_defaults.cc │ │ │ ├── connection_option_defaults.h │ │ │ ├── connection_retry_traits.h │ │ │ ├── connection_sources.cc │ │ │ ├── connection_stub.cc │ │ │ ├── connection_stub.h │ │ │ ├── connection_stub_factory.cc │ │ │ ├── connection_stub_factory.h │ │ │ ├── connection_tracing_connection.cc │ │ │ ├── connection_tracing_connection.h │ │ │ ├── connection_tracing_stub.cc │ │ │ └── connection_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_connection_connection.h │ │ │ └── samples │ │ │ └── connection_client_samples.cc │ ├── connection_client.h │ ├── connection_connection.h │ ├── connection_connection_idempotency_policy.h │ ├── connection_options.h │ ├── data_policy_client.h │ ├── data_policy_connection.h │ ├── data_policy_connection_idempotency_policy.h │ ├── data_policy_options.h │ ├── data_transfer_client.h │ ├── data_transfer_connection.h │ ├── data_transfer_connection_idempotency_policy.h │ ├── data_transfer_options.h │ ├── datapolicies │ │ ├── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── data_policy_client.cc │ │ │ ├── data_policy_client.h │ │ │ ├── data_policy_connection.cc │ │ │ ├── data_policy_connection.h │ │ │ ├── data_policy_connection_idempotency_policy.cc │ │ │ ├── data_policy_connection_idempotency_policy.h │ │ │ ├── data_policy_options.h │ │ │ ├── internal │ │ │ │ ├── data_policy_auth_decorator.cc │ │ │ │ ├── data_policy_auth_decorator.h │ │ │ │ ├── data_policy_connection_impl.cc │ │ │ │ ├── data_policy_connection_impl.h │ │ │ │ ├── data_policy_logging_decorator.cc │ │ │ │ ├── data_policy_logging_decorator.h │ │ │ │ ├── data_policy_metadata_decorator.cc │ │ │ │ ├── data_policy_metadata_decorator.h │ │ │ │ ├── data_policy_option_defaults.cc │ │ │ │ ├── data_policy_option_defaults.h │ │ │ │ ├── data_policy_retry_traits.h │ │ │ │ ├── data_policy_sources.cc │ │ │ │ ├── data_policy_stub.cc │ │ │ │ ├── data_policy_stub.h │ │ │ │ ├── data_policy_stub_factory.cc │ │ │ │ ├── data_policy_stub_factory.h │ │ │ │ ├── data_policy_tracing_connection.cc │ │ │ │ ├── data_policy_tracing_connection.h │ │ │ │ ├── data_policy_tracing_stub.cc │ │ │ │ └── data_policy_tracing_stub.h │ │ │ ├── mocks │ │ │ │ └── mock_data_policy_connection.h │ │ │ └── samples │ │ │ │ └── data_policy_client_samples.cc │ │ └── v2 │ │ │ ├── .repo-metadata.json │ │ │ ├── data_policy_client.cc │ │ │ ├── data_policy_client.h │ │ │ ├── data_policy_connection.cc │ │ │ ├── data_policy_connection.h │ │ │ ├── data_policy_connection_idempotency_policy.cc │ │ │ ├── data_policy_connection_idempotency_policy.h │ │ │ ├── data_policy_options.h │ │ │ ├── internal │ │ │ ├── data_policy_auth_decorator.cc │ │ │ ├── data_policy_auth_decorator.h │ │ │ ├── data_policy_connection_impl.cc │ │ │ ├── data_policy_connection_impl.h │ │ │ ├── data_policy_logging_decorator.cc │ │ │ ├── data_policy_logging_decorator.h │ │ │ ├── data_policy_metadata_decorator.cc │ │ │ ├── data_policy_metadata_decorator.h │ │ │ ├── data_policy_option_defaults.cc │ │ │ ├── data_policy_option_defaults.h │ │ │ ├── data_policy_retry_traits.h │ │ │ ├── data_policy_sources.cc │ │ │ ├── data_policy_stub.cc │ │ │ ├── data_policy_stub.h │ │ │ ├── data_policy_stub_factory.cc │ │ │ ├── data_policy_stub_factory.h │ │ │ ├── data_policy_tracing_connection.cc │ │ │ ├── data_policy_tracing_connection.h │ │ │ ├── data_policy_tracing_stub.cc │ │ │ └── data_policy_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_data_policy_connection.h │ │ │ └── samples │ │ │ └── data_policy_client_samples.cc │ ├── datatransfer │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── data_transfer_client.cc │ │ │ ├── data_transfer_client.h │ │ │ ├── data_transfer_connection.cc │ │ │ ├── data_transfer_connection.h │ │ │ ├── data_transfer_connection_idempotency_policy.cc │ │ │ ├── data_transfer_connection_idempotency_policy.h │ │ │ ├── data_transfer_options.h │ │ │ ├── internal │ │ │ ├── data_transfer_auth_decorator.cc │ │ │ ├── data_transfer_auth_decorator.h │ │ │ ├── data_transfer_connection_impl.cc │ │ │ ├── data_transfer_connection_impl.h │ │ │ ├── data_transfer_logging_decorator.cc │ │ │ ├── data_transfer_logging_decorator.h │ │ │ ├── data_transfer_metadata_decorator.cc │ │ │ ├── data_transfer_metadata_decorator.h │ │ │ ├── data_transfer_option_defaults.cc │ │ │ ├── data_transfer_option_defaults.h │ │ │ ├── data_transfer_retry_traits.h │ │ │ ├── data_transfer_sources.cc │ │ │ ├── data_transfer_stub.cc │ │ │ ├── data_transfer_stub.h │ │ │ ├── data_transfer_stub_factory.cc │ │ │ ├── data_transfer_stub_factory.h │ │ │ ├── data_transfer_tracing_connection.cc │ │ │ ├── data_transfer_tracing_connection.h │ │ │ ├── data_transfer_tracing_stub.cc │ │ │ └── data_transfer_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_data_transfer_connection.h │ │ │ └── samples │ │ │ └── data_transfer_client_samples.cc │ ├── doc │ │ ├── bigquery-read-mock.dox │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── google_cloud_cpp_bigquery_rest.bzl │ ├── google_cloud_cpp_bigquery_rest_mocks.bzl │ ├── migration │ │ └── v2 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── migration_auth_decorator.cc │ │ │ ├── migration_auth_decorator.h │ │ │ ├── migration_connection_impl.cc │ │ │ ├── migration_connection_impl.h │ │ │ ├── migration_logging_decorator.cc │ │ │ ├── migration_logging_decorator.h │ │ │ ├── migration_metadata_decorator.cc │ │ │ ├── migration_metadata_decorator.h │ │ │ ├── migration_option_defaults.cc │ │ │ ├── migration_option_defaults.h │ │ │ ├── migration_retry_traits.h │ │ │ ├── migration_sources.cc │ │ │ ├── migration_stub.cc │ │ │ ├── migration_stub.h │ │ │ ├── migration_stub_factory.cc │ │ │ ├── migration_stub_factory.h │ │ │ ├── migration_tracing_connection.cc │ │ │ ├── migration_tracing_connection.h │ │ │ ├── migration_tracing_stub.cc │ │ │ └── migration_tracing_stub.h │ │ │ ├── migration_client.cc │ │ │ ├── migration_client.h │ │ │ ├── migration_connection.cc │ │ │ ├── migration_connection.h │ │ │ ├── migration_connection_idempotency_policy.cc │ │ │ ├── migration_connection_idempotency_policy.h │ │ │ ├── migration_options.h │ │ │ ├── mocks │ │ │ └── mock_migration_connection.h │ │ │ └── samples │ │ │ └── migration_client_samples.cc │ ├── migration_client.h │ ├── migration_connection.h │ ├── migration_connection_idempotency_policy.h │ ├── migration_options.h │ ├── mocks │ │ ├── mock_analytics_hub_connection.h │ │ ├── mock_bigquery_read_connection.h │ │ ├── mock_bigquery_write_connection.h │ │ ├── mock_connection_connection.h │ │ ├── mock_data_policy_connection.h │ │ ├── mock_data_transfer_connection.h │ │ ├── mock_migration_connection.h │ │ └── mock_reservation_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── reservation │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── reservation_auth_decorator.cc │ │ │ ├── reservation_auth_decorator.h │ │ │ ├── reservation_connection_impl.cc │ │ │ ├── reservation_connection_impl.h │ │ │ ├── reservation_logging_decorator.cc │ │ │ ├── reservation_logging_decorator.h │ │ │ ├── reservation_metadata_decorator.cc │ │ │ ├── reservation_metadata_decorator.h │ │ │ ├── reservation_option_defaults.cc │ │ │ ├── reservation_option_defaults.h │ │ │ ├── reservation_retry_traits.h │ │ │ ├── reservation_sources.cc │ │ │ ├── reservation_stub.cc │ │ │ ├── reservation_stub.h │ │ │ ├── reservation_stub_factory.cc │ │ │ ├── reservation_stub_factory.h │ │ │ ├── reservation_tracing_connection.cc │ │ │ ├── reservation_tracing_connection.h │ │ │ ├── reservation_tracing_stub.cc │ │ │ └── reservation_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_reservation_connection.h │ │ │ ├── reservation_client.cc │ │ │ ├── reservation_client.h │ │ │ ├── reservation_connection.cc │ │ │ ├── reservation_connection.h │ │ │ ├── reservation_connection_idempotency_policy.cc │ │ │ ├── reservation_connection_idempotency_policy.h │ │ │ ├── reservation_options.h │ │ │ └── samples │ │ │ └── reservation_client_samples.cc │ ├── reservation_client.h │ ├── reservation_connection.h │ ├── reservation_connection_idempotency_policy.h │ ├── reservation_options.h │ ├── retry_traits.h │ ├── samples │ │ ├── bigquery_read_samples.cc │ │ └── mock_bigquery_read.cc │ ├── storage │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── bigquery_read_client.cc │ │ │ ├── bigquery_read_client.h │ │ │ ├── bigquery_read_connection.cc │ │ │ ├── bigquery_read_connection.h │ │ │ ├── bigquery_read_connection_idempotency_policy.cc │ │ │ ├── bigquery_read_connection_idempotency_policy.h │ │ │ ├── bigquery_read_options.h │ │ │ ├── bigquery_write_client.cc │ │ │ ├── bigquery_write_client.h │ │ │ ├── bigquery_write_connection.cc │ │ │ ├── bigquery_write_connection.h │ │ │ ├── bigquery_write_connection_idempotency_policy.cc │ │ │ ├── bigquery_write_connection_idempotency_policy.h │ │ │ ├── bigquery_write_options.h │ │ │ ├── internal │ │ │ ├── bigquery_read_auth_decorator.cc │ │ │ ├── bigquery_read_auth_decorator.h │ │ │ ├── bigquery_read_connection_impl.cc │ │ │ ├── bigquery_read_connection_impl.h │ │ │ ├── bigquery_read_logging_decorator.cc │ │ │ ├── bigquery_read_logging_decorator.h │ │ │ ├── bigquery_read_metadata_decorator.cc │ │ │ ├── bigquery_read_metadata_decorator.h │ │ │ ├── bigquery_read_option_defaults.cc │ │ │ ├── bigquery_read_option_defaults.h │ │ │ ├── bigquery_read_retry_traits.h │ │ │ ├── bigquery_read_sources.cc │ │ │ ├── bigquery_read_streaming.cc │ │ │ ├── bigquery_read_stub.cc │ │ │ ├── bigquery_read_stub.h │ │ │ ├── bigquery_read_stub_factory.cc │ │ │ ├── bigquery_read_stub_factory.h │ │ │ ├── bigquery_read_tracing_connection.cc │ │ │ ├── bigquery_read_tracing_connection.h │ │ │ ├── bigquery_read_tracing_stub.cc │ │ │ ├── bigquery_read_tracing_stub.h │ │ │ ├── bigquery_write_auth_decorator.cc │ │ │ ├── bigquery_write_auth_decorator.h │ │ │ ├── bigquery_write_connection_impl.cc │ │ │ ├── bigquery_write_connection_impl.h │ │ │ ├── bigquery_write_logging_decorator.cc │ │ │ ├── bigquery_write_logging_decorator.h │ │ │ ├── bigquery_write_metadata_decorator.cc │ │ │ ├── bigquery_write_metadata_decorator.h │ │ │ ├── bigquery_write_option_defaults.cc │ │ │ ├── bigquery_write_option_defaults.h │ │ │ ├── bigquery_write_retry_traits.h │ │ │ ├── bigquery_write_sources.cc │ │ │ ├── bigquery_write_stub.cc │ │ │ ├── bigquery_write_stub.h │ │ │ ├── bigquery_write_stub_factory.cc │ │ │ ├── bigquery_write_stub_factory.h │ │ │ ├── bigquery_write_tracing_connection.cc │ │ │ ├── bigquery_write_tracing_connection.h │ │ │ ├── bigquery_write_tracing_stub.cc │ │ │ └── bigquery_write_tracing_stub.h │ │ │ ├── mocks │ │ │ ├── mock_bigquery_read_connection.h │ │ │ └── mock_bigquery_write_connection.h │ │ │ └── samples │ │ │ ├── bigquery_read_client_samples.cc │ │ │ └── bigquery_write_client_samples.cc │ └── v2 │ │ └── minimal │ │ ├── benchmarks │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── benchmark.cc │ │ ├── benchmark.h │ │ ├── benchmark_test.cc │ │ ├── benchmarks_config.cc │ │ ├── benchmarks_config.h │ │ ├── benchmarks_config_test.cc │ │ ├── dataset_benchmark_programs.cc │ │ ├── experimental_bigquery_rest_client_benchmark_programs.bzl │ │ ├── experimental_bigquery_rest_client_benchmark_unit_tests.bzl │ │ ├── experimental_bigquery_rest_client_benchmarks.bzl │ │ ├── job_cancel_benchmark_programs.cc │ │ ├── job_insert_benchmark_programs.cc │ │ ├── job_query_benchmark_programs.cc │ │ ├── job_readonly_benchmark_programs.cc │ │ ├── project_benchmark_programs.cc │ │ └── table_benchmark_programs.cc │ │ ├── internal │ │ ├── bigquery_http_response.cc │ │ ├── bigquery_http_response.h │ │ ├── bigquery_http_response_test.cc │ │ ├── common_options.h │ │ ├── common_v2_resources.cc │ │ ├── common_v2_resources.h │ │ ├── common_v2_resources_test.cc │ │ ├── dataset.cc │ │ ├── dataset.h │ │ ├── dataset_client.cc │ │ ├── dataset_client.h │ │ ├── dataset_client_test.cc │ │ ├── dataset_connection.cc │ │ ├── dataset_connection.h │ │ ├── dataset_connection_test.cc │ │ ├── dataset_idempotency_policy.cc │ │ ├── dataset_idempotency_policy.h │ │ ├── dataset_idempotency_policy_test.cc │ │ ├── dataset_logging.cc │ │ ├── dataset_logging.h │ │ ├── dataset_logging_test.cc │ │ ├── dataset_metadata.cc │ │ ├── dataset_metadata.h │ │ ├── dataset_metadata_test.cc │ │ ├── dataset_options.cc │ │ ├── dataset_options.h │ │ ├── dataset_options_test.cc │ │ ├── dataset_request.cc │ │ ├── dataset_request.h │ │ ├── dataset_request_test.cc │ │ ├── dataset_response.cc │ │ ├── dataset_response.h │ │ ├── dataset_response_test.cc │ │ ├── dataset_rest_connection_impl.cc │ │ ├── dataset_rest_connection_impl.h │ │ ├── dataset_rest_stub.cc │ │ ├── dataset_rest_stub.h │ │ ├── dataset_rest_stub_factory.cc │ │ ├── dataset_rest_stub_factory.h │ │ ├── dataset_rest_stub_test.cc │ │ ├── dataset_retry_policy.h │ │ ├── dataset_test.cc │ │ ├── job.cc │ │ ├── job.h │ │ ├── job_client.cc │ │ ├── job_client.h │ │ ├── job_client_test.cc │ │ ├── job_configuration.cc │ │ ├── job_configuration.h │ │ ├── job_configuration_query.cc │ │ ├── job_configuration_query.h │ │ ├── job_configuration_query_test.cc │ │ ├── job_configuration_test.cc │ │ ├── job_connection.cc │ │ ├── job_connection.h │ │ ├── job_connection_test.cc │ │ ├── job_idempotency_policy.cc │ │ ├── job_idempotency_policy.h │ │ ├── job_idempotency_policy_test.cc │ │ ├── job_logging.cc │ │ ├── job_logging.h │ │ ├── job_logging_test.cc │ │ ├── job_metadata.cc │ │ ├── job_metadata.h │ │ ├── job_metadata_test.cc │ │ ├── job_options.cc │ │ ├── job_options.h │ │ ├── job_options_test.cc │ │ ├── job_query_stats.cc │ │ ├── job_query_stats.h │ │ ├── job_query_stats_test.cc │ │ ├── job_request.cc │ │ ├── job_request.h │ │ ├── job_request_test.cc │ │ ├── job_response.cc │ │ ├── job_response.h │ │ ├── job_response_test.cc │ │ ├── job_rest_connection_impl.cc │ │ ├── job_rest_connection_impl.h │ │ ├── job_rest_stub.cc │ │ ├── job_rest_stub.h │ │ ├── job_rest_stub_factory.cc │ │ ├── job_rest_stub_factory.h │ │ ├── job_rest_stub_test.cc │ │ ├── job_retry_policy.h │ │ ├── job_stats.cc │ │ ├── job_stats.h │ │ ├── job_stats_test.cc │ │ ├── job_test.cc │ │ ├── json_utils.cc │ │ ├── json_utils.h │ │ ├── json_utils_test.cc │ │ ├── log_wrapper.h │ │ ├── project.cc │ │ ├── project.h │ │ ├── project_client.cc │ │ ├── project_client.h │ │ ├── project_client_test.cc │ │ ├── project_connection.cc │ │ ├── project_connection.h │ │ ├── project_connection_test.cc │ │ ├── project_idempotency_policy.cc │ │ ├── project_idempotency_policy.h │ │ ├── project_idempotency_policy_test.cc │ │ ├── project_logging.cc │ │ ├── project_logging.h │ │ ├── project_logging_test.cc │ │ ├── project_metadata.cc │ │ ├── project_metadata.h │ │ ├── project_metadata_test.cc │ │ ├── project_options.cc │ │ ├── project_options.h │ │ ├── project_options_test.cc │ │ ├── project_request.cc │ │ ├── project_request.h │ │ ├── project_request_test.cc │ │ ├── project_response.cc │ │ ├── project_response.h │ │ ├── project_response_test.cc │ │ ├── project_rest_connection_impl.cc │ │ ├── project_rest_connection_impl.h │ │ ├── project_rest_stub.cc │ │ ├── project_rest_stub.h │ │ ├── project_rest_stub_factory.cc │ │ ├── project_rest_stub_factory.h │ │ ├── project_rest_stub_test.cc │ │ ├── project_retry_policy.h │ │ ├── project_test.cc │ │ ├── rest_stub_utils.cc │ │ ├── rest_stub_utils.h │ │ ├── rest_stub_utils_test.cc │ │ ├── table.cc │ │ ├── table.h │ │ ├── table_client.cc │ │ ├── table_client.h │ │ ├── table_client_test.cc │ │ ├── table_connection.cc │ │ ├── table_connection.h │ │ ├── table_connection_test.cc │ │ ├── table_constraints.cc │ │ ├── table_constraints.h │ │ ├── table_idempotency_policy.cc │ │ ├── table_idempotency_policy.h │ │ ├── table_idempotency_policy_test.cc │ │ ├── table_logging.cc │ │ ├── table_logging.h │ │ ├── table_logging_test.cc │ │ ├── table_metadata.cc │ │ ├── table_metadata.h │ │ ├── table_metadata_test.cc │ │ ├── table_options.cc │ │ ├── table_options.h │ │ ├── table_options_test.cc │ │ ├── table_partition.cc │ │ ├── table_partition.h │ │ ├── table_request.cc │ │ ├── table_request.h │ │ ├── table_request_test.cc │ │ ├── table_response.cc │ │ ├── table_response.h │ │ ├── table_response_test.cc │ │ ├── table_rest_connection_impl.cc │ │ ├── table_rest_connection_impl.h │ │ ├── table_rest_stub.cc │ │ ├── table_rest_stub.h │ │ ├── table_rest_stub_factory.cc │ │ ├── table_rest_stub_factory.h │ │ ├── table_rest_stub_test.cc │ │ ├── table_retry_policy.h │ │ ├── table_schema.cc │ │ ├── table_schema.h │ │ ├── table_test.cc │ │ ├── table_view.cc │ │ └── table_view.h │ │ ├── mocks │ │ ├── mock_dataset_connection.h │ │ ├── mock_job_connection.h │ │ ├── mock_project_connection.h │ │ └── mock_table_connection.h │ │ └── testing │ │ ├── common_v2_test_utils.cc │ │ ├── common_v2_test_utils.h │ │ ├── job_query_test_utils.cc │ │ ├── job_query_test_utils.h │ │ ├── job_test_utils.cc │ │ ├── job_test_utils.h │ │ ├── metadata_test_utils.cc │ │ ├── metadata_test_utils.h │ │ ├── mock_dataset_rest_stub.h │ │ ├── mock_job_rest_stub.h │ │ ├── mock_project_rest_stub.h │ │ ├── mock_table_rest_stub.h │ │ ├── project_test_utils.cc │ │ ├── project_test_utils.h │ │ ├── table_test_utils.cc │ │ └── table_test_utils.h │ ├── bigquerycontrol │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── integration_tests │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ └── job_integration_test.cc │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── dataset_client.cc │ │ ├── dataset_client.h │ │ ├── dataset_connection.cc │ │ ├── dataset_connection.h │ │ ├── dataset_connection_idempotency_policy.cc │ │ ├── dataset_connection_idempotency_policy.h │ │ ├── dataset_options.h │ │ ├── dataset_rest_connection.cc │ │ ├── dataset_rest_connection.h │ │ ├── internal │ │ ├── dataset_option_defaults.cc │ │ ├── dataset_option_defaults.h │ │ ├── dataset_rest_connection_impl.cc │ │ ├── dataset_rest_connection_impl.h │ │ ├── dataset_rest_logging_decorator.cc │ │ ├── dataset_rest_logging_decorator.h │ │ ├── dataset_rest_metadata_decorator.cc │ │ ├── dataset_rest_metadata_decorator.h │ │ ├── dataset_rest_stub.cc │ │ ├── dataset_rest_stub.h │ │ ├── dataset_rest_stub_factory.cc │ │ ├── dataset_rest_stub_factory.h │ │ ├── dataset_retry_traits.h │ │ ├── dataset_sources.cc │ │ ├── dataset_tracing_connection.cc │ │ ├── dataset_tracing_connection.h │ │ ├── job_option_defaults.cc │ │ ├── job_option_defaults.h │ │ ├── job_rest_connection_impl.cc │ │ ├── job_rest_connection_impl.h │ │ ├── job_rest_logging_decorator.cc │ │ ├── job_rest_logging_decorator.h │ │ ├── job_rest_metadata_decorator.cc │ │ ├── job_rest_metadata_decorator.h │ │ ├── job_rest_stub.cc │ │ ├── job_rest_stub.h │ │ ├── job_rest_stub_factory.cc │ │ ├── job_rest_stub_factory.h │ │ ├── job_retry_traits.h │ │ ├── job_sources.cc │ │ ├── job_tracing_connection.cc │ │ ├── job_tracing_connection.h │ │ ├── model_option_defaults.cc │ │ ├── model_option_defaults.h │ │ ├── model_rest_connection_impl.cc │ │ ├── model_rest_connection_impl.h │ │ ├── model_rest_logging_decorator.cc │ │ ├── model_rest_logging_decorator.h │ │ ├── model_rest_metadata_decorator.cc │ │ ├── model_rest_metadata_decorator.h │ │ ├── model_rest_stub.cc │ │ ├── model_rest_stub.h │ │ ├── model_rest_stub_factory.cc │ │ ├── model_rest_stub_factory.h │ │ ├── model_retry_traits.h │ │ ├── model_sources.cc │ │ ├── model_tracing_connection.cc │ │ ├── model_tracing_connection.h │ │ ├── project_option_defaults.cc │ │ ├── project_option_defaults.h │ │ ├── project_rest_connection_impl.cc │ │ ├── project_rest_connection_impl.h │ │ ├── project_rest_logging_decorator.cc │ │ ├── project_rest_logging_decorator.h │ │ ├── project_rest_metadata_decorator.cc │ │ ├── project_rest_metadata_decorator.h │ │ ├── project_rest_stub.cc │ │ ├── project_rest_stub.h │ │ ├── project_rest_stub_factory.cc │ │ ├── project_rest_stub_factory.h │ │ ├── project_retry_traits.h │ │ ├── project_sources.cc │ │ ├── project_tracing_connection.cc │ │ ├── project_tracing_connection.h │ │ ├── routine_option_defaults.cc │ │ ├── routine_option_defaults.h │ │ ├── routine_rest_connection_impl.cc │ │ ├── routine_rest_connection_impl.h │ │ ├── routine_rest_logging_decorator.cc │ │ ├── routine_rest_logging_decorator.h │ │ ├── routine_rest_metadata_decorator.cc │ │ ├── routine_rest_metadata_decorator.h │ │ ├── routine_rest_stub.cc │ │ ├── routine_rest_stub.h │ │ ├── routine_rest_stub_factory.cc │ │ ├── routine_rest_stub_factory.h │ │ ├── routine_retry_traits.h │ │ ├── routine_sources.cc │ │ ├── routine_tracing_connection.cc │ │ ├── routine_tracing_connection.h │ │ ├── row_access_policy_option_defaults.cc │ │ ├── row_access_policy_option_defaults.h │ │ ├── row_access_policy_rest_connection_impl.cc │ │ ├── row_access_policy_rest_connection_impl.h │ │ ├── row_access_policy_rest_logging_decorator.cc │ │ ├── row_access_policy_rest_logging_decorator.h │ │ ├── row_access_policy_rest_metadata_decorator.cc │ │ ├── row_access_policy_rest_metadata_decorator.h │ │ ├── row_access_policy_rest_stub.cc │ │ ├── row_access_policy_rest_stub.h │ │ ├── row_access_policy_rest_stub_factory.cc │ │ ├── row_access_policy_rest_stub_factory.h │ │ ├── row_access_policy_retry_traits.h │ │ ├── row_access_policy_sources.cc │ │ ├── row_access_policy_tracing_connection.cc │ │ ├── row_access_policy_tracing_connection.h │ │ ├── table_option_defaults.cc │ │ ├── table_option_defaults.h │ │ ├── table_rest_connection_impl.cc │ │ ├── table_rest_connection_impl.h │ │ ├── table_rest_logging_decorator.cc │ │ ├── table_rest_logging_decorator.h │ │ ├── table_rest_metadata_decorator.cc │ │ ├── table_rest_metadata_decorator.h │ │ ├── table_rest_stub.cc │ │ ├── table_rest_stub.h │ │ ├── table_rest_stub_factory.cc │ │ ├── table_rest_stub_factory.h │ │ ├── table_retry_traits.h │ │ ├── table_sources.cc │ │ ├── table_tracing_connection.cc │ │ └── table_tracing_connection.h │ │ ├── job_client.cc │ │ ├── job_client.h │ │ ├── job_connection.cc │ │ ├── job_connection.h │ │ ├── job_connection_idempotency_policy.cc │ │ ├── job_connection_idempotency_policy.h │ │ ├── job_options.h │ │ ├── job_rest_connection.cc │ │ ├── job_rest_connection.h │ │ ├── mocks │ │ ├── mock_dataset_connection.h │ │ ├── mock_job_connection.h │ │ ├── mock_model_connection.h │ │ ├── mock_project_connection.h │ │ ├── mock_routine_connection.h │ │ ├── mock_row_access_policy_connection.h │ │ └── mock_table_connection.h │ │ ├── model_client.cc │ │ ├── model_client.h │ │ ├── model_connection.cc │ │ ├── model_connection.h │ │ ├── model_connection_idempotency_policy.cc │ │ ├── model_connection_idempotency_policy.h │ │ ├── model_options.h │ │ ├── model_rest_connection.cc │ │ ├── model_rest_connection.h │ │ ├── project_client.cc │ │ ├── project_client.h │ │ ├── project_connection.cc │ │ ├── project_connection.h │ │ ├── project_connection_idempotency_policy.cc │ │ ├── project_connection_idempotency_policy.h │ │ ├── project_options.h │ │ ├── project_rest_connection.cc │ │ ├── project_rest_connection.h │ │ ├── routine_client.cc │ │ ├── routine_client.h │ │ ├── routine_connection.cc │ │ ├── routine_connection.h │ │ ├── routine_connection_idempotency_policy.cc │ │ ├── routine_connection_idempotency_policy.h │ │ ├── routine_options.h │ │ ├── routine_rest_connection.cc │ │ ├── routine_rest_connection.h │ │ ├── row_access_policy_client.cc │ │ ├── row_access_policy_client.h │ │ ├── row_access_policy_connection.cc │ │ ├── row_access_policy_connection.h │ │ ├── row_access_policy_connection_idempotency_policy.cc │ │ ├── row_access_policy_connection_idempotency_policy.h │ │ ├── row_access_policy_options.h │ │ ├── row_access_policy_rest_connection.cc │ │ ├── row_access_policy_rest_connection.h │ │ ├── samples │ │ ├── dataset_client_samples.cc │ │ ├── job_client_samples.cc │ │ ├── job_query_samples.cc │ │ ├── model_client_samples.cc │ │ ├── project_client_samples.cc │ │ ├── routine_client_samples.cc │ │ ├── row_access_policy_client_samples.cc │ │ └── table_client_samples.cc │ │ ├── table_client.cc │ │ ├── table_client.h │ │ ├── table_connection.cc │ │ ├── table_connection.h │ │ ├── table_connection_idempotency_policy.cc │ │ ├── table_connection_idempotency_policy.h │ │ ├── table_options.h │ │ ├── table_rest_connection.cc │ │ └── table_rest_connection.h │ ├── bigtable │ ├── .clang-tidy │ ├── .repo-metadata.json │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── admin │ │ ├── bigtable_instance_admin_client.cc │ │ ├── bigtable_instance_admin_client.h │ │ ├── bigtable_instance_admin_connection.cc │ │ ├── bigtable_instance_admin_connection.h │ │ ├── bigtable_instance_admin_connection_idempotency_policy.cc │ │ ├── bigtable_instance_admin_connection_idempotency_policy.h │ │ ├── bigtable_instance_admin_options.h │ │ ├── bigtable_table_admin_client.cc │ │ ├── bigtable_table_admin_client.h │ │ ├── bigtable_table_admin_connection.cc │ │ ├── bigtable_table_admin_connection.h │ │ ├── bigtable_table_admin_connection_idempotency_policy.cc │ │ ├── bigtable_table_admin_connection_idempotency_policy.h │ │ ├── bigtable_table_admin_options.h │ │ ├── internal │ │ │ ├── bigtable_instance_admin_auth_decorator.cc │ │ │ ├── bigtable_instance_admin_auth_decorator.h │ │ │ ├── bigtable_instance_admin_connection_impl.cc │ │ │ ├── bigtable_instance_admin_connection_impl.h │ │ │ ├── bigtable_instance_admin_logging_decorator.cc │ │ │ ├── bigtable_instance_admin_logging_decorator.h │ │ │ ├── bigtable_instance_admin_metadata_decorator.cc │ │ │ ├── bigtable_instance_admin_metadata_decorator.h │ │ │ ├── bigtable_instance_admin_option_defaults.cc │ │ │ ├── bigtable_instance_admin_option_defaults.h │ │ │ ├── bigtable_instance_admin_retry_traits.h │ │ │ ├── bigtable_instance_admin_sources.cc │ │ │ ├── bigtable_instance_admin_stub.cc │ │ │ ├── bigtable_instance_admin_stub.h │ │ │ ├── bigtable_instance_admin_stub_factory.cc │ │ │ ├── bigtable_instance_admin_stub_factory.h │ │ │ ├── bigtable_instance_admin_tracing_connection.cc │ │ │ ├── bigtable_instance_admin_tracing_connection.h │ │ │ ├── bigtable_instance_admin_tracing_stub.cc │ │ │ ├── bigtable_instance_admin_tracing_stub.h │ │ │ ├── bigtable_table_admin_auth_decorator.cc │ │ │ ├── bigtable_table_admin_auth_decorator.h │ │ │ ├── bigtable_table_admin_connection_impl.cc │ │ │ ├── bigtable_table_admin_connection_impl.h │ │ │ ├── bigtable_table_admin_logging_decorator.cc │ │ │ ├── bigtable_table_admin_logging_decorator.h │ │ │ ├── bigtable_table_admin_metadata_decorator.cc │ │ │ ├── bigtable_table_admin_metadata_decorator.h │ │ │ ├── bigtable_table_admin_option_defaults.cc │ │ │ ├── bigtable_table_admin_option_defaults.h │ │ │ ├── bigtable_table_admin_retry_traits.h │ │ │ ├── bigtable_table_admin_sources.cc │ │ │ ├── bigtable_table_admin_stub.cc │ │ │ ├── bigtable_table_admin_stub.h │ │ │ ├── bigtable_table_admin_stub_factory.cc │ │ │ ├── bigtable_table_admin_stub_factory.h │ │ │ ├── bigtable_table_admin_tracing_connection.cc │ │ │ ├── bigtable_table_admin_tracing_connection.h │ │ │ ├── bigtable_table_admin_tracing_stub.cc │ │ │ └── bigtable_table_admin_tracing_stub.h │ │ ├── mocks │ │ │ ├── mock_bigtable_instance_admin_connection.h │ │ │ └── mock_bigtable_table_admin_connection.h │ │ └── samples │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── bigtable_instance_admin_client_samples.cc │ │ │ └── bigtable_table_admin_client_samples.cc │ ├── admin_client.cc │ ├── admin_client.h │ ├── admin_client_test.cc │ ├── app_profile_config.cc │ ├── app_profile_config.h │ ├── app_profile_config_test.cc │ ├── async_read_stream_test.cc │ ├── async_row_reader.h │ ├── benchmarks │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── apply_read_latency_benchmark.cc │ │ ├── benchmark.cc │ │ ├── benchmark.h │ │ ├── benchmark_options.cc │ │ ├── benchmark_options.h │ │ ├── benchmark_options_test.cc │ │ ├── bigtable_benchmark_common.bzl │ │ ├── bigtable_benchmark_programs.bzl │ │ ├── bigtable_benchmark_test.cc │ │ ├── bigtable_benchmarks_unit_tests.bzl │ │ ├── constants.h │ │ ├── embedded_server.cc │ │ ├── embedded_server.h │ │ ├── embedded_server_test.cc │ │ ├── endurance_benchmark.cc │ │ ├── format_duration_test.cc │ │ ├── mutation_batcher_throughput_benchmark.cc │ │ ├── mutation_batcher_throughput_options.cc │ │ ├── mutation_batcher_throughput_options.h │ │ ├── mutation_batcher_throughput_options_test.cc │ │ ├── random_mutation.cc │ │ ├── random_mutation.h │ │ ├── random_mutation_test.cc │ │ ├── read_sync_vs_async_benchmark.cc │ │ ├── scan_async_throughput_benchmark.cc │ │ └── scan_throughput_benchmark.cc │ ├── bigtable_client_testing.bzl │ ├── bigtable_client_unit_tests.bzl │ ├── bigtable_version_test.cc │ ├── bound_query.cc │ ├── bound_query.h │ ├── bound_query_test.cc │ ├── bytes.cc │ ├── bytes.h │ ├── bytes_test.cc │ ├── cell.h │ ├── cell_test.cc │ ├── ci │ │ ├── run_conformance_tests_proxy_bazel.sh │ │ ├── run_integration_tests_emulator_bazel.sh │ │ └── run_integration_tests_emulator_cmake.sh │ ├── client.cc │ ├── client.h │ ├── client_options.cc │ ├── client_options.h │ ├── client_options_test.cc │ ├── client_test.cc │ ├── cluster_config.cc │ ├── cluster_config.h │ ├── cluster_config_test.cc │ ├── cluster_list_responses.h │ ├── column_family.h │ ├── column_family_test.cc │ ├── completion_queue.h │ ├── config.cmake.in │ ├── data_client.cc │ ├── data_client.h │ ├── data_client_test.cc │ ├── data_connection.cc │ ├── data_connection.h │ ├── data_connection_test.cc │ ├── doc │ │ ├── bigtable-hello-instance-admin.dox │ │ ├── bigtable-hello-table-admin.dox │ │ ├── bigtable-hello-world.dox │ │ ├── bigtable-main.dox │ │ ├── bigtable-mocking.dox │ │ ├── bigtable-options.dox │ │ ├── bigtable-samples-data-client.dox │ │ ├── bigtable-samples-grpc-credentials.dox │ │ ├── environment-variables.dox │ │ ├── error-handling.dox │ │ ├── migrating-from-dataclient.dox │ │ └── override-retry-policies.dox │ ├── examples │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── bigtable_examples.bzl │ │ ├── bigtable_examples_common.bzl │ │ ├── bigtable_examples_common.cc │ │ ├── bigtable_examples_common.h │ │ ├── bigtable_examples_common_test.cc │ │ ├── bigtable_examples_unit_tests.bzl │ │ ├── bigtable_grpc_credentials.cc │ │ ├── bigtable_hello_app_profile.cc │ │ ├── bigtable_hello_instance_admin.cc │ │ ├── bigtable_hello_table_admin.cc │ │ ├── bigtable_hello_world.cc │ │ ├── bigtable_instance_admin_snippets.cc │ │ ├── bigtable_table_admin_backup_snippets.cc │ │ ├── client_samples.cc │ │ ├── data_async_snippets.cc │ │ ├── data_filter_snippets.cc │ │ ├── data_snippets.cc │ │ ├── howto_mock_data_api.cc │ │ ├── read_snippets.cc │ │ ├── table_admin_iam_policy_snippets.cc │ │ └── table_admin_snippets.cc │ ├── expr.cc │ ├── expr.h │ ├── expr_test.cc │ ├── filters.h │ ├── filters_test.cc │ ├── force_sanitizer_failures_test.cc │ ├── google_cloud_cpp_bigtable.bzl │ ├── google_cloud_cpp_bigtable_mocks.bzl │ ├── iam_binding.cc │ ├── iam_binding.h │ ├── iam_binding_test.cc │ ├── iam_policy.cc │ ├── iam_policy.h │ ├── iam_policy_test.cc │ ├── idempotent_mutation_policy.cc │ ├── idempotent_mutation_policy.h │ ├── idempotent_mutation_policy_test.cc │ ├── instance_admin.cc │ ├── instance_admin.h │ ├── instance_admin_client.cc │ ├── instance_admin_client.h │ ├── instance_admin_client_test.cc │ ├── instance_admin_test.cc │ ├── instance_config.cc │ ├── instance_config.h │ ├── instance_config_test.cc │ ├── instance_list_responses.h │ ├── instance_resource.cc │ ├── instance_resource.h │ ├── instance_resource_test.cc │ ├── instance_update_config.cc │ ├── instance_update_config.h │ ├── instance_update_config_test.cc │ ├── internal │ │ ├── README.md │ │ ├── admin_client_params.cc │ │ ├── admin_client_params.h │ │ ├── admin_client_params_test.cc │ │ ├── async_bulk_apply.cc │ │ ├── async_bulk_apply.h │ │ ├── async_bulk_apply_test.cc │ │ ├── async_retry_op.h │ │ ├── async_row_reader.cc │ │ ├── async_row_reader.h │ │ ├── async_row_reader_test.cc │ │ ├── async_row_sampler.cc │ │ ├── async_row_sampler.h │ │ ├── async_row_sampler_test.cc │ │ ├── async_streaming_read.h │ │ ├── async_streaming_read_test.cc │ │ ├── bigtable_auth_decorator.cc │ │ ├── bigtable_auth_decorator.h │ │ ├── bigtable_channel_refresh.cc │ │ ├── bigtable_channel_refresh.h │ │ ├── bigtable_channel_refresh_test.cc │ │ ├── bigtable_logging_decorator.cc │ │ ├── bigtable_logging_decorator.h │ │ ├── bigtable_metadata_decorator.cc │ │ ├── bigtable_metadata_decorator.h │ │ ├── bigtable_round_robin_decorator.cc │ │ ├── bigtable_round_robin_decorator.h │ │ ├── bigtable_stub.cc │ │ ├── bigtable_stub.h │ │ ├── bigtable_stub_factory.cc │ │ ├── bigtable_stub_factory.h │ │ ├── bigtable_stub_factory_test.cc │ │ ├── bigtable_tracing_stub.cc │ │ ├── bigtable_tracing_stub.h │ │ ├── bulk_mutator.cc │ │ ├── bulk_mutator.h │ │ ├── bulk_mutator_test.cc │ │ ├── client_options_defaults.h │ │ ├── common_client.h │ │ ├── connection_refresh_state.cc │ │ ├── connection_refresh_state.h │ │ ├── connection_refresh_state_test.cc │ │ ├── const_buffer.cc │ │ ├── const_buffer.h │ │ ├── convert_policies.cc │ │ ├── convert_policies.h │ │ ├── convert_policies_test.cc │ │ ├── crc32c.cc │ │ ├── crc32c.h │ │ ├── crc32c_test.cc │ │ ├── data_connection_impl.cc │ │ ├── data_connection_impl.h │ │ ├── data_connection_impl_test.cc │ │ ├── data_tracing_connection.cc │ │ ├── data_tracing_connection.h │ │ ├── data_tracing_connection_test.cc │ │ ├── default_row_reader.cc │ │ ├── default_row_reader.h │ │ ├── default_row_reader_test.cc │ │ ├── defaults.cc │ │ ├── defaults.h │ │ ├── defaults_test.cc │ │ ├── google_bytes_traits.cc │ │ ├── google_bytes_traits.h │ │ ├── google_bytes_traits_test.cc │ │ ├── legacy_async_bulk_apply.cc │ │ ├── legacy_async_bulk_apply.h │ │ ├── legacy_async_bulk_apply_test.cc │ │ ├── legacy_async_row_reader.cc │ │ ├── legacy_async_row_reader.h │ │ ├── legacy_async_row_reader_test.cc │ │ ├── legacy_async_row_sampler.cc │ │ ├── legacy_async_row_sampler.h │ │ ├── legacy_async_row_sampler_test.cc │ │ ├── legacy_bulk_mutator_test.cc │ │ ├── legacy_row_reader.cc │ │ ├── legacy_row_reader.h │ │ ├── legacy_row_reader_test.cc │ │ ├── logging_data_client.cc │ │ ├── logging_data_client.h │ │ ├── logging_data_client_test.cc │ │ ├── logging_result_set_reader.cc │ │ ├── logging_result_set_reader.h │ │ ├── logging_result_set_reader_test.cc │ │ ├── metrics.cc │ │ ├── metrics.h │ │ ├── metrics_test.cc │ │ ├── mutate_rows_limiter.cc │ │ ├── mutate_rows_limiter.h │ │ ├── mutate_rows_limiter_test.cc │ │ ├── operation_context.cc │ │ ├── operation_context.h │ │ ├── operation_context_factory.cc │ │ ├── operation_context_factory.h │ │ ├── operation_context_factory_test.cc │ │ ├── operation_context_test.cc │ │ ├── partial_result_set_reader.h │ │ ├── partial_result_set_resume.cc │ │ ├── partial_result_set_resume.h │ │ ├── partial_result_set_resume_test.cc │ │ ├── partial_result_set_source.cc │ │ ├── partial_result_set_source.h │ │ ├── partial_result_set_source_test.cc │ │ ├── prefix_range_end.cc │ │ ├── prefix_range_end.h │ │ ├── prefix_range_end_test.cc │ │ ├── query_plan.cc │ │ ├── query_plan.h │ │ ├── query_plan_test.cc │ │ ├── rate_limiter.cc │ │ ├── rate_limiter.h │ │ ├── rate_limiter_test.cc │ │ ├── readrowsparser.cc │ │ ├── readrowsparser.h │ │ ├── readrowsparser_acceptance_tests.inc │ │ ├── readrowsparser_test.cc │ │ ├── retry_traits.cc │ │ ├── retry_traits.h │ │ ├── retry_traits_test.cc │ │ ├── row_reader_impl.h │ │ ├── rpc_policy_parameters.h │ │ ├── rpc_policy_parameters.inc │ │ ├── traced_row_reader.cc │ │ ├── traced_row_reader.h │ │ ├── traced_row_reader_test.cc │ │ ├── tuple_utils.h │ │ ├── tuple_utils_test.cc │ │ └── unary_client_utils.h │ ├── legacy_table_test.cc │ ├── metadata_update_policy.cc │ ├── metadata_update_policy.h │ ├── metadata_update_policy_test.cc │ ├── mocks │ │ ├── mock_data_connection.h │ │ ├── mock_query_row.h │ │ ├── mock_row_reader.cc │ │ ├── mock_row_reader.h │ │ └── mock_row_reader_test.cc │ ├── mutation_batcher.cc │ ├── mutation_batcher.h │ ├── mutation_batcher_test.cc │ ├── mutation_branch.h │ ├── mutations.cc │ ├── mutations.h │ ├── mutations_test.cc │ ├── options.h │ ├── polling_policy.cc │ ├── polling_policy.h │ ├── polling_policy_test.cc │ ├── prepared_query.cc │ ├── prepared_query.h │ ├── prepared_query_test.cc │ ├── query_row.cc │ ├── query_row.h │ ├── query_row_test.cc │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── read_modify_write_rule.h │ ├── read_modify_write_rule_test.cc │ ├── resource_names.cc │ ├── resource_names.h │ ├── result_source_interface.h │ ├── retry_policy.h │ ├── row.h │ ├── row_key.h │ ├── row_key_sample.h │ ├── row_range.cc │ ├── row_range.h │ ├── row_range_test.cc │ ├── row_reader.cc │ ├── row_reader.h │ ├── row_reader_test.cc │ ├── row_set.cc │ ├── row_set.h │ ├── row_set_test.cc │ ├── row_stream.cc │ ├── row_stream.h │ ├── row_stream_test.cc │ ├── row_test.cc │ ├── rpc_backoff_policy.cc │ ├── rpc_backoff_policy.h │ ├── rpc_backoff_policy_test.cc │ ├── rpc_retry_policy.cc │ ├── rpc_retry_policy.h │ ├── rpc_retry_policy_test.cc │ ├── sql_statement.cc │ ├── sql_statement.h │ ├── sql_statement_test.cc │ ├── table.cc │ ├── table.h │ ├── table_admin.cc │ ├── table_admin.h │ ├── table_admin_test.cc │ ├── table_apply_test.cc │ ├── table_bulk_apply_test.cc │ ├── table_check_and_mutate_row_test.cc │ ├── table_config.cc │ ├── table_config.h │ ├── table_config_test.cc │ ├── table_readmodifywriterow_test.cc │ ├── table_readrow_test.cc │ ├── table_readrows_test.cc │ ├── table_resource.cc │ ├── table_resource.h │ ├── table_resource_test.cc │ ├── table_sample_row_keys_test.cc │ ├── table_test.cc │ ├── test_proxy │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cbt_test_proxy.cc │ │ ├── cbt_test_proxy.h │ │ └── cbt_test_proxy_main.cc │ ├── testing │ │ ├── README.md │ │ ├── cleanup_stale_resources.cc │ │ ├── cleanup_stale_resources.h │ │ ├── cleanup_stale_resources_test.cc │ │ ├── embedded_server_test_fixture.cc │ │ ├── embedded_server_test_fixture.h │ │ ├── inprocess_data_client.cc │ │ ├── inprocess_data_client.h │ │ ├── mock_async_failing_rpc_factory.h │ │ ├── mock_bigtable_stub.h │ │ ├── mock_data_client.h │ │ ├── mock_mutate_rows_limiter.h │ │ ├── mock_mutate_rows_reader.h │ │ ├── mock_partial_result_set_reader.h │ │ ├── mock_policies.h │ │ ├── mock_read_rows_reader.h │ │ ├── mock_response_reader.h │ │ ├── mock_sample_row_keys_reader.h │ │ ├── random_names.cc │ │ ├── random_names.h │ │ ├── random_names_test.cc │ │ ├── table_integration_test.cc │ │ ├── table_integration_test.h │ │ ├── table_test_fixture.cc │ │ └── table_test_fixture.h │ ├── tests │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── admin_backup_integration_test.cc │ │ ├── admin_iam_policy_integration_test.cc │ │ ├── admin_integration_test.cc │ │ ├── bigtable_client_integration_tests.bzl │ │ ├── data_async_future_integration_test.cc │ │ ├── data_integration_test.cc │ │ ├── filters_integration_test.cc │ │ ├── instance_admin_emulator.cc │ │ ├── instance_admin_integration_test.cc │ │ ├── mutations_integration_test.cc │ │ └── table_sample_rows_integration_test.cc │ ├── timestamp.cc │ ├── timestamp.h │ ├── timestamp_test.cc │ ├── tools │ │ ├── convert_acceptance_tests.py │ │ └── run_emulator_utils.sh │ ├── value.cc │ ├── value.h │ ├── value_test.cc │ ├── version.cc │ ├── version.h │ ├── version_info.h │ ├── wait_for_consistency.cc │ ├── wait_for_consistency.h │ └── wait_for_consistency_test.cc │ ├── billing │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── budget_client.h │ ├── budget_connection.h │ ├── budget_connection_idempotency_policy.h │ ├── budget_options.h │ ├── budgets │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── budget_client.cc │ │ │ ├── budget_client.h │ │ │ ├── budget_connection.cc │ │ │ ├── budget_connection.h │ │ │ ├── budget_connection_idempotency_policy.cc │ │ │ ├── budget_connection_idempotency_policy.h │ │ │ ├── budget_options.h │ │ │ ├── internal │ │ │ ├── budget_auth_decorator.cc │ │ │ ├── budget_auth_decorator.h │ │ │ ├── budget_connection_impl.cc │ │ │ ├── budget_connection_impl.h │ │ │ ├── budget_logging_decorator.cc │ │ │ ├── budget_logging_decorator.h │ │ │ ├── budget_metadata_decorator.cc │ │ │ ├── budget_metadata_decorator.h │ │ │ ├── budget_option_defaults.cc │ │ │ ├── budget_option_defaults.h │ │ │ ├── budget_retry_traits.h │ │ │ ├── budget_sources.cc │ │ │ ├── budget_stub.cc │ │ │ ├── budget_stub.h │ │ │ ├── budget_stub_factory.cc │ │ │ ├── budget_stub_factory.h │ │ │ ├── budget_tracing_connection.cc │ │ │ ├── budget_tracing_connection.h │ │ │ ├── budget_tracing_stub.cc │ │ │ └── budget_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_budget_connection.h │ │ │ └── samples │ │ │ └── budget_client_samples.cc │ ├── cloud_billing_client.h │ ├── cloud_billing_connection.h │ ├── cloud_billing_connection_idempotency_policy.h │ ├── cloud_billing_options.h │ ├── cloud_catalog_client.h │ ├── cloud_catalog_connection.h │ ├── cloud_catalog_connection_idempotency_policy.h │ ├── cloud_catalog_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ ├── mock_budget_connection.h │ │ ├── mock_cloud_billing_connection.h │ │ └── mock_cloud_catalog_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_billing_client.cc │ │ ├── cloud_billing_client.h │ │ ├── cloud_billing_connection.cc │ │ ├── cloud_billing_connection.h │ │ ├── cloud_billing_connection_idempotency_policy.cc │ │ ├── cloud_billing_connection_idempotency_policy.h │ │ ├── cloud_billing_options.h │ │ ├── cloud_catalog_client.cc │ │ ├── cloud_catalog_client.h │ │ ├── cloud_catalog_connection.cc │ │ ├── cloud_catalog_connection.h │ │ ├── cloud_catalog_connection_idempotency_policy.cc │ │ ├── cloud_catalog_connection_idempotency_policy.h │ │ ├── cloud_catalog_options.h │ │ ├── internal │ │ ├── cloud_billing_auth_decorator.cc │ │ ├── cloud_billing_auth_decorator.h │ │ ├── cloud_billing_connection_impl.cc │ │ ├── cloud_billing_connection_impl.h │ │ ├── cloud_billing_logging_decorator.cc │ │ ├── cloud_billing_logging_decorator.h │ │ ├── cloud_billing_metadata_decorator.cc │ │ ├── cloud_billing_metadata_decorator.h │ │ ├── cloud_billing_option_defaults.cc │ │ ├── cloud_billing_option_defaults.h │ │ ├── cloud_billing_retry_traits.h │ │ ├── cloud_billing_sources.cc │ │ ├── cloud_billing_stub.cc │ │ ├── cloud_billing_stub.h │ │ ├── cloud_billing_stub_factory.cc │ │ ├── cloud_billing_stub_factory.h │ │ ├── cloud_billing_tracing_connection.cc │ │ ├── cloud_billing_tracing_connection.h │ │ ├── cloud_billing_tracing_stub.cc │ │ ├── cloud_billing_tracing_stub.h │ │ ├── cloud_catalog_auth_decorator.cc │ │ ├── cloud_catalog_auth_decorator.h │ │ ├── cloud_catalog_connection_impl.cc │ │ ├── cloud_catalog_connection_impl.h │ │ ├── cloud_catalog_logging_decorator.cc │ │ ├── cloud_catalog_logging_decorator.h │ │ ├── cloud_catalog_metadata_decorator.cc │ │ ├── cloud_catalog_metadata_decorator.h │ │ ├── cloud_catalog_option_defaults.cc │ │ ├── cloud_catalog_option_defaults.h │ │ ├── cloud_catalog_retry_traits.h │ │ ├── cloud_catalog_sources.cc │ │ ├── cloud_catalog_stub.cc │ │ ├── cloud_catalog_stub.h │ │ ├── cloud_catalog_stub_factory.cc │ │ ├── cloud_catalog_stub_factory.h │ │ ├── cloud_catalog_tracing_connection.cc │ │ ├── cloud_catalog_tracing_connection.h │ │ ├── cloud_catalog_tracing_stub.cc │ │ └── cloud_catalog_tracing_stub.h │ │ ├── mocks │ │ ├── mock_cloud_billing_connection.h │ │ └── mock_cloud_catalog_connection.h │ │ └── samples │ │ ├── cloud_billing_client_samples.cc │ │ └── cloud_catalog_client_samples.cc │ ├── binaryauthorization │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── binauthz_management_service_v1_client.h │ ├── binauthz_management_service_v1_connection.h │ ├── binauthz_management_service_v1_connection_idempotency_policy.h │ ├── binauthz_management_service_v1_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ ├── mock_binauthz_management_service_v1_connection.h │ │ ├── mock_system_policy_v1_connection.h │ │ └── mock_validation_helper_v1_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── system_policy_v1_client.h │ ├── system_policy_v1_connection.h │ ├── system_policy_v1_connection_idempotency_policy.h │ ├── system_policy_v1_options.h │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── binauthz_management_service_v1_client.cc │ │ ├── binauthz_management_service_v1_client.h │ │ ├── binauthz_management_service_v1_connection.cc │ │ ├── binauthz_management_service_v1_connection.h │ │ ├── binauthz_management_service_v1_connection_idempotency_policy.cc │ │ ├── binauthz_management_service_v1_connection_idempotency_policy.h │ │ ├── binauthz_management_service_v1_options.h │ │ ├── internal │ │ │ ├── binauthz_management_service_v1_auth_decorator.cc │ │ │ ├── binauthz_management_service_v1_auth_decorator.h │ │ │ ├── binauthz_management_service_v1_connection_impl.cc │ │ │ ├── binauthz_management_service_v1_connection_impl.h │ │ │ ├── binauthz_management_service_v1_logging_decorator.cc │ │ │ ├── binauthz_management_service_v1_logging_decorator.h │ │ │ ├── binauthz_management_service_v1_metadata_decorator.cc │ │ │ ├── binauthz_management_service_v1_metadata_decorator.h │ │ │ ├── binauthz_management_service_v1_option_defaults.cc │ │ │ ├── binauthz_management_service_v1_option_defaults.h │ │ │ ├── binauthz_management_service_v1_retry_traits.h │ │ │ ├── binauthz_management_service_v1_sources.cc │ │ │ ├── binauthz_management_service_v1_stub.cc │ │ │ ├── binauthz_management_service_v1_stub.h │ │ │ ├── binauthz_management_service_v1_stub_factory.cc │ │ │ ├── binauthz_management_service_v1_stub_factory.h │ │ │ ├── binauthz_management_service_v1_tracing_connection.cc │ │ │ ├── binauthz_management_service_v1_tracing_connection.h │ │ │ ├── binauthz_management_service_v1_tracing_stub.cc │ │ │ ├── binauthz_management_service_v1_tracing_stub.h │ │ │ ├── system_policy_v1_auth_decorator.cc │ │ │ ├── system_policy_v1_auth_decorator.h │ │ │ ├── system_policy_v1_connection_impl.cc │ │ │ ├── system_policy_v1_connection_impl.h │ │ │ ├── system_policy_v1_logging_decorator.cc │ │ │ ├── system_policy_v1_logging_decorator.h │ │ │ ├── system_policy_v1_metadata_decorator.cc │ │ │ ├── system_policy_v1_metadata_decorator.h │ │ │ ├── system_policy_v1_option_defaults.cc │ │ │ ├── system_policy_v1_option_defaults.h │ │ │ ├── system_policy_v1_retry_traits.h │ │ │ ├── system_policy_v1_sources.cc │ │ │ ├── system_policy_v1_stub.cc │ │ │ ├── system_policy_v1_stub.h │ │ │ ├── system_policy_v1_stub_factory.cc │ │ │ ├── system_policy_v1_stub_factory.h │ │ │ ├── system_policy_v1_tracing_connection.cc │ │ │ ├── system_policy_v1_tracing_connection.h │ │ │ ├── system_policy_v1_tracing_stub.cc │ │ │ ├── system_policy_v1_tracing_stub.h │ │ │ ├── validation_helper_v1_auth_decorator.cc │ │ │ ├── validation_helper_v1_auth_decorator.h │ │ │ ├── validation_helper_v1_connection_impl.cc │ │ │ ├── validation_helper_v1_connection_impl.h │ │ │ ├── validation_helper_v1_logging_decorator.cc │ │ │ ├── validation_helper_v1_logging_decorator.h │ │ │ ├── validation_helper_v1_metadata_decorator.cc │ │ │ ├── validation_helper_v1_metadata_decorator.h │ │ │ ├── validation_helper_v1_option_defaults.cc │ │ │ ├── validation_helper_v1_option_defaults.h │ │ │ ├── validation_helper_v1_retry_traits.h │ │ │ ├── validation_helper_v1_sources.cc │ │ │ ├── validation_helper_v1_stub.cc │ │ │ ├── validation_helper_v1_stub.h │ │ │ ├── validation_helper_v1_stub_factory.cc │ │ │ ├── validation_helper_v1_stub_factory.h │ │ │ ├── validation_helper_v1_tracing_connection.cc │ │ │ ├── validation_helper_v1_tracing_connection.h │ │ │ ├── validation_helper_v1_tracing_stub.cc │ │ │ └── validation_helper_v1_tracing_stub.h │ │ ├── mocks │ │ │ ├── mock_binauthz_management_service_v1_connection.h │ │ │ ├── mock_system_policy_v1_connection.h │ │ │ └── mock_validation_helper_v1_connection.h │ │ ├── samples │ │ │ ├── binauthz_management_service_v1_client_samples.cc │ │ │ ├── system_policy_v1_client_samples.cc │ │ │ └── validation_helper_v1_client_samples.cc │ │ ├── system_policy_v1_client.cc │ │ ├── system_policy_v1_client.h │ │ ├── system_policy_v1_connection.cc │ │ ├── system_policy_v1_connection.h │ │ ├── system_policy_v1_connection_idempotency_policy.cc │ │ ├── system_policy_v1_connection_idempotency_policy.h │ │ ├── system_policy_v1_options.h │ │ ├── validation_helper_v1_client.cc │ │ ├── validation_helper_v1_client.h │ │ ├── validation_helper_v1_connection.cc │ │ ├── validation_helper_v1_connection.h │ │ ├── validation_helper_v1_connection_idempotency_policy.cc │ │ ├── validation_helper_v1_connection_idempotency_policy.h │ │ └── validation_helper_v1_options.h │ ├── validation_helper_v1_client.h │ ├── validation_helper_v1_connection.h │ ├── validation_helper_v1_connection_idempotency_policy.h │ └── validation_helper_v1_options.h │ ├── capture_build_info.bzl │ ├── certificatemanager │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── certificate_manager_client.h │ ├── certificate_manager_connection.h │ ├── certificate_manager_connection_idempotency_policy.h │ ├── certificate_manager_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_certificate_manager_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── certificate_manager_client.cc │ │ ├── certificate_manager_client.h │ │ ├── certificate_manager_connection.cc │ │ ├── certificate_manager_connection.h │ │ ├── certificate_manager_connection_idempotency_policy.cc │ │ ├── certificate_manager_connection_idempotency_policy.h │ │ ├── certificate_manager_options.h │ │ ├── internal │ │ ├── certificate_manager_auth_decorator.cc │ │ ├── certificate_manager_auth_decorator.h │ │ ├── certificate_manager_connection_impl.cc │ │ ├── certificate_manager_connection_impl.h │ │ ├── certificate_manager_logging_decorator.cc │ │ ├── certificate_manager_logging_decorator.h │ │ ├── certificate_manager_metadata_decorator.cc │ │ ├── certificate_manager_metadata_decorator.h │ │ ├── certificate_manager_option_defaults.cc │ │ ├── certificate_manager_option_defaults.h │ │ ├── certificate_manager_retry_traits.h │ │ ├── certificate_manager_sources.cc │ │ ├── certificate_manager_stub.cc │ │ ├── certificate_manager_stub.h │ │ ├── certificate_manager_stub_factory.cc │ │ ├── certificate_manager_stub_factory.h │ │ ├── certificate_manager_tracing_connection.cc │ │ ├── certificate_manager_tracing_connection.h │ │ ├── certificate_manager_tracing_stub.cc │ │ └── certificate_manager_tracing_stub.h │ │ ├── mocks │ │ └── mock_certificate_manager_connection.h │ │ └── samples │ │ └── certificate_manager_client_samples.cc │ ├── channel │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── cloud_channel_client.h │ ├── cloud_channel_connection.h │ ├── cloud_channel_connection_idempotency_policy.h │ ├── cloud_channel_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_cloud_channel_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_channel_client.cc │ │ ├── cloud_channel_client.h │ │ ├── cloud_channel_connection.cc │ │ ├── cloud_channel_connection.h │ │ ├── cloud_channel_connection_idempotency_policy.cc │ │ ├── cloud_channel_connection_idempotency_policy.h │ │ ├── cloud_channel_options.h │ │ ├── cloud_channel_reports_client.cc │ │ ├── cloud_channel_reports_client.h │ │ ├── cloud_channel_reports_connection.cc │ │ ├── cloud_channel_reports_connection.h │ │ ├── cloud_channel_reports_connection_idempotency_policy.cc │ │ ├── cloud_channel_reports_connection_idempotency_policy.h │ │ ├── cloud_channel_reports_options.h │ │ ├── internal │ │ ├── cloud_channel_auth_decorator.cc │ │ ├── cloud_channel_auth_decorator.h │ │ ├── cloud_channel_connection_impl.cc │ │ ├── cloud_channel_connection_impl.h │ │ ├── cloud_channel_logging_decorator.cc │ │ ├── cloud_channel_logging_decorator.h │ │ ├── cloud_channel_metadata_decorator.cc │ │ ├── cloud_channel_metadata_decorator.h │ │ ├── cloud_channel_option_defaults.cc │ │ ├── cloud_channel_option_defaults.h │ │ ├── cloud_channel_reports_auth_decorator.cc │ │ ├── cloud_channel_reports_auth_decorator.h │ │ ├── cloud_channel_reports_connection_impl.cc │ │ ├── cloud_channel_reports_connection_impl.h │ │ ├── cloud_channel_reports_logging_decorator.cc │ │ ├── cloud_channel_reports_logging_decorator.h │ │ ├── cloud_channel_reports_metadata_decorator.cc │ │ ├── cloud_channel_reports_metadata_decorator.h │ │ ├── cloud_channel_reports_option_defaults.cc │ │ ├── cloud_channel_reports_option_defaults.h │ │ ├── cloud_channel_reports_retry_traits.h │ │ ├── cloud_channel_reports_sources.cc │ │ ├── cloud_channel_reports_stub.cc │ │ ├── cloud_channel_reports_stub.h │ │ ├── cloud_channel_reports_stub_factory.cc │ │ ├── cloud_channel_reports_stub_factory.h │ │ ├── cloud_channel_reports_tracing_connection.cc │ │ ├── cloud_channel_reports_tracing_connection.h │ │ ├── cloud_channel_reports_tracing_stub.cc │ │ ├── cloud_channel_reports_tracing_stub.h │ │ ├── cloud_channel_retry_traits.h │ │ ├── cloud_channel_sources.cc │ │ ├── cloud_channel_stub.cc │ │ ├── cloud_channel_stub.h │ │ ├── cloud_channel_stub_factory.cc │ │ ├── cloud_channel_stub_factory.h │ │ ├── cloud_channel_tracing_connection.cc │ │ ├── cloud_channel_tracing_connection.h │ │ ├── cloud_channel_tracing_stub.cc │ │ └── cloud_channel_tracing_stub.h │ │ ├── mocks │ │ ├── mock_cloud_channel_connection.h │ │ └── mock_cloud_channel_reports_connection.h │ │ └── samples │ │ ├── cloud_channel_client_samples.cc │ │ └── cloud_channel_reports_client_samples.cc │ ├── chronicle │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── data_access_control_client.cc │ │ ├── data_access_control_client.h │ │ ├── data_access_control_connection.cc │ │ ├── data_access_control_connection.h │ │ ├── data_access_control_connection_idempotency_policy.cc │ │ ├── data_access_control_connection_idempotency_policy.h │ │ ├── data_access_control_options.h │ │ ├── entity_client.cc │ │ ├── entity_client.h │ │ ├── entity_connection.cc │ │ ├── entity_connection.h │ │ ├── entity_connection_idempotency_policy.cc │ │ ├── entity_connection_idempotency_policy.h │ │ ├── entity_options.h │ │ ├── instance_client.cc │ │ ├── instance_client.h │ │ ├── instance_connection.cc │ │ ├── instance_connection.h │ │ ├── instance_connection_idempotency_policy.cc │ │ ├── instance_connection_idempotency_policy.h │ │ ├── instance_options.h │ │ ├── internal │ │ ├── data_access_control_auth_decorator.cc │ │ ├── data_access_control_auth_decorator.h │ │ ├── data_access_control_connection_impl.cc │ │ ├── data_access_control_connection_impl.h │ │ ├── data_access_control_logging_decorator.cc │ │ ├── data_access_control_logging_decorator.h │ │ ├── data_access_control_metadata_decorator.cc │ │ ├── data_access_control_metadata_decorator.h │ │ ├── data_access_control_option_defaults.cc │ │ ├── data_access_control_option_defaults.h │ │ ├── data_access_control_retry_traits.h │ │ ├── data_access_control_sources.cc │ │ ├── data_access_control_stub.cc │ │ ├── data_access_control_stub.h │ │ ├── data_access_control_stub_factory.cc │ │ ├── data_access_control_stub_factory.h │ │ ├── data_access_control_tracing_connection.cc │ │ ├── data_access_control_tracing_connection.h │ │ ├── data_access_control_tracing_stub.cc │ │ ├── data_access_control_tracing_stub.h │ │ ├── entity_auth_decorator.cc │ │ ├── entity_auth_decorator.h │ │ ├── entity_connection_impl.cc │ │ ├── entity_connection_impl.h │ │ ├── entity_logging_decorator.cc │ │ ├── entity_logging_decorator.h │ │ ├── entity_metadata_decorator.cc │ │ ├── entity_metadata_decorator.h │ │ ├── entity_option_defaults.cc │ │ ├── entity_option_defaults.h │ │ ├── entity_retry_traits.h │ │ ├── entity_sources.cc │ │ ├── entity_stub.cc │ │ ├── entity_stub.h │ │ ├── entity_stub_factory.cc │ │ ├── entity_stub_factory.h │ │ ├── entity_tracing_connection.cc │ │ ├── entity_tracing_connection.h │ │ ├── entity_tracing_stub.cc │ │ ├── entity_tracing_stub.h │ │ ├── instance_auth_decorator.cc │ │ ├── instance_auth_decorator.h │ │ ├── instance_connection_impl.cc │ │ ├── instance_connection_impl.h │ │ ├── instance_logging_decorator.cc │ │ ├── instance_logging_decorator.h │ │ ├── instance_metadata_decorator.cc │ │ ├── instance_metadata_decorator.h │ │ ├── instance_option_defaults.cc │ │ ├── instance_option_defaults.h │ │ ├── instance_retry_traits.h │ │ ├── instance_sources.cc │ │ ├── instance_stub.cc │ │ ├── instance_stub.h │ │ ├── instance_stub_factory.cc │ │ ├── instance_stub_factory.h │ │ ├── instance_tracing_connection.cc │ │ ├── instance_tracing_connection.h │ │ ├── instance_tracing_stub.cc │ │ ├── instance_tracing_stub.h │ │ ├── reference_list_auth_decorator.cc │ │ ├── reference_list_auth_decorator.h │ │ ├── reference_list_connection_impl.cc │ │ ├── reference_list_connection_impl.h │ │ ├── reference_list_logging_decorator.cc │ │ ├── reference_list_logging_decorator.h │ │ ├── reference_list_metadata_decorator.cc │ │ ├── reference_list_metadata_decorator.h │ │ ├── reference_list_option_defaults.cc │ │ ├── reference_list_option_defaults.h │ │ ├── reference_list_retry_traits.h │ │ ├── reference_list_sources.cc │ │ ├── reference_list_stub.cc │ │ ├── reference_list_stub.h │ │ ├── reference_list_stub_factory.cc │ │ ├── reference_list_stub_factory.h │ │ ├── reference_list_tracing_connection.cc │ │ ├── reference_list_tracing_connection.h │ │ ├── reference_list_tracing_stub.cc │ │ ├── reference_list_tracing_stub.h │ │ ├── rule_auth_decorator.cc │ │ ├── rule_auth_decorator.h │ │ ├── rule_connection_impl.cc │ │ ├── rule_connection_impl.h │ │ ├── rule_logging_decorator.cc │ │ ├── rule_logging_decorator.h │ │ ├── rule_metadata_decorator.cc │ │ ├── rule_metadata_decorator.h │ │ ├── rule_option_defaults.cc │ │ ├── rule_option_defaults.h │ │ ├── rule_retry_traits.h │ │ ├── rule_sources.cc │ │ ├── rule_stub.cc │ │ ├── rule_stub.h │ │ ├── rule_stub_factory.cc │ │ ├── rule_stub_factory.h │ │ ├── rule_tracing_connection.cc │ │ ├── rule_tracing_connection.h │ │ ├── rule_tracing_stub.cc │ │ └── rule_tracing_stub.h │ │ ├── mocks │ │ ├── mock_data_access_control_connection.h │ │ ├── mock_entity_connection.h │ │ ├── mock_instance_connection.h │ │ ├── mock_reference_list_connection.h │ │ └── mock_rule_connection.h │ │ ├── reference_list_client.cc │ │ ├── reference_list_client.h │ │ ├── reference_list_connection.cc │ │ ├── reference_list_connection.h │ │ ├── reference_list_connection_idempotency_policy.cc │ │ ├── reference_list_connection_idempotency_policy.h │ │ ├── reference_list_options.h │ │ ├── rule_client.cc │ │ ├── rule_client.h │ │ ├── rule_connection.cc │ │ ├── rule_connection.h │ │ ├── rule_connection_idempotency_policy.cc │ │ ├── rule_connection_idempotency_policy.h │ │ ├── rule_options.h │ │ └── samples │ │ ├── data_access_control_client_samples.cc │ │ ├── entity_client_samples.cc │ │ ├── instance_client_samples.cc │ │ ├── reference_list_client_samples.cc │ │ └── rule_client_samples.cc │ ├── cloudbuild │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── cloud_build_client.h │ ├── cloud_build_connection.h │ ├── cloud_build_connection_idempotency_policy.h │ ├── cloud_build_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_cloud_build_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_build_client.cc │ │ ├── cloud_build_client.h │ │ ├── cloud_build_connection.cc │ │ ├── cloud_build_connection.h │ │ ├── cloud_build_connection_idempotency_policy.cc │ │ ├── cloud_build_connection_idempotency_policy.h │ │ ├── cloud_build_options.h │ │ ├── internal │ │ │ ├── cloud_build_auth_decorator.cc │ │ │ ├── cloud_build_auth_decorator.h │ │ │ ├── cloud_build_connection_impl.cc │ │ │ ├── cloud_build_connection_impl.h │ │ │ ├── cloud_build_logging_decorator.cc │ │ │ ├── cloud_build_logging_decorator.h │ │ │ ├── cloud_build_metadata_decorator.cc │ │ │ ├── cloud_build_metadata_decorator.h │ │ │ ├── cloud_build_option_defaults.cc │ │ │ ├── cloud_build_option_defaults.h │ │ │ ├── cloud_build_retry_traits.h │ │ │ ├── cloud_build_sources.cc │ │ │ ├── cloud_build_stub.cc │ │ │ ├── cloud_build_stub.h │ │ │ ├── cloud_build_stub_factory.cc │ │ │ ├── cloud_build_stub_factory.h │ │ │ ├── cloud_build_tracing_connection.cc │ │ │ ├── cloud_build_tracing_connection.h │ │ │ ├── cloud_build_tracing_stub.cc │ │ │ └── cloud_build_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_cloud_build_connection.h │ │ └── samples │ │ │ └── cloud_build_client_samples.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── repository_manager_auth_decorator.cc │ │ ├── repository_manager_auth_decorator.h │ │ ├── repository_manager_connection_impl.cc │ │ ├── repository_manager_connection_impl.h │ │ ├── repository_manager_logging_decorator.cc │ │ ├── repository_manager_logging_decorator.h │ │ ├── repository_manager_metadata_decorator.cc │ │ ├── repository_manager_metadata_decorator.h │ │ ├── repository_manager_option_defaults.cc │ │ ├── repository_manager_option_defaults.h │ │ ├── repository_manager_retry_traits.h │ │ ├── repository_manager_sources.cc │ │ ├── repository_manager_stub.cc │ │ ├── repository_manager_stub.h │ │ ├── repository_manager_stub_factory.cc │ │ ├── repository_manager_stub_factory.h │ │ ├── repository_manager_tracing_connection.cc │ │ ├── repository_manager_tracing_connection.h │ │ ├── repository_manager_tracing_stub.cc │ │ └── repository_manager_tracing_stub.h │ │ ├── mocks │ │ └── mock_repository_manager_connection.h │ │ ├── repository_manager_client.cc │ │ ├── repository_manager_client.h │ │ ├── repository_manager_connection.cc │ │ ├── repository_manager_connection.h │ │ ├── repository_manager_connection_idempotency_policy.cc │ │ ├── repository_manager_connection_idempotency_policy.h │ │ ├── repository_manager_options.h │ │ └── samples │ │ └── repository_manager_client_samples.cc │ ├── cloudcontrolspartner │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_controls_partner_core_client.cc │ │ ├── cloud_controls_partner_core_client.h │ │ ├── cloud_controls_partner_core_connection.cc │ │ ├── cloud_controls_partner_core_connection.h │ │ ├── cloud_controls_partner_core_connection_idempotency_policy.cc │ │ ├── cloud_controls_partner_core_connection_idempotency_policy.h │ │ ├── cloud_controls_partner_core_options.h │ │ ├── cloud_controls_partner_monitoring_client.cc │ │ ├── cloud_controls_partner_monitoring_client.h │ │ ├── cloud_controls_partner_monitoring_connection.cc │ │ ├── cloud_controls_partner_monitoring_connection.h │ │ ├── cloud_controls_partner_monitoring_connection_idempotency_policy.cc │ │ ├── cloud_controls_partner_monitoring_connection_idempotency_policy.h │ │ ├── cloud_controls_partner_monitoring_options.h │ │ ├── internal │ │ ├── cloud_controls_partner_core_auth_decorator.cc │ │ ├── cloud_controls_partner_core_auth_decorator.h │ │ ├── cloud_controls_partner_core_connection_impl.cc │ │ ├── cloud_controls_partner_core_connection_impl.h │ │ ├── cloud_controls_partner_core_logging_decorator.cc │ │ ├── cloud_controls_partner_core_logging_decorator.h │ │ ├── cloud_controls_partner_core_metadata_decorator.cc │ │ ├── cloud_controls_partner_core_metadata_decorator.h │ │ ├── cloud_controls_partner_core_option_defaults.cc │ │ ├── cloud_controls_partner_core_option_defaults.h │ │ ├── cloud_controls_partner_core_retry_traits.h │ │ ├── cloud_controls_partner_core_sources.cc │ │ ├── cloud_controls_partner_core_stub.cc │ │ ├── cloud_controls_partner_core_stub.h │ │ ├── cloud_controls_partner_core_stub_factory.cc │ │ ├── cloud_controls_partner_core_stub_factory.h │ │ ├── cloud_controls_partner_core_tracing_connection.cc │ │ ├── cloud_controls_partner_core_tracing_connection.h │ │ ├── cloud_controls_partner_core_tracing_stub.cc │ │ ├── cloud_controls_partner_core_tracing_stub.h │ │ ├── cloud_controls_partner_monitoring_auth_decorator.cc │ │ ├── cloud_controls_partner_monitoring_auth_decorator.h │ │ ├── cloud_controls_partner_monitoring_connection_impl.cc │ │ ├── cloud_controls_partner_monitoring_connection_impl.h │ │ ├── cloud_controls_partner_monitoring_logging_decorator.cc │ │ ├── cloud_controls_partner_monitoring_logging_decorator.h │ │ ├── cloud_controls_partner_monitoring_metadata_decorator.cc │ │ ├── cloud_controls_partner_monitoring_metadata_decorator.h │ │ ├── cloud_controls_partner_monitoring_option_defaults.cc │ │ ├── cloud_controls_partner_monitoring_option_defaults.h │ │ ├── cloud_controls_partner_monitoring_retry_traits.h │ │ ├── cloud_controls_partner_monitoring_sources.cc │ │ ├── cloud_controls_partner_monitoring_stub.cc │ │ ├── cloud_controls_partner_monitoring_stub.h │ │ ├── cloud_controls_partner_monitoring_stub_factory.cc │ │ ├── cloud_controls_partner_monitoring_stub_factory.h │ │ ├── cloud_controls_partner_monitoring_tracing_connection.cc │ │ ├── cloud_controls_partner_monitoring_tracing_connection.h │ │ ├── cloud_controls_partner_monitoring_tracing_stub.cc │ │ └── cloud_controls_partner_monitoring_tracing_stub.h │ │ ├── mocks │ │ ├── mock_cloud_controls_partner_core_connection.h │ │ └── mock_cloud_controls_partner_monitoring_connection.h │ │ └── samples │ │ ├── cloud_controls_partner_core_client_samples.cc │ │ └── cloud_controls_partner_monitoring_client_samples.cc │ ├── cloudquotas │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_quotas_client.cc │ │ ├── cloud_quotas_client.h │ │ ├── cloud_quotas_connection.cc │ │ ├── cloud_quotas_connection.h │ │ ├── cloud_quotas_connection_idempotency_policy.cc │ │ ├── cloud_quotas_connection_idempotency_policy.h │ │ ├── cloud_quotas_options.h │ │ ├── internal │ │ ├── cloud_quotas_auth_decorator.cc │ │ ├── cloud_quotas_auth_decorator.h │ │ ├── cloud_quotas_connection_impl.cc │ │ ├── cloud_quotas_connection_impl.h │ │ ├── cloud_quotas_logging_decorator.cc │ │ ├── cloud_quotas_logging_decorator.h │ │ ├── cloud_quotas_metadata_decorator.cc │ │ ├── cloud_quotas_metadata_decorator.h │ │ ├── cloud_quotas_option_defaults.cc │ │ ├── cloud_quotas_option_defaults.h │ │ ├── cloud_quotas_retry_traits.h │ │ ├── cloud_quotas_sources.cc │ │ ├── cloud_quotas_stub.cc │ │ ├── cloud_quotas_stub.h │ │ ├── cloud_quotas_stub_factory.cc │ │ ├── cloud_quotas_stub_factory.h │ │ ├── cloud_quotas_tracing_connection.cc │ │ ├── cloud_quotas_tracing_connection.h │ │ ├── cloud_quotas_tracing_stub.cc │ │ └── cloud_quotas_tracing_stub.h │ │ ├── mocks │ │ └── mock_cloud_quotas_connection.h │ │ └── samples │ │ └── cloud_quotas_client_samples.cc │ ├── cloudsecuritycompliance │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── config_client.cc │ │ ├── config_client.h │ │ ├── config_connection.cc │ │ ├── config_connection.h │ │ ├── config_connection_idempotency_policy.cc │ │ ├── config_connection_idempotency_policy.h │ │ ├── config_options.h │ │ ├── deployment_client.cc │ │ ├── deployment_client.h │ │ ├── deployment_connection.cc │ │ ├── deployment_connection.h │ │ ├── deployment_connection_idempotency_policy.cc │ │ ├── deployment_connection_idempotency_policy.h │ │ ├── deployment_options.h │ │ ├── internal │ │ ├── config_auth_decorator.cc │ │ ├── config_auth_decorator.h │ │ ├── config_connection_impl.cc │ │ ├── config_connection_impl.h │ │ ├── config_logging_decorator.cc │ │ ├── config_logging_decorator.h │ │ ├── config_metadata_decorator.cc │ │ ├── config_metadata_decorator.h │ │ ├── config_option_defaults.cc │ │ ├── config_option_defaults.h │ │ ├── config_retry_traits.h │ │ ├── config_sources.cc │ │ ├── config_stub.cc │ │ ├── config_stub.h │ │ ├── config_stub_factory.cc │ │ ├── config_stub_factory.h │ │ ├── config_tracing_connection.cc │ │ ├── config_tracing_connection.h │ │ ├── config_tracing_stub.cc │ │ ├── config_tracing_stub.h │ │ ├── deployment_auth_decorator.cc │ │ ├── deployment_auth_decorator.h │ │ ├── deployment_connection_impl.cc │ │ ├── deployment_connection_impl.h │ │ ├── deployment_logging_decorator.cc │ │ ├── deployment_logging_decorator.h │ │ ├── deployment_metadata_decorator.cc │ │ ├── deployment_metadata_decorator.h │ │ ├── deployment_option_defaults.cc │ │ ├── deployment_option_defaults.h │ │ ├── deployment_retry_traits.h │ │ ├── deployment_sources.cc │ │ ├── deployment_stub.cc │ │ ├── deployment_stub.h │ │ ├── deployment_stub_factory.cc │ │ ├── deployment_stub_factory.h │ │ ├── deployment_tracing_connection.cc │ │ ├── deployment_tracing_connection.h │ │ ├── deployment_tracing_stub.cc │ │ └── deployment_tracing_stub.h │ │ ├── mocks │ │ ├── mock_config_connection.h │ │ └── mock_deployment_connection.h │ │ └── samples │ │ ├── config_client_samples.cc │ │ └── deployment_client_samples.cc │ ├── commerce │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── consumer │ │ └── procurement │ │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── consumer_procurement_client.cc │ │ │ ├── consumer_procurement_client.h │ │ │ ├── consumer_procurement_connection.cc │ │ │ ├── consumer_procurement_connection.h │ │ │ ├── consumer_procurement_connection_idempotency_policy.cc │ │ │ ├── consumer_procurement_connection_idempotency_policy.h │ │ │ ├── consumer_procurement_options.h │ │ │ ├── internal │ │ │ ├── consumer_procurement_auth_decorator.cc │ │ │ ├── consumer_procurement_auth_decorator.h │ │ │ ├── consumer_procurement_connection_impl.cc │ │ │ ├── consumer_procurement_connection_impl.h │ │ │ ├── consumer_procurement_logging_decorator.cc │ │ │ ├── consumer_procurement_logging_decorator.h │ │ │ ├── consumer_procurement_metadata_decorator.cc │ │ │ ├── consumer_procurement_metadata_decorator.h │ │ │ ├── consumer_procurement_option_defaults.cc │ │ │ ├── consumer_procurement_option_defaults.h │ │ │ ├── consumer_procurement_retry_traits.h │ │ │ ├── consumer_procurement_sources.cc │ │ │ ├── consumer_procurement_stub.cc │ │ │ ├── consumer_procurement_stub.h │ │ │ ├── consumer_procurement_stub_factory.cc │ │ │ ├── consumer_procurement_stub_factory.h │ │ │ ├── consumer_procurement_tracing_connection.cc │ │ │ ├── consumer_procurement_tracing_connection.h │ │ │ ├── consumer_procurement_tracing_stub.cc │ │ │ └── consumer_procurement_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_consumer_procurement_connection.h │ │ │ └── samples │ │ │ └── consumer_procurement_client_samples.cc │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ └── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── common_options.h │ ├── common_options_test.cc │ ├── completion_queue.cc │ ├── completion_queue.h │ ├── completion_queue_benchmark.cc │ ├── completion_queue_test.cc │ ├── composer │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── environments_client.h │ ├── environments_connection.h │ ├── environments_connection_idempotency_policy.h │ ├── environments_options.h │ ├── image_versions_client.h │ ├── image_versions_connection.h │ ├── image_versions_connection_idempotency_policy.h │ ├── image_versions_options.h │ ├── mocks │ │ ├── mock_environments_connection.h │ │ └── mock_image_versions_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── environments_client.cc │ │ ├── environments_client.h │ │ ├── environments_connection.cc │ │ ├── environments_connection.h │ │ ├── environments_connection_idempotency_policy.cc │ │ ├── environments_connection_idempotency_policy.h │ │ ├── environments_options.h │ │ ├── image_versions_client.cc │ │ ├── image_versions_client.h │ │ ├── image_versions_connection.cc │ │ ├── image_versions_connection.h │ │ ├── image_versions_connection_idempotency_policy.cc │ │ ├── image_versions_connection_idempotency_policy.h │ │ ├── image_versions_options.h │ │ ├── internal │ │ ├── environments_auth_decorator.cc │ │ ├── environments_auth_decorator.h │ │ ├── environments_connection_impl.cc │ │ ├── environments_connection_impl.h │ │ ├── environments_logging_decorator.cc │ │ ├── environments_logging_decorator.h │ │ ├── environments_metadata_decorator.cc │ │ ├── environments_metadata_decorator.h │ │ ├── environments_option_defaults.cc │ │ ├── environments_option_defaults.h │ │ ├── environments_retry_traits.h │ │ ├── environments_sources.cc │ │ ├── environments_stub.cc │ │ ├── environments_stub.h │ │ ├── environments_stub_factory.cc │ │ ├── environments_stub_factory.h │ │ ├── environments_tracing_connection.cc │ │ ├── environments_tracing_connection.h │ │ ├── environments_tracing_stub.cc │ │ ├── environments_tracing_stub.h │ │ ├── image_versions_auth_decorator.cc │ │ ├── image_versions_auth_decorator.h │ │ ├── image_versions_connection_impl.cc │ │ ├── image_versions_connection_impl.h │ │ ├── image_versions_logging_decorator.cc │ │ ├── image_versions_logging_decorator.h │ │ ├── image_versions_metadata_decorator.cc │ │ ├── image_versions_metadata_decorator.h │ │ ├── image_versions_option_defaults.cc │ │ ├── image_versions_option_defaults.h │ │ ├── image_versions_retry_traits.h │ │ ├── image_versions_sources.cc │ │ ├── image_versions_stub.cc │ │ ├── image_versions_stub.h │ │ ├── image_versions_stub_factory.cc │ │ ├── image_versions_stub_factory.h │ │ ├── image_versions_tracing_connection.cc │ │ ├── image_versions_tracing_connection.h │ │ ├── image_versions_tracing_stub.cc │ │ └── image_versions_tracing_stub.h │ │ ├── mocks │ │ ├── mock_environments_connection.h │ │ └── mock_image_versions_connection.h │ │ └── samples │ │ ├── environments_client_samples.cc │ │ └── image_versions_client_samples.cc │ ├── compute │ ├── .repo-metadata.json │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── accelerator_types │ │ └── v1 │ │ │ ├── accelerator_types_client.cc │ │ │ ├── accelerator_types_client.h │ │ │ ├── accelerator_types_connection.cc │ │ │ ├── accelerator_types_connection.h │ │ │ ├── accelerator_types_connection_idempotency_policy.cc │ │ │ ├── accelerator_types_connection_idempotency_policy.h │ │ │ ├── accelerator_types_options.h │ │ │ ├── accelerator_types_proto_export.h │ │ │ ├── accelerator_types_rest_connection.cc │ │ │ ├── accelerator_types_rest_connection.h │ │ │ ├── internal │ │ │ ├── accelerator_types_option_defaults.cc │ │ │ ├── accelerator_types_option_defaults.h │ │ │ ├── accelerator_types_rest_connection_impl.cc │ │ │ ├── accelerator_types_rest_connection_impl.h │ │ │ ├── accelerator_types_rest_logging_decorator.cc │ │ │ ├── accelerator_types_rest_logging_decorator.h │ │ │ ├── accelerator_types_rest_metadata_decorator.cc │ │ │ ├── accelerator_types_rest_metadata_decorator.h │ │ │ ├── accelerator_types_rest_stub.cc │ │ │ ├── accelerator_types_rest_stub.h │ │ │ ├── accelerator_types_rest_stub_factory.cc │ │ │ ├── accelerator_types_rest_stub_factory.h │ │ │ ├── accelerator_types_retry_traits.h │ │ │ ├── accelerator_types_sources.cc │ │ │ ├── accelerator_types_tracing_connection.cc │ │ │ └── accelerator_types_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_accelerator_types_connection.h │ │ │ └── samples │ │ │ └── accelerator_types_client_samples.cc │ ├── addresses │ │ └── v1 │ │ │ ├── addresses_client.cc │ │ │ ├── addresses_client.h │ │ │ ├── addresses_connection.cc │ │ │ ├── addresses_connection.h │ │ │ ├── addresses_connection_idempotency_policy.cc │ │ │ ├── addresses_connection_idempotency_policy.h │ │ │ ├── addresses_options.h │ │ │ ├── addresses_proto_export.h │ │ │ ├── addresses_rest_connection.cc │ │ │ ├── addresses_rest_connection.h │ │ │ ├── internal │ │ │ ├── addresses_option_defaults.cc │ │ │ ├── addresses_option_defaults.h │ │ │ ├── addresses_rest_connection_impl.cc │ │ │ ├── addresses_rest_connection_impl.h │ │ │ ├── addresses_rest_logging_decorator.cc │ │ │ ├── addresses_rest_logging_decorator.h │ │ │ ├── addresses_rest_metadata_decorator.cc │ │ │ ├── addresses_rest_metadata_decorator.h │ │ │ ├── addresses_rest_stub.cc │ │ │ ├── addresses_rest_stub.h │ │ │ ├── addresses_rest_stub_factory.cc │ │ │ ├── addresses_rest_stub_factory.h │ │ │ ├── addresses_retry_traits.h │ │ │ ├── addresses_sources.cc │ │ │ ├── addresses_tracing_connection.cc │ │ │ └── addresses_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_addresses_connection.h │ │ │ └── samples │ │ │ └── addresses_client_samples.cc │ ├── autoscalers │ │ └── v1 │ │ │ ├── autoscalers_client.cc │ │ │ ├── autoscalers_client.h │ │ │ ├── autoscalers_connection.cc │ │ │ ├── autoscalers_connection.h │ │ │ ├── autoscalers_connection_idempotency_policy.cc │ │ │ ├── autoscalers_connection_idempotency_policy.h │ │ │ ├── autoscalers_options.h │ │ │ ├── autoscalers_proto_export.h │ │ │ ├── autoscalers_rest_connection.cc │ │ │ ├── autoscalers_rest_connection.h │ │ │ ├── internal │ │ │ ├── autoscalers_option_defaults.cc │ │ │ ├── autoscalers_option_defaults.h │ │ │ ├── autoscalers_rest_connection_impl.cc │ │ │ ├── autoscalers_rest_connection_impl.h │ │ │ ├── autoscalers_rest_logging_decorator.cc │ │ │ ├── autoscalers_rest_logging_decorator.h │ │ │ ├── autoscalers_rest_metadata_decorator.cc │ │ │ ├── autoscalers_rest_metadata_decorator.h │ │ │ ├── autoscalers_rest_stub.cc │ │ │ ├── autoscalers_rest_stub.h │ │ │ ├── autoscalers_rest_stub_factory.cc │ │ │ ├── autoscalers_rest_stub_factory.h │ │ │ ├── autoscalers_retry_traits.h │ │ │ ├── autoscalers_sources.cc │ │ │ ├── autoscalers_tracing_connection.cc │ │ │ └── autoscalers_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_autoscalers_connection.h │ │ │ └── samples │ │ │ └── autoscalers_client_samples.cc │ ├── backend_buckets │ │ └── v1 │ │ │ ├── backend_buckets_client.cc │ │ │ ├── backend_buckets_client.h │ │ │ ├── backend_buckets_connection.cc │ │ │ ├── backend_buckets_connection.h │ │ │ ├── backend_buckets_connection_idempotency_policy.cc │ │ │ ├── backend_buckets_connection_idempotency_policy.h │ │ │ ├── backend_buckets_options.h │ │ │ ├── backend_buckets_proto_export.h │ │ │ ├── backend_buckets_rest_connection.cc │ │ │ ├── backend_buckets_rest_connection.h │ │ │ ├── internal │ │ │ ├── backend_buckets_option_defaults.cc │ │ │ ├── backend_buckets_option_defaults.h │ │ │ ├── backend_buckets_rest_connection_impl.cc │ │ │ ├── backend_buckets_rest_connection_impl.h │ │ │ ├── backend_buckets_rest_logging_decorator.cc │ │ │ ├── backend_buckets_rest_logging_decorator.h │ │ │ ├── backend_buckets_rest_metadata_decorator.cc │ │ │ ├── backend_buckets_rest_metadata_decorator.h │ │ │ ├── backend_buckets_rest_stub.cc │ │ │ ├── backend_buckets_rest_stub.h │ │ │ ├── backend_buckets_rest_stub_factory.cc │ │ │ ├── backend_buckets_rest_stub_factory.h │ │ │ ├── backend_buckets_retry_traits.h │ │ │ ├── backend_buckets_sources.cc │ │ │ ├── backend_buckets_tracing_connection.cc │ │ │ └── backend_buckets_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_backend_buckets_connection.h │ │ │ └── samples │ │ │ └── backend_buckets_client_samples.cc │ ├── backend_services │ │ └── v1 │ │ │ ├── backend_services_client.cc │ │ │ ├── backend_services_client.h │ │ │ ├── backend_services_connection.cc │ │ │ ├── backend_services_connection.h │ │ │ ├── backend_services_connection_idempotency_policy.cc │ │ │ ├── backend_services_connection_idempotency_policy.h │ │ │ ├── backend_services_options.h │ │ │ ├── backend_services_proto_export.h │ │ │ ├── backend_services_rest_connection.cc │ │ │ ├── backend_services_rest_connection.h │ │ │ ├── internal │ │ │ ├── backend_services_option_defaults.cc │ │ │ ├── backend_services_option_defaults.h │ │ │ ├── backend_services_rest_connection_impl.cc │ │ │ ├── backend_services_rest_connection_impl.h │ │ │ ├── backend_services_rest_logging_decorator.cc │ │ │ ├── backend_services_rest_logging_decorator.h │ │ │ ├── backend_services_rest_metadata_decorator.cc │ │ │ ├── backend_services_rest_metadata_decorator.h │ │ │ ├── backend_services_rest_stub.cc │ │ │ ├── backend_services_rest_stub.h │ │ │ ├── backend_services_rest_stub_factory.cc │ │ │ ├── backend_services_rest_stub_factory.h │ │ │ ├── backend_services_retry_traits.h │ │ │ ├── backend_services_sources.cc │ │ │ ├── backend_services_tracing_connection.cc │ │ │ └── backend_services_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_backend_services_connection.h │ │ │ └── samples │ │ │ └── backend_services_client_samples.cc │ ├── compute_library.bzl │ ├── config.cmake.in │ ├── disk_types │ │ └── v1 │ │ │ ├── disk_types_client.cc │ │ │ ├── disk_types_client.h │ │ │ ├── disk_types_connection.cc │ │ │ ├── disk_types_connection.h │ │ │ ├── disk_types_connection_idempotency_policy.cc │ │ │ ├── disk_types_connection_idempotency_policy.h │ │ │ ├── disk_types_options.h │ │ │ ├── disk_types_proto_export.h │ │ │ ├── disk_types_rest_connection.cc │ │ │ ├── disk_types_rest_connection.h │ │ │ ├── internal │ │ │ ├── disk_types_option_defaults.cc │ │ │ ├── disk_types_option_defaults.h │ │ │ ├── disk_types_rest_connection_impl.cc │ │ │ ├── disk_types_rest_connection_impl.h │ │ │ ├── disk_types_rest_logging_decorator.cc │ │ │ ├── disk_types_rest_logging_decorator.h │ │ │ ├── disk_types_rest_metadata_decorator.cc │ │ │ ├── disk_types_rest_metadata_decorator.h │ │ │ ├── disk_types_rest_stub.cc │ │ │ ├── disk_types_rest_stub.h │ │ │ ├── disk_types_rest_stub_factory.cc │ │ │ ├── disk_types_rest_stub_factory.h │ │ │ ├── disk_types_retry_traits.h │ │ │ ├── disk_types_sources.cc │ │ │ ├── disk_types_tracing_connection.cc │ │ │ └── disk_types_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_disk_types_connection.h │ │ │ └── samples │ │ │ └── disk_types_client_samples.cc │ ├── disks │ │ └── v1 │ │ │ ├── disks_client.cc │ │ │ ├── disks_client.h │ │ │ ├── disks_connection.cc │ │ │ ├── disks_connection.h │ │ │ ├── disks_connection_idempotency_policy.cc │ │ │ ├── disks_connection_idempotency_policy.h │ │ │ ├── disks_options.h │ │ │ ├── disks_proto_export.h │ │ │ ├── disks_rest_connection.cc │ │ │ ├── disks_rest_connection.h │ │ │ ├── internal │ │ │ ├── disks_option_defaults.cc │ │ │ ├── disks_option_defaults.h │ │ │ ├── disks_rest_connection_impl.cc │ │ │ ├── disks_rest_connection_impl.h │ │ │ ├── disks_rest_logging_decorator.cc │ │ │ ├── disks_rest_logging_decorator.h │ │ │ ├── disks_rest_metadata_decorator.cc │ │ │ ├── disks_rest_metadata_decorator.h │ │ │ ├── disks_rest_stub.cc │ │ │ ├── disks_rest_stub.h │ │ │ ├── disks_rest_stub_factory.cc │ │ │ ├── disks_rest_stub_factory.h │ │ │ ├── disks_retry_traits.h │ │ │ ├── disks_sources.cc │ │ │ ├── disks_tracing_connection.cc │ │ │ └── disks_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_disks_connection.h │ │ │ └── samples │ │ │ └── disks_client_samples.cc │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── external_vpn_gateways │ │ └── v1 │ │ │ ├── external_vpn_gateways_client.cc │ │ │ ├── external_vpn_gateways_client.h │ │ │ ├── external_vpn_gateways_connection.cc │ │ │ ├── external_vpn_gateways_connection.h │ │ │ ├── external_vpn_gateways_connection_idempotency_policy.cc │ │ │ ├── external_vpn_gateways_connection_idempotency_policy.h │ │ │ ├── external_vpn_gateways_options.h │ │ │ ├── external_vpn_gateways_proto_export.h │ │ │ ├── external_vpn_gateways_rest_connection.cc │ │ │ ├── external_vpn_gateways_rest_connection.h │ │ │ ├── internal │ │ │ ├── external_vpn_gateways_option_defaults.cc │ │ │ ├── external_vpn_gateways_option_defaults.h │ │ │ ├── external_vpn_gateways_rest_connection_impl.cc │ │ │ ├── external_vpn_gateways_rest_connection_impl.h │ │ │ ├── external_vpn_gateways_rest_logging_decorator.cc │ │ │ ├── external_vpn_gateways_rest_logging_decorator.h │ │ │ ├── external_vpn_gateways_rest_metadata_decorator.cc │ │ │ ├── external_vpn_gateways_rest_metadata_decorator.h │ │ │ ├── external_vpn_gateways_rest_stub.cc │ │ │ ├── external_vpn_gateways_rest_stub.h │ │ │ ├── external_vpn_gateways_rest_stub_factory.cc │ │ │ ├── external_vpn_gateways_rest_stub_factory.h │ │ │ ├── external_vpn_gateways_retry_traits.h │ │ │ ├── external_vpn_gateways_sources.cc │ │ │ ├── external_vpn_gateways_tracing_connection.cc │ │ │ └── external_vpn_gateways_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_external_vpn_gateways_connection.h │ │ │ └── samples │ │ │ └── external_vpn_gateways_client_samples.cc │ ├── firewall_policies │ │ └── v1 │ │ │ ├── firewall_policies_client.cc │ │ │ ├── firewall_policies_client.h │ │ │ ├── firewall_policies_connection.cc │ │ │ ├── firewall_policies_connection.h │ │ │ ├── firewall_policies_connection_idempotency_policy.cc │ │ │ ├── firewall_policies_connection_idempotency_policy.h │ │ │ ├── firewall_policies_options.h │ │ │ ├── firewall_policies_proto_export.h │ │ │ ├── firewall_policies_rest_connection.cc │ │ │ ├── firewall_policies_rest_connection.h │ │ │ ├── internal │ │ │ ├── firewall_policies_option_defaults.cc │ │ │ ├── firewall_policies_option_defaults.h │ │ │ ├── firewall_policies_rest_connection_impl.cc │ │ │ ├── firewall_policies_rest_connection_impl.h │ │ │ ├── firewall_policies_rest_logging_decorator.cc │ │ │ ├── firewall_policies_rest_logging_decorator.h │ │ │ ├── firewall_policies_rest_metadata_decorator.cc │ │ │ ├── firewall_policies_rest_metadata_decorator.h │ │ │ ├── firewall_policies_rest_stub.cc │ │ │ ├── firewall_policies_rest_stub.h │ │ │ ├── firewall_policies_rest_stub_factory.cc │ │ │ ├── firewall_policies_rest_stub_factory.h │ │ │ ├── firewall_policies_retry_traits.h │ │ │ ├── firewall_policies_sources.cc │ │ │ ├── firewall_policies_tracing_connection.cc │ │ │ └── firewall_policies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_firewall_policies_connection.h │ │ │ └── samples │ │ │ └── firewall_policies_client_samples.cc │ ├── firewalls │ │ └── v1 │ │ │ ├── firewalls_client.cc │ │ │ ├── firewalls_client.h │ │ │ ├── firewalls_connection.cc │ │ │ ├── firewalls_connection.h │ │ │ ├── firewalls_connection_idempotency_policy.cc │ │ │ ├── firewalls_connection_idempotency_policy.h │ │ │ ├── firewalls_options.h │ │ │ ├── firewalls_proto_export.h │ │ │ ├── firewalls_rest_connection.cc │ │ │ ├── firewalls_rest_connection.h │ │ │ ├── internal │ │ │ ├── firewalls_option_defaults.cc │ │ │ ├── firewalls_option_defaults.h │ │ │ ├── firewalls_rest_connection_impl.cc │ │ │ ├── firewalls_rest_connection_impl.h │ │ │ ├── firewalls_rest_logging_decorator.cc │ │ │ ├── firewalls_rest_logging_decorator.h │ │ │ ├── firewalls_rest_metadata_decorator.cc │ │ │ ├── firewalls_rest_metadata_decorator.h │ │ │ ├── firewalls_rest_stub.cc │ │ │ ├── firewalls_rest_stub.h │ │ │ ├── firewalls_rest_stub_factory.cc │ │ │ ├── firewalls_rest_stub_factory.h │ │ │ ├── firewalls_retry_traits.h │ │ │ ├── firewalls_sources.cc │ │ │ ├── firewalls_tracing_connection.cc │ │ │ └── firewalls_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_firewalls_connection.h │ │ │ └── samples │ │ │ └── firewalls_client_samples.cc │ ├── forwarding_rules │ │ └── v1 │ │ │ ├── forwarding_rules_client.cc │ │ │ ├── forwarding_rules_client.h │ │ │ ├── forwarding_rules_connection.cc │ │ │ ├── forwarding_rules_connection.h │ │ │ ├── forwarding_rules_connection_idempotency_policy.cc │ │ │ ├── forwarding_rules_connection_idempotency_policy.h │ │ │ ├── forwarding_rules_options.h │ │ │ ├── forwarding_rules_proto_export.h │ │ │ ├── forwarding_rules_rest_connection.cc │ │ │ ├── forwarding_rules_rest_connection.h │ │ │ ├── internal │ │ │ ├── forwarding_rules_option_defaults.cc │ │ │ ├── forwarding_rules_option_defaults.h │ │ │ ├── forwarding_rules_rest_connection_impl.cc │ │ │ ├── forwarding_rules_rest_connection_impl.h │ │ │ ├── forwarding_rules_rest_logging_decorator.cc │ │ │ ├── forwarding_rules_rest_logging_decorator.h │ │ │ ├── forwarding_rules_rest_metadata_decorator.cc │ │ │ ├── forwarding_rules_rest_metadata_decorator.h │ │ │ ├── forwarding_rules_rest_stub.cc │ │ │ ├── forwarding_rules_rest_stub.h │ │ │ ├── forwarding_rules_rest_stub_factory.cc │ │ │ ├── forwarding_rules_rest_stub_factory.h │ │ │ ├── forwarding_rules_retry_traits.h │ │ │ ├── forwarding_rules_sources.cc │ │ │ ├── forwarding_rules_tracing_connection.cc │ │ │ └── forwarding_rules_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_forwarding_rules_connection.h │ │ │ └── samples │ │ │ └── forwarding_rules_client_samples.cc │ ├── global_addresses │ │ └── v1 │ │ │ ├── global_addresses_client.cc │ │ │ ├── global_addresses_client.h │ │ │ ├── global_addresses_connection.cc │ │ │ ├── global_addresses_connection.h │ │ │ ├── global_addresses_connection_idempotency_policy.cc │ │ │ ├── global_addresses_connection_idempotency_policy.h │ │ │ ├── global_addresses_options.h │ │ │ ├── global_addresses_proto_export.h │ │ │ ├── global_addresses_rest_connection.cc │ │ │ ├── global_addresses_rest_connection.h │ │ │ ├── internal │ │ │ ├── global_addresses_option_defaults.cc │ │ │ ├── global_addresses_option_defaults.h │ │ │ ├── global_addresses_rest_connection_impl.cc │ │ │ ├── global_addresses_rest_connection_impl.h │ │ │ ├── global_addresses_rest_logging_decorator.cc │ │ │ ├── global_addresses_rest_logging_decorator.h │ │ │ ├── global_addresses_rest_metadata_decorator.cc │ │ │ ├── global_addresses_rest_metadata_decorator.h │ │ │ ├── global_addresses_rest_stub.cc │ │ │ ├── global_addresses_rest_stub.h │ │ │ ├── global_addresses_rest_stub_factory.cc │ │ │ ├── global_addresses_rest_stub_factory.h │ │ │ ├── global_addresses_retry_traits.h │ │ │ ├── global_addresses_sources.cc │ │ │ ├── global_addresses_tracing_connection.cc │ │ │ └── global_addresses_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_global_addresses_connection.h │ │ │ └── samples │ │ │ └── global_addresses_client_samples.cc │ ├── global_forwarding_rules │ │ └── v1 │ │ │ ├── global_forwarding_rules_client.cc │ │ │ ├── global_forwarding_rules_client.h │ │ │ ├── global_forwarding_rules_connection.cc │ │ │ ├── global_forwarding_rules_connection.h │ │ │ ├── global_forwarding_rules_connection_idempotency_policy.cc │ │ │ ├── global_forwarding_rules_connection_idempotency_policy.h │ │ │ ├── global_forwarding_rules_options.h │ │ │ ├── global_forwarding_rules_proto_export.h │ │ │ ├── global_forwarding_rules_rest_connection.cc │ │ │ ├── global_forwarding_rules_rest_connection.h │ │ │ ├── internal │ │ │ ├── global_forwarding_rules_option_defaults.cc │ │ │ ├── global_forwarding_rules_option_defaults.h │ │ │ ├── global_forwarding_rules_rest_connection_impl.cc │ │ │ ├── global_forwarding_rules_rest_connection_impl.h │ │ │ ├── global_forwarding_rules_rest_logging_decorator.cc │ │ │ ├── global_forwarding_rules_rest_logging_decorator.h │ │ │ ├── global_forwarding_rules_rest_metadata_decorator.cc │ │ │ ├── global_forwarding_rules_rest_metadata_decorator.h │ │ │ ├── global_forwarding_rules_rest_stub.cc │ │ │ ├── global_forwarding_rules_rest_stub.h │ │ │ ├── global_forwarding_rules_rest_stub_factory.cc │ │ │ ├── global_forwarding_rules_rest_stub_factory.h │ │ │ ├── global_forwarding_rules_retry_traits.h │ │ │ ├── global_forwarding_rules_sources.cc │ │ │ ├── global_forwarding_rules_tracing_connection.cc │ │ │ └── global_forwarding_rules_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_global_forwarding_rules_connection.h │ │ │ └── samples │ │ │ └── global_forwarding_rules_client_samples.cc │ ├── global_network_endpoint_groups │ │ └── v1 │ │ │ ├── global_network_endpoint_groups_client.cc │ │ │ ├── global_network_endpoint_groups_client.h │ │ │ ├── global_network_endpoint_groups_connection.cc │ │ │ ├── global_network_endpoint_groups_connection.h │ │ │ ├── global_network_endpoint_groups_connection_idempotency_policy.cc │ │ │ ├── global_network_endpoint_groups_connection_idempotency_policy.h │ │ │ ├── global_network_endpoint_groups_options.h │ │ │ ├── global_network_endpoint_groups_proto_export.h │ │ │ ├── global_network_endpoint_groups_rest_connection.cc │ │ │ ├── global_network_endpoint_groups_rest_connection.h │ │ │ ├── internal │ │ │ ├── global_network_endpoint_groups_option_defaults.cc │ │ │ ├── global_network_endpoint_groups_option_defaults.h │ │ │ ├── global_network_endpoint_groups_rest_connection_impl.cc │ │ │ ├── global_network_endpoint_groups_rest_connection_impl.h │ │ │ ├── global_network_endpoint_groups_rest_logging_decorator.cc │ │ │ ├── global_network_endpoint_groups_rest_logging_decorator.h │ │ │ ├── global_network_endpoint_groups_rest_metadata_decorator.cc │ │ │ ├── global_network_endpoint_groups_rest_metadata_decorator.h │ │ │ ├── global_network_endpoint_groups_rest_stub.cc │ │ │ ├── global_network_endpoint_groups_rest_stub.h │ │ │ ├── global_network_endpoint_groups_rest_stub_factory.cc │ │ │ ├── global_network_endpoint_groups_rest_stub_factory.h │ │ │ ├── global_network_endpoint_groups_retry_traits.h │ │ │ ├── global_network_endpoint_groups_sources.cc │ │ │ ├── global_network_endpoint_groups_tracing_connection.cc │ │ │ └── global_network_endpoint_groups_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_global_network_endpoint_groups_connection.h │ │ │ └── samples │ │ │ └── global_network_endpoint_groups_client_samples.cc │ ├── global_operations │ │ └── v1 │ │ │ ├── global_operations_client.cc │ │ │ ├── global_operations_client.h │ │ │ ├── global_operations_connection.cc │ │ │ ├── global_operations_connection.h │ │ │ ├── global_operations_connection_idempotency_policy.cc │ │ │ ├── global_operations_connection_idempotency_policy.h │ │ │ ├── global_operations_options.h │ │ │ ├── global_operations_proto_export.h │ │ │ ├── global_operations_rest_connection.cc │ │ │ ├── global_operations_rest_connection.h │ │ │ ├── internal │ │ │ ├── global_operations_option_defaults.cc │ │ │ ├── global_operations_option_defaults.h │ │ │ ├── global_operations_rest_connection_impl.cc │ │ │ ├── global_operations_rest_connection_impl.h │ │ │ ├── global_operations_rest_logging_decorator.cc │ │ │ ├── global_operations_rest_logging_decorator.h │ │ │ ├── global_operations_rest_metadata_decorator.cc │ │ │ ├── global_operations_rest_metadata_decorator.h │ │ │ ├── global_operations_rest_stub.cc │ │ │ ├── global_operations_rest_stub.h │ │ │ ├── global_operations_rest_stub_factory.cc │ │ │ ├── global_operations_rest_stub_factory.h │ │ │ ├── global_operations_retry_traits.h │ │ │ ├── global_operations_sources.cc │ │ │ ├── global_operations_tracing_connection.cc │ │ │ └── global_operations_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_global_operations_connection.h │ │ │ └── samples │ │ │ └── global_operations_client_samples.cc │ ├── global_organization_operations │ │ └── v1 │ │ │ ├── global_organization_operations_client.cc │ │ │ ├── global_organization_operations_client.h │ │ │ ├── global_organization_operations_connection.cc │ │ │ ├── global_organization_operations_connection.h │ │ │ ├── global_organization_operations_connection_idempotency_policy.cc │ │ │ ├── global_organization_operations_connection_idempotency_policy.h │ │ │ ├── global_organization_operations_options.h │ │ │ ├── global_organization_operations_proto_export.h │ │ │ ├── global_organization_operations_rest_connection.cc │ │ │ ├── global_organization_operations_rest_connection.h │ │ │ ├── internal │ │ │ ├── global_organization_operations_option_defaults.cc │ │ │ ├── global_organization_operations_option_defaults.h │ │ │ ├── global_organization_operations_rest_connection_impl.cc │ │ │ ├── global_organization_operations_rest_connection_impl.h │ │ │ ├── global_organization_operations_rest_logging_decorator.cc │ │ │ ├── global_organization_operations_rest_logging_decorator.h │ │ │ ├── global_organization_operations_rest_metadata_decorator.cc │ │ │ ├── global_organization_operations_rest_metadata_decorator.h │ │ │ ├── global_organization_operations_rest_stub.cc │ │ │ ├── global_organization_operations_rest_stub.h │ │ │ ├── global_organization_operations_rest_stub_factory.cc │ │ │ ├── global_organization_operations_rest_stub_factory.h │ │ │ ├── global_organization_operations_retry_traits.h │ │ │ ├── global_organization_operations_sources.cc │ │ │ ├── global_organization_operations_tracing_connection.cc │ │ │ └── global_organization_operations_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_global_organization_operations_connection.h │ │ │ └── samples │ │ │ └── global_organization_operations_client_samples.cc │ ├── global_public_delegated_prefixes │ │ └── v1 │ │ │ ├── global_public_delegated_prefixes_client.cc │ │ │ ├── global_public_delegated_prefixes_client.h │ │ │ ├── global_public_delegated_prefixes_connection.cc │ │ │ ├── global_public_delegated_prefixes_connection.h │ │ │ ├── global_public_delegated_prefixes_connection_idempotency_policy.cc │ │ │ ├── global_public_delegated_prefixes_connection_idempotency_policy.h │ │ │ ├── global_public_delegated_prefixes_options.h │ │ │ ├── global_public_delegated_prefixes_proto_export.h │ │ │ ├── global_public_delegated_prefixes_rest_connection.cc │ │ │ ├── global_public_delegated_prefixes_rest_connection.h │ │ │ ├── internal │ │ │ ├── global_public_delegated_prefixes_option_defaults.cc │ │ │ ├── global_public_delegated_prefixes_option_defaults.h │ │ │ ├── global_public_delegated_prefixes_rest_connection_impl.cc │ │ │ ├── global_public_delegated_prefixes_rest_connection_impl.h │ │ │ ├── global_public_delegated_prefixes_rest_logging_decorator.cc │ │ │ ├── global_public_delegated_prefixes_rest_logging_decorator.h │ │ │ ├── global_public_delegated_prefixes_rest_metadata_decorator.cc │ │ │ ├── global_public_delegated_prefixes_rest_metadata_decorator.h │ │ │ ├── global_public_delegated_prefixes_rest_stub.cc │ │ │ ├── global_public_delegated_prefixes_rest_stub.h │ │ │ ├── global_public_delegated_prefixes_rest_stub_factory.cc │ │ │ ├── global_public_delegated_prefixes_rest_stub_factory.h │ │ │ ├── global_public_delegated_prefixes_retry_traits.h │ │ │ ├── global_public_delegated_prefixes_sources.cc │ │ │ ├── global_public_delegated_prefixes_tracing_connection.cc │ │ │ └── global_public_delegated_prefixes_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_global_public_delegated_prefixes_connection.h │ │ │ └── samples │ │ │ └── global_public_delegated_prefixes_client_samples.cc │ ├── health_checks │ │ └── v1 │ │ │ ├── health_checks_client.cc │ │ │ ├── health_checks_client.h │ │ │ ├── health_checks_connection.cc │ │ │ ├── health_checks_connection.h │ │ │ ├── health_checks_connection_idempotency_policy.cc │ │ │ ├── health_checks_connection_idempotency_policy.h │ │ │ ├── health_checks_options.h │ │ │ ├── health_checks_proto_export.h │ │ │ ├── health_checks_rest_connection.cc │ │ │ ├── health_checks_rest_connection.h │ │ │ ├── internal │ │ │ ├── health_checks_option_defaults.cc │ │ │ ├── health_checks_option_defaults.h │ │ │ ├── health_checks_rest_connection_impl.cc │ │ │ ├── health_checks_rest_connection_impl.h │ │ │ ├── health_checks_rest_logging_decorator.cc │ │ │ ├── health_checks_rest_logging_decorator.h │ │ │ ├── health_checks_rest_metadata_decorator.cc │ │ │ ├── health_checks_rest_metadata_decorator.h │ │ │ ├── health_checks_rest_stub.cc │ │ │ ├── health_checks_rest_stub.h │ │ │ ├── health_checks_rest_stub_factory.cc │ │ │ ├── health_checks_rest_stub_factory.h │ │ │ ├── health_checks_retry_traits.h │ │ │ ├── health_checks_sources.cc │ │ │ ├── health_checks_tracing_connection.cc │ │ │ └── health_checks_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_health_checks_connection.h │ │ │ └── samples │ │ │ └── health_checks_client_samples.cc │ ├── http_health_checks │ │ └── v1 │ │ │ ├── http_health_checks_client.cc │ │ │ ├── http_health_checks_client.h │ │ │ ├── http_health_checks_connection.cc │ │ │ ├── http_health_checks_connection.h │ │ │ ├── http_health_checks_connection_idempotency_policy.cc │ │ │ ├── http_health_checks_connection_idempotency_policy.h │ │ │ ├── http_health_checks_options.h │ │ │ ├── http_health_checks_proto_export.h │ │ │ ├── http_health_checks_rest_connection.cc │ │ │ ├── http_health_checks_rest_connection.h │ │ │ ├── internal │ │ │ ├── http_health_checks_option_defaults.cc │ │ │ ├── http_health_checks_option_defaults.h │ │ │ ├── http_health_checks_rest_connection_impl.cc │ │ │ ├── http_health_checks_rest_connection_impl.h │ │ │ ├── http_health_checks_rest_logging_decorator.cc │ │ │ ├── http_health_checks_rest_logging_decorator.h │ │ │ ├── http_health_checks_rest_metadata_decorator.cc │ │ │ ├── http_health_checks_rest_metadata_decorator.h │ │ │ ├── http_health_checks_rest_stub.cc │ │ │ ├── http_health_checks_rest_stub.h │ │ │ ├── http_health_checks_rest_stub_factory.cc │ │ │ ├── http_health_checks_rest_stub_factory.h │ │ │ ├── http_health_checks_retry_traits.h │ │ │ ├── http_health_checks_sources.cc │ │ │ ├── http_health_checks_tracing_connection.cc │ │ │ └── http_health_checks_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_http_health_checks_connection.h │ │ │ └── samples │ │ │ └── http_health_checks_client_samples.cc │ ├── https_health_checks │ │ └── v1 │ │ │ ├── https_health_checks_client.cc │ │ │ ├── https_health_checks_client.h │ │ │ ├── https_health_checks_connection.cc │ │ │ ├── https_health_checks_connection.h │ │ │ ├── https_health_checks_connection_idempotency_policy.cc │ │ │ ├── https_health_checks_connection_idempotency_policy.h │ │ │ ├── https_health_checks_options.h │ │ │ ├── https_health_checks_proto_export.h │ │ │ ├── https_health_checks_rest_connection.cc │ │ │ ├── https_health_checks_rest_connection.h │ │ │ ├── internal │ │ │ ├── https_health_checks_option_defaults.cc │ │ │ ├── https_health_checks_option_defaults.h │ │ │ ├── https_health_checks_rest_connection_impl.cc │ │ │ ├── https_health_checks_rest_connection_impl.h │ │ │ ├── https_health_checks_rest_logging_decorator.cc │ │ │ ├── https_health_checks_rest_logging_decorator.h │ │ │ ├── https_health_checks_rest_metadata_decorator.cc │ │ │ ├── https_health_checks_rest_metadata_decorator.h │ │ │ ├── https_health_checks_rest_stub.cc │ │ │ ├── https_health_checks_rest_stub.h │ │ │ ├── https_health_checks_rest_stub_factory.cc │ │ │ ├── https_health_checks_rest_stub_factory.h │ │ │ ├── https_health_checks_retry_traits.h │ │ │ ├── https_health_checks_sources.cc │ │ │ ├── https_health_checks_tracing_connection.cc │ │ │ └── https_health_checks_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_https_health_checks_connection.h │ │ │ └── samples │ │ │ └── https_health_checks_client_samples.cc │ ├── image_family_views │ │ └── v1 │ │ │ ├── image_family_views_client.cc │ │ │ ├── image_family_views_client.h │ │ │ ├── image_family_views_connection.cc │ │ │ ├── image_family_views_connection.h │ │ │ ├── image_family_views_connection_idempotency_policy.cc │ │ │ ├── image_family_views_connection_idempotency_policy.h │ │ │ ├── image_family_views_options.h │ │ │ ├── image_family_views_proto_export.h │ │ │ ├── image_family_views_rest_connection.cc │ │ │ ├── image_family_views_rest_connection.h │ │ │ ├── internal │ │ │ ├── image_family_views_option_defaults.cc │ │ │ ├── image_family_views_option_defaults.h │ │ │ ├── image_family_views_rest_connection_impl.cc │ │ │ ├── image_family_views_rest_connection_impl.h │ │ │ ├── image_family_views_rest_logging_decorator.cc │ │ │ ├── image_family_views_rest_logging_decorator.h │ │ │ ├── image_family_views_rest_metadata_decorator.cc │ │ │ ├── image_family_views_rest_metadata_decorator.h │ │ │ ├── image_family_views_rest_stub.cc │ │ │ ├── image_family_views_rest_stub.h │ │ │ ├── image_family_views_rest_stub_factory.cc │ │ │ ├── image_family_views_rest_stub_factory.h │ │ │ ├── image_family_views_retry_traits.h │ │ │ ├── image_family_views_sources.cc │ │ │ ├── image_family_views_tracing_connection.cc │ │ │ └── image_family_views_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_image_family_views_connection.h │ │ │ └── samples │ │ │ └── image_family_views_client_samples.cc │ ├── images │ │ └── v1 │ │ │ ├── images_client.cc │ │ │ ├── images_client.h │ │ │ ├── images_connection.cc │ │ │ ├── images_connection.h │ │ │ ├── images_connection_idempotency_policy.cc │ │ │ ├── images_connection_idempotency_policy.h │ │ │ ├── images_options.h │ │ │ ├── images_proto_export.h │ │ │ ├── images_rest_connection.cc │ │ │ ├── images_rest_connection.h │ │ │ ├── internal │ │ │ ├── images_option_defaults.cc │ │ │ ├── images_option_defaults.h │ │ │ ├── images_rest_connection_impl.cc │ │ │ ├── images_rest_connection_impl.h │ │ │ ├── images_rest_logging_decorator.cc │ │ │ ├── images_rest_logging_decorator.h │ │ │ ├── images_rest_metadata_decorator.cc │ │ │ ├── images_rest_metadata_decorator.h │ │ │ ├── images_rest_stub.cc │ │ │ ├── images_rest_stub.h │ │ │ ├── images_rest_stub_factory.cc │ │ │ ├── images_rest_stub_factory.h │ │ │ ├── images_retry_traits.h │ │ │ ├── images_sources.cc │ │ │ ├── images_tracing_connection.cc │ │ │ └── images_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_images_connection.h │ │ │ └── samples │ │ │ └── images_client_samples.cc │ ├── instance_group_manager_resize_requests │ │ └── v1 │ │ │ ├── instance_group_manager_resize_requests_client.cc │ │ │ ├── instance_group_manager_resize_requests_client.h │ │ │ ├── instance_group_manager_resize_requests_connection.cc │ │ │ ├── instance_group_manager_resize_requests_connection.h │ │ │ ├── instance_group_manager_resize_requests_connection_idempotency_policy.cc │ │ │ ├── instance_group_manager_resize_requests_connection_idempotency_policy.h │ │ │ ├── instance_group_manager_resize_requests_options.h │ │ │ ├── instance_group_manager_resize_requests_proto_export.h │ │ │ ├── instance_group_manager_resize_requests_rest_connection.cc │ │ │ ├── instance_group_manager_resize_requests_rest_connection.h │ │ │ ├── internal │ │ │ ├── instance_group_manager_resize_requests_option_defaults.cc │ │ │ ├── instance_group_manager_resize_requests_option_defaults.h │ │ │ ├── instance_group_manager_resize_requests_rest_connection_impl.cc │ │ │ ├── instance_group_manager_resize_requests_rest_connection_impl.h │ │ │ ├── instance_group_manager_resize_requests_rest_logging_decorator.cc │ │ │ ├── instance_group_manager_resize_requests_rest_logging_decorator.h │ │ │ ├── instance_group_manager_resize_requests_rest_metadata_decorator.cc │ │ │ ├── instance_group_manager_resize_requests_rest_metadata_decorator.h │ │ │ ├── instance_group_manager_resize_requests_rest_stub.cc │ │ │ ├── instance_group_manager_resize_requests_rest_stub.h │ │ │ ├── instance_group_manager_resize_requests_rest_stub_factory.cc │ │ │ ├── instance_group_manager_resize_requests_rest_stub_factory.h │ │ │ ├── instance_group_manager_resize_requests_retry_traits.h │ │ │ ├── instance_group_manager_resize_requests_sources.cc │ │ │ ├── instance_group_manager_resize_requests_tracing_connection.cc │ │ │ └── instance_group_manager_resize_requests_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_instance_group_manager_resize_requests_connection.h │ │ │ └── samples │ │ │ └── instance_group_manager_resize_requests_client_samples.cc │ ├── instance_group_managers │ │ └── v1 │ │ │ ├── instance_group_managers_client.cc │ │ │ ├── instance_group_managers_client.h │ │ │ ├── instance_group_managers_connection.cc │ │ │ ├── instance_group_managers_connection.h │ │ │ ├── instance_group_managers_connection_idempotency_policy.cc │ │ │ ├── instance_group_managers_connection_idempotency_policy.h │ │ │ ├── instance_group_managers_options.h │ │ │ ├── instance_group_managers_proto_export.h │ │ │ ├── instance_group_managers_rest_connection.cc │ │ │ ├── instance_group_managers_rest_connection.h │ │ │ ├── internal │ │ │ ├── instance_group_managers_option_defaults.cc │ │ │ ├── instance_group_managers_option_defaults.h │ │ │ ├── instance_group_managers_rest_connection_impl.cc │ │ │ ├── instance_group_managers_rest_connection_impl.h │ │ │ ├── instance_group_managers_rest_logging_decorator.cc │ │ │ ├── instance_group_managers_rest_logging_decorator.h │ │ │ ├── instance_group_managers_rest_metadata_decorator.cc │ │ │ ├── instance_group_managers_rest_metadata_decorator.h │ │ │ ├── instance_group_managers_rest_stub.cc │ │ │ ├── instance_group_managers_rest_stub.h │ │ │ ├── instance_group_managers_rest_stub_factory.cc │ │ │ ├── instance_group_managers_rest_stub_factory.h │ │ │ ├── instance_group_managers_retry_traits.h │ │ │ ├── instance_group_managers_sources.cc │ │ │ ├── instance_group_managers_tracing_connection.cc │ │ │ └── instance_group_managers_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_instance_group_managers_connection.h │ │ │ └── samples │ │ │ └── instance_group_managers_client_samples.cc │ ├── instance_groups │ │ └── v1 │ │ │ ├── instance_groups_client.cc │ │ │ ├── instance_groups_client.h │ │ │ ├── instance_groups_connection.cc │ │ │ ├── instance_groups_connection.h │ │ │ ├── instance_groups_connection_idempotency_policy.cc │ │ │ ├── instance_groups_connection_idempotency_policy.h │ │ │ ├── instance_groups_options.h │ │ │ ├── instance_groups_proto_export.h │ │ │ ├── instance_groups_rest_connection.cc │ │ │ ├── instance_groups_rest_connection.h │ │ │ ├── internal │ │ │ ├── instance_groups_option_defaults.cc │ │ │ ├── instance_groups_option_defaults.h │ │ │ ├── instance_groups_rest_connection_impl.cc │ │ │ ├── instance_groups_rest_connection_impl.h │ │ │ ├── instance_groups_rest_logging_decorator.cc │ │ │ ├── instance_groups_rest_logging_decorator.h │ │ │ ├── instance_groups_rest_metadata_decorator.cc │ │ │ ├── instance_groups_rest_metadata_decorator.h │ │ │ ├── instance_groups_rest_stub.cc │ │ │ ├── instance_groups_rest_stub.h │ │ │ ├── instance_groups_rest_stub_factory.cc │ │ │ ├── instance_groups_rest_stub_factory.h │ │ │ ├── instance_groups_retry_traits.h │ │ │ ├── instance_groups_sources.cc │ │ │ ├── instance_groups_tracing_connection.cc │ │ │ └── instance_groups_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_instance_groups_connection.h │ │ │ └── samples │ │ │ └── instance_groups_client_samples.cc │ ├── instance_settings │ │ └── v1 │ │ │ ├── instance_settings_client.cc │ │ │ ├── instance_settings_client.h │ │ │ ├── instance_settings_connection.cc │ │ │ ├── instance_settings_connection.h │ │ │ ├── instance_settings_connection_idempotency_policy.cc │ │ │ ├── instance_settings_connection_idempotency_policy.h │ │ │ ├── instance_settings_options.h │ │ │ ├── instance_settings_proto_export.h │ │ │ ├── instance_settings_rest_connection.cc │ │ │ ├── instance_settings_rest_connection.h │ │ │ ├── internal │ │ │ ├── instance_settings_option_defaults.cc │ │ │ ├── instance_settings_option_defaults.h │ │ │ ├── instance_settings_rest_connection_impl.cc │ │ │ ├── instance_settings_rest_connection_impl.h │ │ │ ├── instance_settings_rest_logging_decorator.cc │ │ │ ├── instance_settings_rest_logging_decorator.h │ │ │ ├── instance_settings_rest_metadata_decorator.cc │ │ │ ├── instance_settings_rest_metadata_decorator.h │ │ │ ├── instance_settings_rest_stub.cc │ │ │ ├── instance_settings_rest_stub.h │ │ │ ├── instance_settings_rest_stub_factory.cc │ │ │ ├── instance_settings_rest_stub_factory.h │ │ │ ├── instance_settings_retry_traits.h │ │ │ ├── instance_settings_sources.cc │ │ │ ├── instance_settings_tracing_connection.cc │ │ │ └── instance_settings_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_instance_settings_connection.h │ │ │ └── samples │ │ │ └── instance_settings_client_samples.cc │ ├── instance_templates │ │ └── v1 │ │ │ ├── instance_templates_client.cc │ │ │ ├── instance_templates_client.h │ │ │ ├── instance_templates_connection.cc │ │ │ ├── instance_templates_connection.h │ │ │ ├── instance_templates_connection_idempotency_policy.cc │ │ │ ├── instance_templates_connection_idempotency_policy.h │ │ │ ├── instance_templates_options.h │ │ │ ├── instance_templates_proto_export.h │ │ │ ├── instance_templates_rest_connection.cc │ │ │ ├── instance_templates_rest_connection.h │ │ │ ├── internal │ │ │ ├── instance_templates_option_defaults.cc │ │ │ ├── instance_templates_option_defaults.h │ │ │ ├── instance_templates_rest_connection_impl.cc │ │ │ ├── instance_templates_rest_connection_impl.h │ │ │ ├── instance_templates_rest_logging_decorator.cc │ │ │ ├── instance_templates_rest_logging_decorator.h │ │ │ ├── instance_templates_rest_metadata_decorator.cc │ │ │ ├── instance_templates_rest_metadata_decorator.h │ │ │ ├── instance_templates_rest_stub.cc │ │ │ ├── instance_templates_rest_stub.h │ │ │ ├── instance_templates_rest_stub_factory.cc │ │ │ ├── instance_templates_rest_stub_factory.h │ │ │ ├── instance_templates_retry_traits.h │ │ │ ├── instance_templates_sources.cc │ │ │ ├── instance_templates_tracing_connection.cc │ │ │ └── instance_templates_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_instance_templates_connection.h │ │ │ └── samples │ │ │ └── instance_templates_client_samples.cc │ ├── instances │ │ └── v1 │ │ │ ├── instances_client.cc │ │ │ ├── instances_client.h │ │ │ ├── instances_connection.cc │ │ │ ├── instances_connection.h │ │ │ ├── instances_connection_idempotency_policy.cc │ │ │ ├── instances_connection_idempotency_policy.h │ │ │ ├── instances_options.h │ │ │ ├── instances_proto_export.h │ │ │ ├── instances_rest_connection.cc │ │ │ ├── instances_rest_connection.h │ │ │ ├── internal │ │ │ ├── instances_option_defaults.cc │ │ │ ├── instances_option_defaults.h │ │ │ ├── instances_rest_connection_impl.cc │ │ │ ├── instances_rest_connection_impl.h │ │ │ ├── instances_rest_logging_decorator.cc │ │ │ ├── instances_rest_logging_decorator.h │ │ │ ├── instances_rest_metadata_decorator.cc │ │ │ ├── instances_rest_metadata_decorator.h │ │ │ ├── instances_rest_stub.cc │ │ │ ├── instances_rest_stub.h │ │ │ ├── instances_rest_stub_factory.cc │ │ │ ├── instances_rest_stub_factory.h │ │ │ ├── instances_retry_traits.h │ │ │ ├── instances_sources.cc │ │ │ ├── instances_tracing_connection.cc │ │ │ └── instances_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_instances_connection.h │ │ │ └── samples │ │ │ └── instances_client_samples.cc │ ├── instant_snapshots │ │ └── v1 │ │ │ ├── instant_snapshots_client.cc │ │ │ ├── instant_snapshots_client.h │ │ │ ├── instant_snapshots_connection.cc │ │ │ ├── instant_snapshots_connection.h │ │ │ ├── instant_snapshots_connection_idempotency_policy.cc │ │ │ ├── instant_snapshots_connection_idempotency_policy.h │ │ │ ├── instant_snapshots_options.h │ │ │ ├── instant_snapshots_proto_export.h │ │ │ ├── instant_snapshots_rest_connection.cc │ │ │ ├── instant_snapshots_rest_connection.h │ │ │ ├── internal │ │ │ ├── instant_snapshots_option_defaults.cc │ │ │ ├── instant_snapshots_option_defaults.h │ │ │ ├── instant_snapshots_rest_connection_impl.cc │ │ │ ├── instant_snapshots_rest_connection_impl.h │ │ │ ├── instant_snapshots_rest_logging_decorator.cc │ │ │ ├── instant_snapshots_rest_logging_decorator.h │ │ │ ├── instant_snapshots_rest_metadata_decorator.cc │ │ │ ├── instant_snapshots_rest_metadata_decorator.h │ │ │ ├── instant_snapshots_rest_stub.cc │ │ │ ├── instant_snapshots_rest_stub.h │ │ │ ├── instant_snapshots_rest_stub_factory.cc │ │ │ ├── instant_snapshots_rest_stub_factory.h │ │ │ ├── instant_snapshots_retry_traits.h │ │ │ ├── instant_snapshots_sources.cc │ │ │ ├── instant_snapshots_tracing_connection.cc │ │ │ └── instant_snapshots_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_instant_snapshots_connection.h │ │ │ └── samples │ │ │ └── instant_snapshots_client_samples.cc │ ├── integration_tests │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ └── compute_integration_test.cc │ ├── interconnect_attachment_groups │ │ └── v1 │ │ │ ├── interconnect_attachment_groups_client.cc │ │ │ ├── interconnect_attachment_groups_client.h │ │ │ ├── interconnect_attachment_groups_connection.cc │ │ │ ├── interconnect_attachment_groups_connection.h │ │ │ ├── interconnect_attachment_groups_connection_idempotency_policy.cc │ │ │ ├── interconnect_attachment_groups_connection_idempotency_policy.h │ │ │ ├── interconnect_attachment_groups_options.h │ │ │ ├── interconnect_attachment_groups_proto_export.h │ │ │ ├── interconnect_attachment_groups_rest_connection.cc │ │ │ ├── interconnect_attachment_groups_rest_connection.h │ │ │ ├── internal │ │ │ ├── interconnect_attachment_groups_option_defaults.cc │ │ │ ├── interconnect_attachment_groups_option_defaults.h │ │ │ ├── interconnect_attachment_groups_rest_connection_impl.cc │ │ │ ├── interconnect_attachment_groups_rest_connection_impl.h │ │ │ ├── interconnect_attachment_groups_rest_logging_decorator.cc │ │ │ ├── interconnect_attachment_groups_rest_logging_decorator.h │ │ │ ├── interconnect_attachment_groups_rest_metadata_decorator.cc │ │ │ ├── interconnect_attachment_groups_rest_metadata_decorator.h │ │ │ ├── interconnect_attachment_groups_rest_stub.cc │ │ │ ├── interconnect_attachment_groups_rest_stub.h │ │ │ ├── interconnect_attachment_groups_rest_stub_factory.cc │ │ │ ├── interconnect_attachment_groups_rest_stub_factory.h │ │ │ ├── interconnect_attachment_groups_retry_traits.h │ │ │ ├── interconnect_attachment_groups_sources.cc │ │ │ ├── interconnect_attachment_groups_tracing_connection.cc │ │ │ └── interconnect_attachment_groups_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_interconnect_attachment_groups_connection.h │ │ │ └── samples │ │ │ └── interconnect_attachment_groups_client_samples.cc │ ├── interconnect_attachments │ │ └── v1 │ │ │ ├── interconnect_attachments_client.cc │ │ │ ├── interconnect_attachments_client.h │ │ │ ├── interconnect_attachments_connection.cc │ │ │ ├── interconnect_attachments_connection.h │ │ │ ├── interconnect_attachments_connection_idempotency_policy.cc │ │ │ ├── interconnect_attachments_connection_idempotency_policy.h │ │ │ ├── interconnect_attachments_options.h │ │ │ ├── interconnect_attachments_proto_export.h │ │ │ ├── interconnect_attachments_rest_connection.cc │ │ │ ├── interconnect_attachments_rest_connection.h │ │ │ ├── internal │ │ │ ├── interconnect_attachments_option_defaults.cc │ │ │ ├── interconnect_attachments_option_defaults.h │ │ │ ├── interconnect_attachments_rest_connection_impl.cc │ │ │ ├── interconnect_attachments_rest_connection_impl.h │ │ │ ├── interconnect_attachments_rest_logging_decorator.cc │ │ │ ├── interconnect_attachments_rest_logging_decorator.h │ │ │ ├── interconnect_attachments_rest_metadata_decorator.cc │ │ │ ├── interconnect_attachments_rest_metadata_decorator.h │ │ │ ├── interconnect_attachments_rest_stub.cc │ │ │ ├── interconnect_attachments_rest_stub.h │ │ │ ├── interconnect_attachments_rest_stub_factory.cc │ │ │ ├── interconnect_attachments_rest_stub_factory.h │ │ │ ├── interconnect_attachments_retry_traits.h │ │ │ ├── interconnect_attachments_sources.cc │ │ │ ├── interconnect_attachments_tracing_connection.cc │ │ │ └── interconnect_attachments_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_interconnect_attachments_connection.h │ │ │ └── samples │ │ │ └── interconnect_attachments_client_samples.cc │ ├── interconnect_groups │ │ └── v1 │ │ │ ├── interconnect_groups_client.cc │ │ │ ├── interconnect_groups_client.h │ │ │ ├── interconnect_groups_connection.cc │ │ │ ├── interconnect_groups_connection.h │ │ │ ├── interconnect_groups_connection_idempotency_policy.cc │ │ │ ├── interconnect_groups_connection_idempotency_policy.h │ │ │ ├── interconnect_groups_options.h │ │ │ ├── interconnect_groups_proto_export.h │ │ │ ├── interconnect_groups_rest_connection.cc │ │ │ ├── interconnect_groups_rest_connection.h │ │ │ ├── internal │ │ │ ├── interconnect_groups_option_defaults.cc │ │ │ ├── interconnect_groups_option_defaults.h │ │ │ ├── interconnect_groups_rest_connection_impl.cc │ │ │ ├── interconnect_groups_rest_connection_impl.h │ │ │ ├── interconnect_groups_rest_logging_decorator.cc │ │ │ ├── interconnect_groups_rest_logging_decorator.h │ │ │ ├── interconnect_groups_rest_metadata_decorator.cc │ │ │ ├── interconnect_groups_rest_metadata_decorator.h │ │ │ ├── interconnect_groups_rest_stub.cc │ │ │ ├── interconnect_groups_rest_stub.h │ │ │ ├── interconnect_groups_rest_stub_factory.cc │ │ │ ├── interconnect_groups_rest_stub_factory.h │ │ │ ├── interconnect_groups_retry_traits.h │ │ │ ├── interconnect_groups_sources.cc │ │ │ ├── interconnect_groups_tracing_connection.cc │ │ │ └── interconnect_groups_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_interconnect_groups_connection.h │ │ │ └── samples │ │ │ └── interconnect_groups_client_samples.cc │ ├── interconnect_locations │ │ └── v1 │ │ │ ├── interconnect_locations_client.cc │ │ │ ├── interconnect_locations_client.h │ │ │ ├── interconnect_locations_connection.cc │ │ │ ├── interconnect_locations_connection.h │ │ │ ├── interconnect_locations_connection_idempotency_policy.cc │ │ │ ├── interconnect_locations_connection_idempotency_policy.h │ │ │ ├── interconnect_locations_options.h │ │ │ ├── interconnect_locations_proto_export.h │ │ │ ├── interconnect_locations_rest_connection.cc │ │ │ ├── interconnect_locations_rest_connection.h │ │ │ ├── internal │ │ │ ├── interconnect_locations_option_defaults.cc │ │ │ ├── interconnect_locations_option_defaults.h │ │ │ ├── interconnect_locations_rest_connection_impl.cc │ │ │ ├── interconnect_locations_rest_connection_impl.h │ │ │ ├── interconnect_locations_rest_logging_decorator.cc │ │ │ ├── interconnect_locations_rest_logging_decorator.h │ │ │ ├── interconnect_locations_rest_metadata_decorator.cc │ │ │ ├── interconnect_locations_rest_metadata_decorator.h │ │ │ ├── interconnect_locations_rest_stub.cc │ │ │ ├── interconnect_locations_rest_stub.h │ │ │ ├── interconnect_locations_rest_stub_factory.cc │ │ │ ├── interconnect_locations_rest_stub_factory.h │ │ │ ├── interconnect_locations_retry_traits.h │ │ │ ├── interconnect_locations_sources.cc │ │ │ ├── interconnect_locations_tracing_connection.cc │ │ │ └── interconnect_locations_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_interconnect_locations_connection.h │ │ │ └── samples │ │ │ └── interconnect_locations_client_samples.cc │ ├── interconnect_remote_locations │ │ └── v1 │ │ │ ├── interconnect_remote_locations_client.cc │ │ │ ├── interconnect_remote_locations_client.h │ │ │ ├── interconnect_remote_locations_connection.cc │ │ │ ├── interconnect_remote_locations_connection.h │ │ │ ├── interconnect_remote_locations_connection_idempotency_policy.cc │ │ │ ├── interconnect_remote_locations_connection_idempotency_policy.h │ │ │ ├── interconnect_remote_locations_options.h │ │ │ ├── interconnect_remote_locations_proto_export.h │ │ │ ├── interconnect_remote_locations_rest_connection.cc │ │ │ ├── interconnect_remote_locations_rest_connection.h │ │ │ ├── internal │ │ │ ├── interconnect_remote_locations_option_defaults.cc │ │ │ ├── interconnect_remote_locations_option_defaults.h │ │ │ ├── interconnect_remote_locations_rest_connection_impl.cc │ │ │ ├── interconnect_remote_locations_rest_connection_impl.h │ │ │ ├── interconnect_remote_locations_rest_logging_decorator.cc │ │ │ ├── interconnect_remote_locations_rest_logging_decorator.h │ │ │ ├── interconnect_remote_locations_rest_metadata_decorator.cc │ │ │ ├── interconnect_remote_locations_rest_metadata_decorator.h │ │ │ ├── interconnect_remote_locations_rest_stub.cc │ │ │ ├── interconnect_remote_locations_rest_stub.h │ │ │ ├── interconnect_remote_locations_rest_stub_factory.cc │ │ │ ├── interconnect_remote_locations_rest_stub_factory.h │ │ │ ├── interconnect_remote_locations_retry_traits.h │ │ │ ├── interconnect_remote_locations_sources.cc │ │ │ ├── interconnect_remote_locations_tracing_connection.cc │ │ │ └── interconnect_remote_locations_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_interconnect_remote_locations_connection.h │ │ │ └── samples │ │ │ └── interconnect_remote_locations_client_samples.cc │ ├── interconnects │ │ └── v1 │ │ │ ├── interconnects_client.cc │ │ │ ├── interconnects_client.h │ │ │ ├── interconnects_connection.cc │ │ │ ├── interconnects_connection.h │ │ │ ├── interconnects_connection_idempotency_policy.cc │ │ │ ├── interconnects_connection_idempotency_policy.h │ │ │ ├── interconnects_options.h │ │ │ ├── interconnects_proto_export.h │ │ │ ├── interconnects_rest_connection.cc │ │ │ ├── interconnects_rest_connection.h │ │ │ ├── internal │ │ │ ├── interconnects_option_defaults.cc │ │ │ ├── interconnects_option_defaults.h │ │ │ ├── interconnects_rest_connection_impl.cc │ │ │ ├── interconnects_rest_connection_impl.h │ │ │ ├── interconnects_rest_logging_decorator.cc │ │ │ ├── interconnects_rest_logging_decorator.h │ │ │ ├── interconnects_rest_metadata_decorator.cc │ │ │ ├── interconnects_rest_metadata_decorator.h │ │ │ ├── interconnects_rest_stub.cc │ │ │ ├── interconnects_rest_stub.h │ │ │ ├── interconnects_rest_stub_factory.cc │ │ │ ├── interconnects_rest_stub_factory.h │ │ │ ├── interconnects_retry_traits.h │ │ │ ├── interconnects_sources.cc │ │ │ ├── interconnects_tracing_connection.cc │ │ │ └── interconnects_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_interconnects_connection.h │ │ │ └── samples │ │ │ └── interconnects_client_samples.cc │ ├── license_codes │ │ └── v1 │ │ │ ├── internal │ │ │ ├── license_codes_option_defaults.cc │ │ │ ├── license_codes_option_defaults.h │ │ │ ├── license_codes_rest_connection_impl.cc │ │ │ ├── license_codes_rest_connection_impl.h │ │ │ ├── license_codes_rest_logging_decorator.cc │ │ │ ├── license_codes_rest_logging_decorator.h │ │ │ ├── license_codes_rest_metadata_decorator.cc │ │ │ ├── license_codes_rest_metadata_decorator.h │ │ │ ├── license_codes_rest_stub.cc │ │ │ ├── license_codes_rest_stub.h │ │ │ ├── license_codes_rest_stub_factory.cc │ │ │ ├── license_codes_rest_stub_factory.h │ │ │ ├── license_codes_retry_traits.h │ │ │ ├── license_codes_sources.cc │ │ │ ├── license_codes_tracing_connection.cc │ │ │ └── license_codes_tracing_connection.h │ │ │ ├── license_codes_client.cc │ │ │ ├── license_codes_client.h │ │ │ ├── license_codes_connection.cc │ │ │ ├── license_codes_connection.h │ │ │ ├── license_codes_connection_idempotency_policy.cc │ │ │ ├── license_codes_connection_idempotency_policy.h │ │ │ ├── license_codes_options.h │ │ │ ├── license_codes_proto_export.h │ │ │ ├── license_codes_rest_connection.cc │ │ │ ├── license_codes_rest_connection.h │ │ │ ├── mocks │ │ │ └── mock_license_codes_connection.h │ │ │ └── samples │ │ │ └── license_codes_client_samples.cc │ ├── licenses │ │ └── v1 │ │ │ ├── internal │ │ │ ├── licenses_option_defaults.cc │ │ │ ├── licenses_option_defaults.h │ │ │ ├── licenses_rest_connection_impl.cc │ │ │ ├── licenses_rest_connection_impl.h │ │ │ ├── licenses_rest_logging_decorator.cc │ │ │ ├── licenses_rest_logging_decorator.h │ │ │ ├── licenses_rest_metadata_decorator.cc │ │ │ ├── licenses_rest_metadata_decorator.h │ │ │ ├── licenses_rest_stub.cc │ │ │ ├── licenses_rest_stub.h │ │ │ ├── licenses_rest_stub_factory.cc │ │ │ ├── licenses_rest_stub_factory.h │ │ │ ├── licenses_retry_traits.h │ │ │ ├── licenses_sources.cc │ │ │ ├── licenses_tracing_connection.cc │ │ │ └── licenses_tracing_connection.h │ │ │ ├── licenses_client.cc │ │ │ ├── licenses_client.h │ │ │ ├── licenses_connection.cc │ │ │ ├── licenses_connection.h │ │ │ ├── licenses_connection_idempotency_policy.cc │ │ │ ├── licenses_connection_idempotency_policy.h │ │ │ ├── licenses_options.h │ │ │ ├── licenses_proto_export.h │ │ │ ├── licenses_rest_connection.cc │ │ │ ├── licenses_rest_connection.h │ │ │ ├── mocks │ │ │ └── mock_licenses_connection.h │ │ │ └── samples │ │ │ └── licenses_client_samples.cc │ ├── machine_images │ │ └── v1 │ │ │ ├── internal │ │ │ ├── machine_images_option_defaults.cc │ │ │ ├── machine_images_option_defaults.h │ │ │ ├── machine_images_rest_connection_impl.cc │ │ │ ├── machine_images_rest_connection_impl.h │ │ │ ├── machine_images_rest_logging_decorator.cc │ │ │ ├── machine_images_rest_logging_decorator.h │ │ │ ├── machine_images_rest_metadata_decorator.cc │ │ │ ├── machine_images_rest_metadata_decorator.h │ │ │ ├── machine_images_rest_stub.cc │ │ │ ├── machine_images_rest_stub.h │ │ │ ├── machine_images_rest_stub_factory.cc │ │ │ ├── machine_images_rest_stub_factory.h │ │ │ ├── machine_images_retry_traits.h │ │ │ ├── machine_images_sources.cc │ │ │ ├── machine_images_tracing_connection.cc │ │ │ └── machine_images_tracing_connection.h │ │ │ ├── machine_images_client.cc │ │ │ ├── machine_images_client.h │ │ │ ├── machine_images_connection.cc │ │ │ ├── machine_images_connection.h │ │ │ ├── machine_images_connection_idempotency_policy.cc │ │ │ ├── machine_images_connection_idempotency_policy.h │ │ │ ├── machine_images_options.h │ │ │ ├── machine_images_proto_export.h │ │ │ ├── machine_images_rest_connection.cc │ │ │ ├── machine_images_rest_connection.h │ │ │ ├── mocks │ │ │ └── mock_machine_images_connection.h │ │ │ └── samples │ │ │ └── machine_images_client_samples.cc │ ├── machine_types │ │ └── v1 │ │ │ ├── internal │ │ │ ├── machine_types_option_defaults.cc │ │ │ ├── machine_types_option_defaults.h │ │ │ ├── machine_types_rest_connection_impl.cc │ │ │ ├── machine_types_rest_connection_impl.h │ │ │ ├── machine_types_rest_logging_decorator.cc │ │ │ ├── machine_types_rest_logging_decorator.h │ │ │ ├── machine_types_rest_metadata_decorator.cc │ │ │ ├── machine_types_rest_metadata_decorator.h │ │ │ ├── machine_types_rest_stub.cc │ │ │ ├── machine_types_rest_stub.h │ │ │ ├── machine_types_rest_stub_factory.cc │ │ │ ├── machine_types_rest_stub_factory.h │ │ │ ├── machine_types_retry_traits.h │ │ │ ├── machine_types_sources.cc │ │ │ ├── machine_types_tracing_connection.cc │ │ │ └── machine_types_tracing_connection.h │ │ │ ├── machine_types_client.cc │ │ │ ├── machine_types_client.h │ │ │ ├── machine_types_connection.cc │ │ │ ├── machine_types_connection.h │ │ │ ├── machine_types_connection_idempotency_policy.cc │ │ │ ├── machine_types_connection_idempotency_policy.h │ │ │ ├── machine_types_options.h │ │ │ ├── machine_types_proto_export.h │ │ │ ├── machine_types_rest_connection.cc │ │ │ ├── machine_types_rest_connection.h │ │ │ ├── mocks │ │ │ └── mock_machine_types_connection.h │ │ │ └── samples │ │ │ └── machine_types_client_samples.cc │ ├── network_attachments │ │ └── v1 │ │ │ ├── internal │ │ │ ├── network_attachments_option_defaults.cc │ │ │ ├── network_attachments_option_defaults.h │ │ │ ├── network_attachments_rest_connection_impl.cc │ │ │ ├── network_attachments_rest_connection_impl.h │ │ │ ├── network_attachments_rest_logging_decorator.cc │ │ │ ├── network_attachments_rest_logging_decorator.h │ │ │ ├── network_attachments_rest_metadata_decorator.cc │ │ │ ├── network_attachments_rest_metadata_decorator.h │ │ │ ├── network_attachments_rest_stub.cc │ │ │ ├── network_attachments_rest_stub.h │ │ │ ├── network_attachments_rest_stub_factory.cc │ │ │ ├── network_attachments_rest_stub_factory.h │ │ │ ├── network_attachments_retry_traits.h │ │ │ ├── network_attachments_sources.cc │ │ │ ├── network_attachments_tracing_connection.cc │ │ │ └── network_attachments_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_network_attachments_connection.h │ │ │ ├── network_attachments_client.cc │ │ │ ├── network_attachments_client.h │ │ │ ├── network_attachments_connection.cc │ │ │ ├── network_attachments_connection.h │ │ │ ├── network_attachments_connection_idempotency_policy.cc │ │ │ ├── network_attachments_connection_idempotency_policy.h │ │ │ ├── network_attachments_options.h │ │ │ ├── network_attachments_proto_export.h │ │ │ ├── network_attachments_rest_connection.cc │ │ │ ├── network_attachments_rest_connection.h │ │ │ └── samples │ │ │ └── network_attachments_client_samples.cc │ ├── network_edge_security_services │ │ └── v1 │ │ │ ├── internal │ │ │ ├── network_edge_security_services_option_defaults.cc │ │ │ ├── network_edge_security_services_option_defaults.h │ │ │ ├── network_edge_security_services_rest_connection_impl.cc │ │ │ ├── network_edge_security_services_rest_connection_impl.h │ │ │ ├── network_edge_security_services_rest_logging_decorator.cc │ │ │ ├── network_edge_security_services_rest_logging_decorator.h │ │ │ ├── network_edge_security_services_rest_metadata_decorator.cc │ │ │ ├── network_edge_security_services_rest_metadata_decorator.h │ │ │ ├── network_edge_security_services_rest_stub.cc │ │ │ ├── network_edge_security_services_rest_stub.h │ │ │ ├── network_edge_security_services_rest_stub_factory.cc │ │ │ ├── network_edge_security_services_rest_stub_factory.h │ │ │ ├── network_edge_security_services_retry_traits.h │ │ │ ├── network_edge_security_services_sources.cc │ │ │ ├── network_edge_security_services_tracing_connection.cc │ │ │ └── network_edge_security_services_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_network_edge_security_services_connection.h │ │ │ ├── network_edge_security_services_client.cc │ │ │ ├── network_edge_security_services_client.h │ │ │ ├── network_edge_security_services_connection.cc │ │ │ ├── network_edge_security_services_connection.h │ │ │ ├── network_edge_security_services_connection_idempotency_policy.cc │ │ │ ├── network_edge_security_services_connection_idempotency_policy.h │ │ │ ├── network_edge_security_services_options.h │ │ │ ├── network_edge_security_services_proto_export.h │ │ │ ├── network_edge_security_services_rest_connection.cc │ │ │ ├── network_edge_security_services_rest_connection.h │ │ │ └── samples │ │ │ └── network_edge_security_services_client_samples.cc │ ├── network_endpoint_groups │ │ └── v1 │ │ │ ├── internal │ │ │ ├── network_endpoint_groups_option_defaults.cc │ │ │ ├── network_endpoint_groups_option_defaults.h │ │ │ ├── network_endpoint_groups_rest_connection_impl.cc │ │ │ ├── network_endpoint_groups_rest_connection_impl.h │ │ │ ├── network_endpoint_groups_rest_logging_decorator.cc │ │ │ ├── network_endpoint_groups_rest_logging_decorator.h │ │ │ ├── network_endpoint_groups_rest_metadata_decorator.cc │ │ │ ├── network_endpoint_groups_rest_metadata_decorator.h │ │ │ ├── network_endpoint_groups_rest_stub.cc │ │ │ ├── network_endpoint_groups_rest_stub.h │ │ │ ├── network_endpoint_groups_rest_stub_factory.cc │ │ │ ├── network_endpoint_groups_rest_stub_factory.h │ │ │ ├── network_endpoint_groups_retry_traits.h │ │ │ ├── network_endpoint_groups_sources.cc │ │ │ ├── network_endpoint_groups_tracing_connection.cc │ │ │ └── network_endpoint_groups_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_network_endpoint_groups_connection.h │ │ │ ├── network_endpoint_groups_client.cc │ │ │ ├── network_endpoint_groups_client.h │ │ │ ├── network_endpoint_groups_connection.cc │ │ │ ├── network_endpoint_groups_connection.h │ │ │ ├── network_endpoint_groups_connection_idempotency_policy.cc │ │ │ ├── network_endpoint_groups_connection_idempotency_policy.h │ │ │ ├── network_endpoint_groups_options.h │ │ │ ├── network_endpoint_groups_proto_export.h │ │ │ ├── network_endpoint_groups_rest_connection.cc │ │ │ ├── network_endpoint_groups_rest_connection.h │ │ │ └── samples │ │ │ └── network_endpoint_groups_client_samples.cc │ ├── network_firewall_policies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── network_firewall_policies_option_defaults.cc │ │ │ ├── network_firewall_policies_option_defaults.h │ │ │ ├── network_firewall_policies_rest_connection_impl.cc │ │ │ ├── network_firewall_policies_rest_connection_impl.h │ │ │ ├── network_firewall_policies_rest_logging_decorator.cc │ │ │ ├── network_firewall_policies_rest_logging_decorator.h │ │ │ ├── network_firewall_policies_rest_metadata_decorator.cc │ │ │ ├── network_firewall_policies_rest_metadata_decorator.h │ │ │ ├── network_firewall_policies_rest_stub.cc │ │ │ ├── network_firewall_policies_rest_stub.h │ │ │ ├── network_firewall_policies_rest_stub_factory.cc │ │ │ ├── network_firewall_policies_rest_stub_factory.h │ │ │ ├── network_firewall_policies_retry_traits.h │ │ │ ├── network_firewall_policies_sources.cc │ │ │ ├── network_firewall_policies_tracing_connection.cc │ │ │ └── network_firewall_policies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_network_firewall_policies_connection.h │ │ │ ├── network_firewall_policies_client.cc │ │ │ ├── network_firewall_policies_client.h │ │ │ ├── network_firewall_policies_connection.cc │ │ │ ├── network_firewall_policies_connection.h │ │ │ ├── network_firewall_policies_connection_idempotency_policy.cc │ │ │ ├── network_firewall_policies_connection_idempotency_policy.h │ │ │ ├── network_firewall_policies_options.h │ │ │ ├── network_firewall_policies_proto_export.h │ │ │ ├── network_firewall_policies_rest_connection.cc │ │ │ ├── network_firewall_policies_rest_connection.h │ │ │ └── samples │ │ │ └── network_firewall_policies_client_samples.cc │ ├── network_profiles │ │ └── v1 │ │ │ ├── internal │ │ │ ├── network_profiles_option_defaults.cc │ │ │ ├── network_profiles_option_defaults.h │ │ │ ├── network_profiles_rest_connection_impl.cc │ │ │ ├── network_profiles_rest_connection_impl.h │ │ │ ├── network_profiles_rest_logging_decorator.cc │ │ │ ├── network_profiles_rest_logging_decorator.h │ │ │ ├── network_profiles_rest_metadata_decorator.cc │ │ │ ├── network_profiles_rest_metadata_decorator.h │ │ │ ├── network_profiles_rest_stub.cc │ │ │ ├── network_profiles_rest_stub.h │ │ │ ├── network_profiles_rest_stub_factory.cc │ │ │ ├── network_profiles_rest_stub_factory.h │ │ │ ├── network_profiles_retry_traits.h │ │ │ ├── network_profiles_sources.cc │ │ │ ├── network_profiles_tracing_connection.cc │ │ │ └── network_profiles_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_network_profiles_connection.h │ │ │ ├── network_profiles_client.cc │ │ │ ├── network_profiles_client.h │ │ │ ├── network_profiles_connection.cc │ │ │ ├── network_profiles_connection.h │ │ │ ├── network_profiles_connection_idempotency_policy.cc │ │ │ ├── network_profiles_connection_idempotency_policy.h │ │ │ ├── network_profiles_options.h │ │ │ ├── network_profiles_proto_export.h │ │ │ ├── network_profiles_rest_connection.cc │ │ │ ├── network_profiles_rest_connection.h │ │ │ └── samples │ │ │ └── network_profiles_client_samples.cc │ ├── networks │ │ └── v1 │ │ │ ├── internal │ │ │ ├── networks_option_defaults.cc │ │ │ ├── networks_option_defaults.h │ │ │ ├── networks_rest_connection_impl.cc │ │ │ ├── networks_rest_connection_impl.h │ │ │ ├── networks_rest_logging_decorator.cc │ │ │ ├── networks_rest_logging_decorator.h │ │ │ ├── networks_rest_metadata_decorator.cc │ │ │ ├── networks_rest_metadata_decorator.h │ │ │ ├── networks_rest_stub.cc │ │ │ ├── networks_rest_stub.h │ │ │ ├── networks_rest_stub_factory.cc │ │ │ ├── networks_rest_stub_factory.h │ │ │ ├── networks_retry_traits.h │ │ │ ├── networks_sources.cc │ │ │ ├── networks_tracing_connection.cc │ │ │ └── networks_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_networks_connection.h │ │ │ ├── networks_client.cc │ │ │ ├── networks_client.h │ │ │ ├── networks_connection.cc │ │ │ ├── networks_connection.h │ │ │ ├── networks_connection_idempotency_policy.cc │ │ │ ├── networks_connection_idempotency_policy.h │ │ │ ├── networks_options.h │ │ │ ├── networks_proto_export.h │ │ │ ├── networks_rest_connection.cc │ │ │ ├── networks_rest_connection.h │ │ │ └── samples │ │ │ └── networks_client_samples.cc │ ├── node_groups │ │ └── v1 │ │ │ ├── internal │ │ │ ├── node_groups_option_defaults.cc │ │ │ ├── node_groups_option_defaults.h │ │ │ ├── node_groups_rest_connection_impl.cc │ │ │ ├── node_groups_rest_connection_impl.h │ │ │ ├── node_groups_rest_logging_decorator.cc │ │ │ ├── node_groups_rest_logging_decorator.h │ │ │ ├── node_groups_rest_metadata_decorator.cc │ │ │ ├── node_groups_rest_metadata_decorator.h │ │ │ ├── node_groups_rest_stub.cc │ │ │ ├── node_groups_rest_stub.h │ │ │ ├── node_groups_rest_stub_factory.cc │ │ │ ├── node_groups_rest_stub_factory.h │ │ │ ├── node_groups_retry_traits.h │ │ │ ├── node_groups_sources.cc │ │ │ ├── node_groups_tracing_connection.cc │ │ │ └── node_groups_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_node_groups_connection.h │ │ │ ├── node_groups_client.cc │ │ │ ├── node_groups_client.h │ │ │ ├── node_groups_connection.cc │ │ │ ├── node_groups_connection.h │ │ │ ├── node_groups_connection_idempotency_policy.cc │ │ │ ├── node_groups_connection_idempotency_policy.h │ │ │ ├── node_groups_options.h │ │ │ ├── node_groups_proto_export.h │ │ │ ├── node_groups_rest_connection.cc │ │ │ ├── node_groups_rest_connection.h │ │ │ └── samples │ │ │ └── node_groups_client_samples.cc │ ├── node_templates │ │ └── v1 │ │ │ ├── internal │ │ │ ├── node_templates_option_defaults.cc │ │ │ ├── node_templates_option_defaults.h │ │ │ ├── node_templates_rest_connection_impl.cc │ │ │ ├── node_templates_rest_connection_impl.h │ │ │ ├── node_templates_rest_logging_decorator.cc │ │ │ ├── node_templates_rest_logging_decorator.h │ │ │ ├── node_templates_rest_metadata_decorator.cc │ │ │ ├── node_templates_rest_metadata_decorator.h │ │ │ ├── node_templates_rest_stub.cc │ │ │ ├── node_templates_rest_stub.h │ │ │ ├── node_templates_rest_stub_factory.cc │ │ │ ├── node_templates_rest_stub_factory.h │ │ │ ├── node_templates_retry_traits.h │ │ │ ├── node_templates_sources.cc │ │ │ ├── node_templates_tracing_connection.cc │ │ │ └── node_templates_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_node_templates_connection.h │ │ │ ├── node_templates_client.cc │ │ │ ├── node_templates_client.h │ │ │ ├── node_templates_connection.cc │ │ │ ├── node_templates_connection.h │ │ │ ├── node_templates_connection_idempotency_policy.cc │ │ │ ├── node_templates_connection_idempotency_policy.h │ │ │ ├── node_templates_options.h │ │ │ ├── node_templates_proto_export.h │ │ │ ├── node_templates_rest_connection.cc │ │ │ ├── node_templates_rest_connection.h │ │ │ └── samples │ │ │ └── node_templates_client_samples.cc │ ├── node_types │ │ └── v1 │ │ │ ├── internal │ │ │ ├── node_types_option_defaults.cc │ │ │ ├── node_types_option_defaults.h │ │ │ ├── node_types_rest_connection_impl.cc │ │ │ ├── node_types_rest_connection_impl.h │ │ │ ├── node_types_rest_logging_decorator.cc │ │ │ ├── node_types_rest_logging_decorator.h │ │ │ ├── node_types_rest_metadata_decorator.cc │ │ │ ├── node_types_rest_metadata_decorator.h │ │ │ ├── node_types_rest_stub.cc │ │ │ ├── node_types_rest_stub.h │ │ │ ├── node_types_rest_stub_factory.cc │ │ │ ├── node_types_rest_stub_factory.h │ │ │ ├── node_types_retry_traits.h │ │ │ ├── node_types_sources.cc │ │ │ ├── node_types_tracing_connection.cc │ │ │ └── node_types_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_node_types_connection.h │ │ │ ├── node_types_client.cc │ │ │ ├── node_types_client.h │ │ │ ├── node_types_connection.cc │ │ │ ├── node_types_connection.h │ │ │ ├── node_types_connection_idempotency_policy.cc │ │ │ ├── node_types_connection_idempotency_policy.h │ │ │ ├── node_types_options.h │ │ │ ├── node_types_proto_export.h │ │ │ ├── node_types_rest_connection.cc │ │ │ ├── node_types_rest_connection.h │ │ │ └── samples │ │ │ └── node_types_client_samples.cc │ ├── packet_mirrorings │ │ └── v1 │ │ │ ├── internal │ │ │ ├── packet_mirrorings_option_defaults.cc │ │ │ ├── packet_mirrorings_option_defaults.h │ │ │ ├── packet_mirrorings_rest_connection_impl.cc │ │ │ ├── packet_mirrorings_rest_connection_impl.h │ │ │ ├── packet_mirrorings_rest_logging_decorator.cc │ │ │ ├── packet_mirrorings_rest_logging_decorator.h │ │ │ ├── packet_mirrorings_rest_metadata_decorator.cc │ │ │ ├── packet_mirrorings_rest_metadata_decorator.h │ │ │ ├── packet_mirrorings_rest_stub.cc │ │ │ ├── packet_mirrorings_rest_stub.h │ │ │ ├── packet_mirrorings_rest_stub_factory.cc │ │ │ ├── packet_mirrorings_rest_stub_factory.h │ │ │ ├── packet_mirrorings_retry_traits.h │ │ │ ├── packet_mirrorings_sources.cc │ │ │ ├── packet_mirrorings_tracing_connection.cc │ │ │ └── packet_mirrorings_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_packet_mirrorings_connection.h │ │ │ ├── packet_mirrorings_client.cc │ │ │ ├── packet_mirrorings_client.h │ │ │ ├── packet_mirrorings_connection.cc │ │ │ ├── packet_mirrorings_connection.h │ │ │ ├── packet_mirrorings_connection_idempotency_policy.cc │ │ │ ├── packet_mirrorings_connection_idempotency_policy.h │ │ │ ├── packet_mirrorings_options.h │ │ │ ├── packet_mirrorings_proto_export.h │ │ │ ├── packet_mirrorings_rest_connection.cc │ │ │ ├── packet_mirrorings_rest_connection.h │ │ │ └── samples │ │ │ └── packet_mirrorings_client_samples.cc │ ├── projects │ │ └── v1 │ │ │ ├── internal │ │ │ ├── projects_option_defaults.cc │ │ │ ├── projects_option_defaults.h │ │ │ ├── projects_rest_connection_impl.cc │ │ │ ├── projects_rest_connection_impl.h │ │ │ ├── projects_rest_logging_decorator.cc │ │ │ ├── projects_rest_logging_decorator.h │ │ │ ├── projects_rest_metadata_decorator.cc │ │ │ ├── projects_rest_metadata_decorator.h │ │ │ ├── projects_rest_stub.cc │ │ │ ├── projects_rest_stub.h │ │ │ ├── projects_rest_stub_factory.cc │ │ │ ├── projects_rest_stub_factory.h │ │ │ ├── projects_retry_traits.h │ │ │ ├── projects_sources.cc │ │ │ ├── projects_tracing_connection.cc │ │ │ └── projects_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_projects_connection.h │ │ │ ├── projects_client.cc │ │ │ ├── projects_client.h │ │ │ ├── projects_connection.cc │ │ │ ├── projects_connection.h │ │ │ ├── projects_connection_idempotency_policy.cc │ │ │ ├── projects_connection_idempotency_policy.h │ │ │ ├── projects_options.h │ │ │ ├── projects_proto_export.h │ │ │ ├── projects_rest_connection.cc │ │ │ ├── projects_rest_connection.h │ │ │ └── samples │ │ │ └── projects_client_samples.cc │ ├── public_advertised_prefixes │ │ └── v1 │ │ │ ├── internal │ │ │ ├── public_advertised_prefixes_option_defaults.cc │ │ │ ├── public_advertised_prefixes_option_defaults.h │ │ │ ├── public_advertised_prefixes_rest_connection_impl.cc │ │ │ ├── public_advertised_prefixes_rest_connection_impl.h │ │ │ ├── public_advertised_prefixes_rest_logging_decorator.cc │ │ │ ├── public_advertised_prefixes_rest_logging_decorator.h │ │ │ ├── public_advertised_prefixes_rest_metadata_decorator.cc │ │ │ ├── public_advertised_prefixes_rest_metadata_decorator.h │ │ │ ├── public_advertised_prefixes_rest_stub.cc │ │ │ ├── public_advertised_prefixes_rest_stub.h │ │ │ ├── public_advertised_prefixes_rest_stub_factory.cc │ │ │ ├── public_advertised_prefixes_rest_stub_factory.h │ │ │ ├── public_advertised_prefixes_retry_traits.h │ │ │ ├── public_advertised_prefixes_sources.cc │ │ │ ├── public_advertised_prefixes_tracing_connection.cc │ │ │ └── public_advertised_prefixes_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_public_advertised_prefixes_connection.h │ │ │ ├── public_advertised_prefixes_client.cc │ │ │ ├── public_advertised_prefixes_client.h │ │ │ ├── public_advertised_prefixes_connection.cc │ │ │ ├── public_advertised_prefixes_connection.h │ │ │ ├── public_advertised_prefixes_connection_idempotency_policy.cc │ │ │ ├── public_advertised_prefixes_connection_idempotency_policy.h │ │ │ ├── public_advertised_prefixes_options.h │ │ │ ├── public_advertised_prefixes_proto_export.h │ │ │ ├── public_advertised_prefixes_rest_connection.cc │ │ │ ├── public_advertised_prefixes_rest_connection.h │ │ │ └── samples │ │ │ └── public_advertised_prefixes_client_samples.cc │ ├── public_delegated_prefixes │ │ └── v1 │ │ │ ├── internal │ │ │ ├── public_delegated_prefixes_option_defaults.cc │ │ │ ├── public_delegated_prefixes_option_defaults.h │ │ │ ├── public_delegated_prefixes_rest_connection_impl.cc │ │ │ ├── public_delegated_prefixes_rest_connection_impl.h │ │ │ ├── public_delegated_prefixes_rest_logging_decorator.cc │ │ │ ├── public_delegated_prefixes_rest_logging_decorator.h │ │ │ ├── public_delegated_prefixes_rest_metadata_decorator.cc │ │ │ ├── public_delegated_prefixes_rest_metadata_decorator.h │ │ │ ├── public_delegated_prefixes_rest_stub.cc │ │ │ ├── public_delegated_prefixes_rest_stub.h │ │ │ ├── public_delegated_prefixes_rest_stub_factory.cc │ │ │ ├── public_delegated_prefixes_rest_stub_factory.h │ │ │ ├── public_delegated_prefixes_retry_traits.h │ │ │ ├── public_delegated_prefixes_sources.cc │ │ │ ├── public_delegated_prefixes_tracing_connection.cc │ │ │ └── public_delegated_prefixes_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_public_delegated_prefixes_connection.h │ │ │ ├── public_delegated_prefixes_client.cc │ │ │ ├── public_delegated_prefixes_client.h │ │ │ ├── public_delegated_prefixes_connection.cc │ │ │ ├── public_delegated_prefixes_connection.h │ │ │ ├── public_delegated_prefixes_connection_idempotency_policy.cc │ │ │ ├── public_delegated_prefixes_connection_idempotency_policy.h │ │ │ ├── public_delegated_prefixes_options.h │ │ │ ├── public_delegated_prefixes_proto_export.h │ │ │ ├── public_delegated_prefixes_rest_connection.cc │ │ │ ├── public_delegated_prefixes_rest_connection.h │ │ │ └── samples │ │ │ └── public_delegated_prefixes_client_samples.cc │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── region_autoscalers │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_autoscalers_option_defaults.cc │ │ │ ├── region_autoscalers_option_defaults.h │ │ │ ├── region_autoscalers_rest_connection_impl.cc │ │ │ ├── region_autoscalers_rest_connection_impl.h │ │ │ ├── region_autoscalers_rest_logging_decorator.cc │ │ │ ├── region_autoscalers_rest_logging_decorator.h │ │ │ ├── region_autoscalers_rest_metadata_decorator.cc │ │ │ ├── region_autoscalers_rest_metadata_decorator.h │ │ │ ├── region_autoscalers_rest_stub.cc │ │ │ ├── region_autoscalers_rest_stub.h │ │ │ ├── region_autoscalers_rest_stub_factory.cc │ │ │ ├── region_autoscalers_rest_stub_factory.h │ │ │ ├── region_autoscalers_retry_traits.h │ │ │ ├── region_autoscalers_sources.cc │ │ │ ├── region_autoscalers_tracing_connection.cc │ │ │ └── region_autoscalers_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_autoscalers_connection.h │ │ │ ├── region_autoscalers_client.cc │ │ │ ├── region_autoscalers_client.h │ │ │ ├── region_autoscalers_connection.cc │ │ │ ├── region_autoscalers_connection.h │ │ │ ├── region_autoscalers_connection_idempotency_policy.cc │ │ │ ├── region_autoscalers_connection_idempotency_policy.h │ │ │ ├── region_autoscalers_options.h │ │ │ ├── region_autoscalers_proto_export.h │ │ │ ├── region_autoscalers_rest_connection.cc │ │ │ ├── region_autoscalers_rest_connection.h │ │ │ └── samples │ │ │ └── region_autoscalers_client_samples.cc │ ├── region_backend_services │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_backend_services_option_defaults.cc │ │ │ ├── region_backend_services_option_defaults.h │ │ │ ├── region_backend_services_rest_connection_impl.cc │ │ │ ├── region_backend_services_rest_connection_impl.h │ │ │ ├── region_backend_services_rest_logging_decorator.cc │ │ │ ├── region_backend_services_rest_logging_decorator.h │ │ │ ├── region_backend_services_rest_metadata_decorator.cc │ │ │ ├── region_backend_services_rest_metadata_decorator.h │ │ │ ├── region_backend_services_rest_stub.cc │ │ │ ├── region_backend_services_rest_stub.h │ │ │ ├── region_backend_services_rest_stub_factory.cc │ │ │ ├── region_backend_services_rest_stub_factory.h │ │ │ ├── region_backend_services_retry_traits.h │ │ │ ├── region_backend_services_sources.cc │ │ │ ├── region_backend_services_tracing_connection.cc │ │ │ └── region_backend_services_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_backend_services_connection.h │ │ │ ├── region_backend_services_client.cc │ │ │ ├── region_backend_services_client.h │ │ │ ├── region_backend_services_connection.cc │ │ │ ├── region_backend_services_connection.h │ │ │ ├── region_backend_services_connection_idempotency_policy.cc │ │ │ ├── region_backend_services_connection_idempotency_policy.h │ │ │ ├── region_backend_services_options.h │ │ │ ├── region_backend_services_proto_export.h │ │ │ ├── region_backend_services_rest_connection.cc │ │ │ ├── region_backend_services_rest_connection.h │ │ │ └── samples │ │ │ └── region_backend_services_client_samples.cc │ ├── region_commitments │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_commitments_option_defaults.cc │ │ │ ├── region_commitments_option_defaults.h │ │ │ ├── region_commitments_rest_connection_impl.cc │ │ │ ├── region_commitments_rest_connection_impl.h │ │ │ ├── region_commitments_rest_logging_decorator.cc │ │ │ ├── region_commitments_rest_logging_decorator.h │ │ │ ├── region_commitments_rest_metadata_decorator.cc │ │ │ ├── region_commitments_rest_metadata_decorator.h │ │ │ ├── region_commitments_rest_stub.cc │ │ │ ├── region_commitments_rest_stub.h │ │ │ ├── region_commitments_rest_stub_factory.cc │ │ │ ├── region_commitments_rest_stub_factory.h │ │ │ ├── region_commitments_retry_traits.h │ │ │ ├── region_commitments_sources.cc │ │ │ ├── region_commitments_tracing_connection.cc │ │ │ └── region_commitments_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_commitments_connection.h │ │ │ ├── region_commitments_client.cc │ │ │ ├── region_commitments_client.h │ │ │ ├── region_commitments_connection.cc │ │ │ ├── region_commitments_connection.h │ │ │ ├── region_commitments_connection_idempotency_policy.cc │ │ │ ├── region_commitments_connection_idempotency_policy.h │ │ │ ├── region_commitments_options.h │ │ │ ├── region_commitments_proto_export.h │ │ │ ├── region_commitments_rest_connection.cc │ │ │ ├── region_commitments_rest_connection.h │ │ │ └── samples │ │ │ └── region_commitments_client_samples.cc │ ├── region_disk_types │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_disk_types_option_defaults.cc │ │ │ ├── region_disk_types_option_defaults.h │ │ │ ├── region_disk_types_rest_connection_impl.cc │ │ │ ├── region_disk_types_rest_connection_impl.h │ │ │ ├── region_disk_types_rest_logging_decorator.cc │ │ │ ├── region_disk_types_rest_logging_decorator.h │ │ │ ├── region_disk_types_rest_metadata_decorator.cc │ │ │ ├── region_disk_types_rest_metadata_decorator.h │ │ │ ├── region_disk_types_rest_stub.cc │ │ │ ├── region_disk_types_rest_stub.h │ │ │ ├── region_disk_types_rest_stub_factory.cc │ │ │ ├── region_disk_types_rest_stub_factory.h │ │ │ ├── region_disk_types_retry_traits.h │ │ │ ├── region_disk_types_sources.cc │ │ │ ├── region_disk_types_tracing_connection.cc │ │ │ └── region_disk_types_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_disk_types_connection.h │ │ │ ├── region_disk_types_client.cc │ │ │ ├── region_disk_types_client.h │ │ │ ├── region_disk_types_connection.cc │ │ │ ├── region_disk_types_connection.h │ │ │ ├── region_disk_types_connection_idempotency_policy.cc │ │ │ ├── region_disk_types_connection_idempotency_policy.h │ │ │ ├── region_disk_types_options.h │ │ │ ├── region_disk_types_proto_export.h │ │ │ ├── region_disk_types_rest_connection.cc │ │ │ ├── region_disk_types_rest_connection.h │ │ │ └── samples │ │ │ └── region_disk_types_client_samples.cc │ ├── region_disks │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_disks_option_defaults.cc │ │ │ ├── region_disks_option_defaults.h │ │ │ ├── region_disks_rest_connection_impl.cc │ │ │ ├── region_disks_rest_connection_impl.h │ │ │ ├── region_disks_rest_logging_decorator.cc │ │ │ ├── region_disks_rest_logging_decorator.h │ │ │ ├── region_disks_rest_metadata_decorator.cc │ │ │ ├── region_disks_rest_metadata_decorator.h │ │ │ ├── region_disks_rest_stub.cc │ │ │ ├── region_disks_rest_stub.h │ │ │ ├── region_disks_rest_stub_factory.cc │ │ │ ├── region_disks_rest_stub_factory.h │ │ │ ├── region_disks_retry_traits.h │ │ │ ├── region_disks_sources.cc │ │ │ ├── region_disks_tracing_connection.cc │ │ │ └── region_disks_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_disks_connection.h │ │ │ ├── region_disks_client.cc │ │ │ ├── region_disks_client.h │ │ │ ├── region_disks_connection.cc │ │ │ ├── region_disks_connection.h │ │ │ ├── region_disks_connection_idempotency_policy.cc │ │ │ ├── region_disks_connection_idempotency_policy.h │ │ │ ├── region_disks_options.h │ │ │ ├── region_disks_proto_export.h │ │ │ ├── region_disks_rest_connection.cc │ │ │ ├── region_disks_rest_connection.h │ │ │ └── samples │ │ │ └── region_disks_client_samples.cc │ ├── region_health_check_services │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_health_check_services_option_defaults.cc │ │ │ ├── region_health_check_services_option_defaults.h │ │ │ ├── region_health_check_services_rest_connection_impl.cc │ │ │ ├── region_health_check_services_rest_connection_impl.h │ │ │ ├── region_health_check_services_rest_logging_decorator.cc │ │ │ ├── region_health_check_services_rest_logging_decorator.h │ │ │ ├── region_health_check_services_rest_metadata_decorator.cc │ │ │ ├── region_health_check_services_rest_metadata_decorator.h │ │ │ ├── region_health_check_services_rest_stub.cc │ │ │ ├── region_health_check_services_rest_stub.h │ │ │ ├── region_health_check_services_rest_stub_factory.cc │ │ │ ├── region_health_check_services_rest_stub_factory.h │ │ │ ├── region_health_check_services_retry_traits.h │ │ │ ├── region_health_check_services_sources.cc │ │ │ ├── region_health_check_services_tracing_connection.cc │ │ │ └── region_health_check_services_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_health_check_services_connection.h │ │ │ ├── region_health_check_services_client.cc │ │ │ ├── region_health_check_services_client.h │ │ │ ├── region_health_check_services_connection.cc │ │ │ ├── region_health_check_services_connection.h │ │ │ ├── region_health_check_services_connection_idempotency_policy.cc │ │ │ ├── region_health_check_services_connection_idempotency_policy.h │ │ │ ├── region_health_check_services_options.h │ │ │ ├── region_health_check_services_proto_export.h │ │ │ ├── region_health_check_services_rest_connection.cc │ │ │ ├── region_health_check_services_rest_connection.h │ │ │ └── samples │ │ │ └── region_health_check_services_client_samples.cc │ ├── region_health_checks │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_health_checks_option_defaults.cc │ │ │ ├── region_health_checks_option_defaults.h │ │ │ ├── region_health_checks_rest_connection_impl.cc │ │ │ ├── region_health_checks_rest_connection_impl.h │ │ │ ├── region_health_checks_rest_logging_decorator.cc │ │ │ ├── region_health_checks_rest_logging_decorator.h │ │ │ ├── region_health_checks_rest_metadata_decorator.cc │ │ │ ├── region_health_checks_rest_metadata_decorator.h │ │ │ ├── region_health_checks_rest_stub.cc │ │ │ ├── region_health_checks_rest_stub.h │ │ │ ├── region_health_checks_rest_stub_factory.cc │ │ │ ├── region_health_checks_rest_stub_factory.h │ │ │ ├── region_health_checks_retry_traits.h │ │ │ ├── region_health_checks_sources.cc │ │ │ ├── region_health_checks_tracing_connection.cc │ │ │ └── region_health_checks_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_health_checks_connection.h │ │ │ ├── region_health_checks_client.cc │ │ │ ├── region_health_checks_client.h │ │ │ ├── region_health_checks_connection.cc │ │ │ ├── region_health_checks_connection.h │ │ │ ├── region_health_checks_connection_idempotency_policy.cc │ │ │ ├── region_health_checks_connection_idempotency_policy.h │ │ │ ├── region_health_checks_options.h │ │ │ ├── region_health_checks_proto_export.h │ │ │ ├── region_health_checks_rest_connection.cc │ │ │ ├── region_health_checks_rest_connection.h │ │ │ └── samples │ │ │ └── region_health_checks_client_samples.cc │ ├── region_instance_group_managers │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_instance_group_managers_option_defaults.cc │ │ │ ├── region_instance_group_managers_option_defaults.h │ │ │ ├── region_instance_group_managers_rest_connection_impl.cc │ │ │ ├── region_instance_group_managers_rest_connection_impl.h │ │ │ ├── region_instance_group_managers_rest_logging_decorator.cc │ │ │ ├── region_instance_group_managers_rest_logging_decorator.h │ │ │ ├── region_instance_group_managers_rest_metadata_decorator.cc │ │ │ ├── region_instance_group_managers_rest_metadata_decorator.h │ │ │ ├── region_instance_group_managers_rest_stub.cc │ │ │ ├── region_instance_group_managers_rest_stub.h │ │ │ ├── region_instance_group_managers_rest_stub_factory.cc │ │ │ ├── region_instance_group_managers_rest_stub_factory.h │ │ │ ├── region_instance_group_managers_retry_traits.h │ │ │ ├── region_instance_group_managers_sources.cc │ │ │ ├── region_instance_group_managers_tracing_connection.cc │ │ │ └── region_instance_group_managers_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_instance_group_managers_connection.h │ │ │ ├── region_instance_group_managers_client.cc │ │ │ ├── region_instance_group_managers_client.h │ │ │ ├── region_instance_group_managers_connection.cc │ │ │ ├── region_instance_group_managers_connection.h │ │ │ ├── region_instance_group_managers_connection_idempotency_policy.cc │ │ │ ├── region_instance_group_managers_connection_idempotency_policy.h │ │ │ ├── region_instance_group_managers_options.h │ │ │ ├── region_instance_group_managers_proto_export.h │ │ │ ├── region_instance_group_managers_rest_connection.cc │ │ │ ├── region_instance_group_managers_rest_connection.h │ │ │ └── samples │ │ │ └── region_instance_group_managers_client_samples.cc │ ├── region_instance_groups │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_instance_groups_option_defaults.cc │ │ │ ├── region_instance_groups_option_defaults.h │ │ │ ├── region_instance_groups_rest_connection_impl.cc │ │ │ ├── region_instance_groups_rest_connection_impl.h │ │ │ ├── region_instance_groups_rest_logging_decorator.cc │ │ │ ├── region_instance_groups_rest_logging_decorator.h │ │ │ ├── region_instance_groups_rest_metadata_decorator.cc │ │ │ ├── region_instance_groups_rest_metadata_decorator.h │ │ │ ├── region_instance_groups_rest_stub.cc │ │ │ ├── region_instance_groups_rest_stub.h │ │ │ ├── region_instance_groups_rest_stub_factory.cc │ │ │ ├── region_instance_groups_rest_stub_factory.h │ │ │ ├── region_instance_groups_retry_traits.h │ │ │ ├── region_instance_groups_sources.cc │ │ │ ├── region_instance_groups_tracing_connection.cc │ │ │ └── region_instance_groups_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_instance_groups_connection.h │ │ │ ├── region_instance_groups_client.cc │ │ │ ├── region_instance_groups_client.h │ │ │ ├── region_instance_groups_connection.cc │ │ │ ├── region_instance_groups_connection.h │ │ │ ├── region_instance_groups_connection_idempotency_policy.cc │ │ │ ├── region_instance_groups_connection_idempotency_policy.h │ │ │ ├── region_instance_groups_options.h │ │ │ ├── region_instance_groups_proto_export.h │ │ │ ├── region_instance_groups_rest_connection.cc │ │ │ ├── region_instance_groups_rest_connection.h │ │ │ └── samples │ │ │ └── region_instance_groups_client_samples.cc │ ├── region_instance_templates │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_instance_templates_option_defaults.cc │ │ │ ├── region_instance_templates_option_defaults.h │ │ │ ├── region_instance_templates_rest_connection_impl.cc │ │ │ ├── region_instance_templates_rest_connection_impl.h │ │ │ ├── region_instance_templates_rest_logging_decorator.cc │ │ │ ├── region_instance_templates_rest_logging_decorator.h │ │ │ ├── region_instance_templates_rest_metadata_decorator.cc │ │ │ ├── region_instance_templates_rest_metadata_decorator.h │ │ │ ├── region_instance_templates_rest_stub.cc │ │ │ ├── region_instance_templates_rest_stub.h │ │ │ ├── region_instance_templates_rest_stub_factory.cc │ │ │ ├── region_instance_templates_rest_stub_factory.h │ │ │ ├── region_instance_templates_retry_traits.h │ │ │ ├── region_instance_templates_sources.cc │ │ │ ├── region_instance_templates_tracing_connection.cc │ │ │ └── region_instance_templates_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_instance_templates_connection.h │ │ │ ├── region_instance_templates_client.cc │ │ │ ├── region_instance_templates_client.h │ │ │ ├── region_instance_templates_connection.cc │ │ │ ├── region_instance_templates_connection.h │ │ │ ├── region_instance_templates_connection_idempotency_policy.cc │ │ │ ├── region_instance_templates_connection_idempotency_policy.h │ │ │ ├── region_instance_templates_options.h │ │ │ ├── region_instance_templates_proto_export.h │ │ │ ├── region_instance_templates_rest_connection.cc │ │ │ ├── region_instance_templates_rest_connection.h │ │ │ └── samples │ │ │ └── region_instance_templates_client_samples.cc │ ├── region_instances │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_instances_option_defaults.cc │ │ │ ├── region_instances_option_defaults.h │ │ │ ├── region_instances_rest_connection_impl.cc │ │ │ ├── region_instances_rest_connection_impl.h │ │ │ ├── region_instances_rest_logging_decorator.cc │ │ │ ├── region_instances_rest_logging_decorator.h │ │ │ ├── region_instances_rest_metadata_decorator.cc │ │ │ ├── region_instances_rest_metadata_decorator.h │ │ │ ├── region_instances_rest_stub.cc │ │ │ ├── region_instances_rest_stub.h │ │ │ ├── region_instances_rest_stub_factory.cc │ │ │ ├── region_instances_rest_stub_factory.h │ │ │ ├── region_instances_retry_traits.h │ │ │ ├── region_instances_sources.cc │ │ │ ├── region_instances_tracing_connection.cc │ │ │ └── region_instances_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_instances_connection.h │ │ │ ├── region_instances_client.cc │ │ │ ├── region_instances_client.h │ │ │ ├── region_instances_connection.cc │ │ │ ├── region_instances_connection.h │ │ │ ├── region_instances_connection_idempotency_policy.cc │ │ │ ├── region_instances_connection_idempotency_policy.h │ │ │ ├── region_instances_options.h │ │ │ ├── region_instances_proto_export.h │ │ │ ├── region_instances_rest_connection.cc │ │ │ ├── region_instances_rest_connection.h │ │ │ └── samples │ │ │ └── region_instances_client_samples.cc │ ├── region_instant_snapshots │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_instant_snapshots_option_defaults.cc │ │ │ ├── region_instant_snapshots_option_defaults.h │ │ │ ├── region_instant_snapshots_rest_connection_impl.cc │ │ │ ├── region_instant_snapshots_rest_connection_impl.h │ │ │ ├── region_instant_snapshots_rest_logging_decorator.cc │ │ │ ├── region_instant_snapshots_rest_logging_decorator.h │ │ │ ├── region_instant_snapshots_rest_metadata_decorator.cc │ │ │ ├── region_instant_snapshots_rest_metadata_decorator.h │ │ │ ├── region_instant_snapshots_rest_stub.cc │ │ │ ├── region_instant_snapshots_rest_stub.h │ │ │ ├── region_instant_snapshots_rest_stub_factory.cc │ │ │ ├── region_instant_snapshots_rest_stub_factory.h │ │ │ ├── region_instant_snapshots_retry_traits.h │ │ │ ├── region_instant_snapshots_sources.cc │ │ │ ├── region_instant_snapshots_tracing_connection.cc │ │ │ └── region_instant_snapshots_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_instant_snapshots_connection.h │ │ │ ├── region_instant_snapshots_client.cc │ │ │ ├── region_instant_snapshots_client.h │ │ │ ├── region_instant_snapshots_connection.cc │ │ │ ├── region_instant_snapshots_connection.h │ │ │ ├── region_instant_snapshots_connection_idempotency_policy.cc │ │ │ ├── region_instant_snapshots_connection_idempotency_policy.h │ │ │ ├── region_instant_snapshots_options.h │ │ │ ├── region_instant_snapshots_proto_export.h │ │ │ ├── region_instant_snapshots_rest_connection.cc │ │ │ ├── region_instant_snapshots_rest_connection.h │ │ │ └── samples │ │ │ └── region_instant_snapshots_client_samples.cc │ ├── region_network_endpoint_groups │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_network_endpoint_groups_option_defaults.cc │ │ │ ├── region_network_endpoint_groups_option_defaults.h │ │ │ ├── region_network_endpoint_groups_rest_connection_impl.cc │ │ │ ├── region_network_endpoint_groups_rest_connection_impl.h │ │ │ ├── region_network_endpoint_groups_rest_logging_decorator.cc │ │ │ ├── region_network_endpoint_groups_rest_logging_decorator.h │ │ │ ├── region_network_endpoint_groups_rest_metadata_decorator.cc │ │ │ ├── region_network_endpoint_groups_rest_metadata_decorator.h │ │ │ ├── region_network_endpoint_groups_rest_stub.cc │ │ │ ├── region_network_endpoint_groups_rest_stub.h │ │ │ ├── region_network_endpoint_groups_rest_stub_factory.cc │ │ │ ├── region_network_endpoint_groups_rest_stub_factory.h │ │ │ ├── region_network_endpoint_groups_retry_traits.h │ │ │ ├── region_network_endpoint_groups_sources.cc │ │ │ ├── region_network_endpoint_groups_tracing_connection.cc │ │ │ └── region_network_endpoint_groups_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_network_endpoint_groups_connection.h │ │ │ ├── region_network_endpoint_groups_client.cc │ │ │ ├── region_network_endpoint_groups_client.h │ │ │ ├── region_network_endpoint_groups_connection.cc │ │ │ ├── region_network_endpoint_groups_connection.h │ │ │ ├── region_network_endpoint_groups_connection_idempotency_policy.cc │ │ │ ├── region_network_endpoint_groups_connection_idempotency_policy.h │ │ │ ├── region_network_endpoint_groups_options.h │ │ │ ├── region_network_endpoint_groups_proto_export.h │ │ │ ├── region_network_endpoint_groups_rest_connection.cc │ │ │ ├── region_network_endpoint_groups_rest_connection.h │ │ │ └── samples │ │ │ └── region_network_endpoint_groups_client_samples.cc │ ├── region_network_firewall_policies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_network_firewall_policies_option_defaults.cc │ │ │ ├── region_network_firewall_policies_option_defaults.h │ │ │ ├── region_network_firewall_policies_rest_connection_impl.cc │ │ │ ├── region_network_firewall_policies_rest_connection_impl.h │ │ │ ├── region_network_firewall_policies_rest_logging_decorator.cc │ │ │ ├── region_network_firewall_policies_rest_logging_decorator.h │ │ │ ├── region_network_firewall_policies_rest_metadata_decorator.cc │ │ │ ├── region_network_firewall_policies_rest_metadata_decorator.h │ │ │ ├── region_network_firewall_policies_rest_stub.cc │ │ │ ├── region_network_firewall_policies_rest_stub.h │ │ │ ├── region_network_firewall_policies_rest_stub_factory.cc │ │ │ ├── region_network_firewall_policies_rest_stub_factory.h │ │ │ ├── region_network_firewall_policies_retry_traits.h │ │ │ ├── region_network_firewall_policies_sources.cc │ │ │ ├── region_network_firewall_policies_tracing_connection.cc │ │ │ └── region_network_firewall_policies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_network_firewall_policies_connection.h │ │ │ ├── region_network_firewall_policies_client.cc │ │ │ ├── region_network_firewall_policies_client.h │ │ │ ├── region_network_firewall_policies_connection.cc │ │ │ ├── region_network_firewall_policies_connection.h │ │ │ ├── region_network_firewall_policies_connection_idempotency_policy.cc │ │ │ ├── region_network_firewall_policies_connection_idempotency_policy.h │ │ │ ├── region_network_firewall_policies_options.h │ │ │ ├── region_network_firewall_policies_proto_export.h │ │ │ ├── region_network_firewall_policies_rest_connection.cc │ │ │ ├── region_network_firewall_policies_rest_connection.h │ │ │ └── samples │ │ │ └── region_network_firewall_policies_client_samples.cc │ ├── region_notification_endpoints │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_notification_endpoints_option_defaults.cc │ │ │ ├── region_notification_endpoints_option_defaults.h │ │ │ ├── region_notification_endpoints_rest_connection_impl.cc │ │ │ ├── region_notification_endpoints_rest_connection_impl.h │ │ │ ├── region_notification_endpoints_rest_logging_decorator.cc │ │ │ ├── region_notification_endpoints_rest_logging_decorator.h │ │ │ ├── region_notification_endpoints_rest_metadata_decorator.cc │ │ │ ├── region_notification_endpoints_rest_metadata_decorator.h │ │ │ ├── region_notification_endpoints_rest_stub.cc │ │ │ ├── region_notification_endpoints_rest_stub.h │ │ │ ├── region_notification_endpoints_rest_stub_factory.cc │ │ │ ├── region_notification_endpoints_rest_stub_factory.h │ │ │ ├── region_notification_endpoints_retry_traits.h │ │ │ ├── region_notification_endpoints_sources.cc │ │ │ ├── region_notification_endpoints_tracing_connection.cc │ │ │ └── region_notification_endpoints_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_notification_endpoints_connection.h │ │ │ ├── region_notification_endpoints_client.cc │ │ │ ├── region_notification_endpoints_client.h │ │ │ ├── region_notification_endpoints_connection.cc │ │ │ ├── region_notification_endpoints_connection.h │ │ │ ├── region_notification_endpoints_connection_idempotency_policy.cc │ │ │ ├── region_notification_endpoints_connection_idempotency_policy.h │ │ │ ├── region_notification_endpoints_options.h │ │ │ ├── region_notification_endpoints_proto_export.h │ │ │ ├── region_notification_endpoints_rest_connection.cc │ │ │ ├── region_notification_endpoints_rest_connection.h │ │ │ └── samples │ │ │ └── region_notification_endpoints_client_samples.cc │ ├── region_operations │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_operations_option_defaults.cc │ │ │ ├── region_operations_option_defaults.h │ │ │ ├── region_operations_rest_connection_impl.cc │ │ │ ├── region_operations_rest_connection_impl.h │ │ │ ├── region_operations_rest_logging_decorator.cc │ │ │ ├── region_operations_rest_logging_decorator.h │ │ │ ├── region_operations_rest_metadata_decorator.cc │ │ │ ├── region_operations_rest_metadata_decorator.h │ │ │ ├── region_operations_rest_stub.cc │ │ │ ├── region_operations_rest_stub.h │ │ │ ├── region_operations_rest_stub_factory.cc │ │ │ ├── region_operations_rest_stub_factory.h │ │ │ ├── region_operations_retry_traits.h │ │ │ ├── region_operations_sources.cc │ │ │ ├── region_operations_tracing_connection.cc │ │ │ └── region_operations_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_operations_connection.h │ │ │ ├── region_operations_client.cc │ │ │ ├── region_operations_client.h │ │ │ ├── region_operations_connection.cc │ │ │ ├── region_operations_connection.h │ │ │ ├── region_operations_connection_idempotency_policy.cc │ │ │ ├── region_operations_connection_idempotency_policy.h │ │ │ ├── region_operations_options.h │ │ │ ├── region_operations_proto_export.h │ │ │ ├── region_operations_rest_connection.cc │ │ │ ├── region_operations_rest_connection.h │ │ │ └── samples │ │ │ └── region_operations_client_samples.cc │ ├── region_security_policies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_security_policies_option_defaults.cc │ │ │ ├── region_security_policies_option_defaults.h │ │ │ ├── region_security_policies_rest_connection_impl.cc │ │ │ ├── region_security_policies_rest_connection_impl.h │ │ │ ├── region_security_policies_rest_logging_decorator.cc │ │ │ ├── region_security_policies_rest_logging_decorator.h │ │ │ ├── region_security_policies_rest_metadata_decorator.cc │ │ │ ├── region_security_policies_rest_metadata_decorator.h │ │ │ ├── region_security_policies_rest_stub.cc │ │ │ ├── region_security_policies_rest_stub.h │ │ │ ├── region_security_policies_rest_stub_factory.cc │ │ │ ├── region_security_policies_rest_stub_factory.h │ │ │ ├── region_security_policies_retry_traits.h │ │ │ ├── region_security_policies_sources.cc │ │ │ ├── region_security_policies_tracing_connection.cc │ │ │ └── region_security_policies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_security_policies_connection.h │ │ │ ├── region_security_policies_client.cc │ │ │ ├── region_security_policies_client.h │ │ │ ├── region_security_policies_connection.cc │ │ │ ├── region_security_policies_connection.h │ │ │ ├── region_security_policies_connection_idempotency_policy.cc │ │ │ ├── region_security_policies_connection_idempotency_policy.h │ │ │ ├── region_security_policies_options.h │ │ │ ├── region_security_policies_proto_export.h │ │ │ ├── region_security_policies_rest_connection.cc │ │ │ ├── region_security_policies_rest_connection.h │ │ │ └── samples │ │ │ └── region_security_policies_client_samples.cc │ ├── region_ssl_certificates │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_ssl_certificates_option_defaults.cc │ │ │ ├── region_ssl_certificates_option_defaults.h │ │ │ ├── region_ssl_certificates_rest_connection_impl.cc │ │ │ ├── region_ssl_certificates_rest_connection_impl.h │ │ │ ├── region_ssl_certificates_rest_logging_decorator.cc │ │ │ ├── region_ssl_certificates_rest_logging_decorator.h │ │ │ ├── region_ssl_certificates_rest_metadata_decorator.cc │ │ │ ├── region_ssl_certificates_rest_metadata_decorator.h │ │ │ ├── region_ssl_certificates_rest_stub.cc │ │ │ ├── region_ssl_certificates_rest_stub.h │ │ │ ├── region_ssl_certificates_rest_stub_factory.cc │ │ │ ├── region_ssl_certificates_rest_stub_factory.h │ │ │ ├── region_ssl_certificates_retry_traits.h │ │ │ ├── region_ssl_certificates_sources.cc │ │ │ ├── region_ssl_certificates_tracing_connection.cc │ │ │ └── region_ssl_certificates_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_ssl_certificates_connection.h │ │ │ ├── region_ssl_certificates_client.cc │ │ │ ├── region_ssl_certificates_client.h │ │ │ ├── region_ssl_certificates_connection.cc │ │ │ ├── region_ssl_certificates_connection.h │ │ │ ├── region_ssl_certificates_connection_idempotency_policy.cc │ │ │ ├── region_ssl_certificates_connection_idempotency_policy.h │ │ │ ├── region_ssl_certificates_options.h │ │ │ ├── region_ssl_certificates_proto_export.h │ │ │ ├── region_ssl_certificates_rest_connection.cc │ │ │ ├── region_ssl_certificates_rest_connection.h │ │ │ └── samples │ │ │ └── region_ssl_certificates_client_samples.cc │ ├── region_ssl_policies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_ssl_policies_option_defaults.cc │ │ │ ├── region_ssl_policies_option_defaults.h │ │ │ ├── region_ssl_policies_rest_connection_impl.cc │ │ │ ├── region_ssl_policies_rest_connection_impl.h │ │ │ ├── region_ssl_policies_rest_logging_decorator.cc │ │ │ ├── region_ssl_policies_rest_logging_decorator.h │ │ │ ├── region_ssl_policies_rest_metadata_decorator.cc │ │ │ ├── region_ssl_policies_rest_metadata_decorator.h │ │ │ ├── region_ssl_policies_rest_stub.cc │ │ │ ├── region_ssl_policies_rest_stub.h │ │ │ ├── region_ssl_policies_rest_stub_factory.cc │ │ │ ├── region_ssl_policies_rest_stub_factory.h │ │ │ ├── region_ssl_policies_retry_traits.h │ │ │ ├── region_ssl_policies_sources.cc │ │ │ ├── region_ssl_policies_tracing_connection.cc │ │ │ └── region_ssl_policies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_ssl_policies_connection.h │ │ │ ├── region_ssl_policies_client.cc │ │ │ ├── region_ssl_policies_client.h │ │ │ ├── region_ssl_policies_connection.cc │ │ │ ├── region_ssl_policies_connection.h │ │ │ ├── region_ssl_policies_connection_idempotency_policy.cc │ │ │ ├── region_ssl_policies_connection_idempotency_policy.h │ │ │ ├── region_ssl_policies_options.h │ │ │ ├── region_ssl_policies_proto_export.h │ │ │ ├── region_ssl_policies_rest_connection.cc │ │ │ ├── region_ssl_policies_rest_connection.h │ │ │ └── samples │ │ │ └── region_ssl_policies_client_samples.cc │ ├── region_target_http_proxies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_target_http_proxies_option_defaults.cc │ │ │ ├── region_target_http_proxies_option_defaults.h │ │ │ ├── region_target_http_proxies_rest_connection_impl.cc │ │ │ ├── region_target_http_proxies_rest_connection_impl.h │ │ │ ├── region_target_http_proxies_rest_logging_decorator.cc │ │ │ ├── region_target_http_proxies_rest_logging_decorator.h │ │ │ ├── region_target_http_proxies_rest_metadata_decorator.cc │ │ │ ├── region_target_http_proxies_rest_metadata_decorator.h │ │ │ ├── region_target_http_proxies_rest_stub.cc │ │ │ ├── region_target_http_proxies_rest_stub.h │ │ │ ├── region_target_http_proxies_rest_stub_factory.cc │ │ │ ├── region_target_http_proxies_rest_stub_factory.h │ │ │ ├── region_target_http_proxies_retry_traits.h │ │ │ ├── region_target_http_proxies_sources.cc │ │ │ ├── region_target_http_proxies_tracing_connection.cc │ │ │ └── region_target_http_proxies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_target_http_proxies_connection.h │ │ │ ├── region_target_http_proxies_client.cc │ │ │ ├── region_target_http_proxies_client.h │ │ │ ├── region_target_http_proxies_connection.cc │ │ │ ├── region_target_http_proxies_connection.h │ │ │ ├── region_target_http_proxies_connection_idempotency_policy.cc │ │ │ ├── region_target_http_proxies_connection_idempotency_policy.h │ │ │ ├── region_target_http_proxies_options.h │ │ │ ├── region_target_http_proxies_proto_export.h │ │ │ ├── region_target_http_proxies_rest_connection.cc │ │ │ ├── region_target_http_proxies_rest_connection.h │ │ │ └── samples │ │ │ └── region_target_http_proxies_client_samples.cc │ ├── region_target_https_proxies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_target_https_proxies_option_defaults.cc │ │ │ ├── region_target_https_proxies_option_defaults.h │ │ │ ├── region_target_https_proxies_rest_connection_impl.cc │ │ │ ├── region_target_https_proxies_rest_connection_impl.h │ │ │ ├── region_target_https_proxies_rest_logging_decorator.cc │ │ │ ├── region_target_https_proxies_rest_logging_decorator.h │ │ │ ├── region_target_https_proxies_rest_metadata_decorator.cc │ │ │ ├── region_target_https_proxies_rest_metadata_decorator.h │ │ │ ├── region_target_https_proxies_rest_stub.cc │ │ │ ├── region_target_https_proxies_rest_stub.h │ │ │ ├── region_target_https_proxies_rest_stub_factory.cc │ │ │ ├── region_target_https_proxies_rest_stub_factory.h │ │ │ ├── region_target_https_proxies_retry_traits.h │ │ │ ├── region_target_https_proxies_sources.cc │ │ │ ├── region_target_https_proxies_tracing_connection.cc │ │ │ └── region_target_https_proxies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_target_https_proxies_connection.h │ │ │ ├── region_target_https_proxies_client.cc │ │ │ ├── region_target_https_proxies_client.h │ │ │ ├── region_target_https_proxies_connection.cc │ │ │ ├── region_target_https_proxies_connection.h │ │ │ ├── region_target_https_proxies_connection_idempotency_policy.cc │ │ │ ├── region_target_https_proxies_connection_idempotency_policy.h │ │ │ ├── region_target_https_proxies_options.h │ │ │ ├── region_target_https_proxies_proto_export.h │ │ │ ├── region_target_https_proxies_rest_connection.cc │ │ │ ├── region_target_https_proxies_rest_connection.h │ │ │ └── samples │ │ │ └── region_target_https_proxies_client_samples.cc │ ├── region_target_tcp_proxies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_target_tcp_proxies_option_defaults.cc │ │ │ ├── region_target_tcp_proxies_option_defaults.h │ │ │ ├── region_target_tcp_proxies_rest_connection_impl.cc │ │ │ ├── region_target_tcp_proxies_rest_connection_impl.h │ │ │ ├── region_target_tcp_proxies_rest_logging_decorator.cc │ │ │ ├── region_target_tcp_proxies_rest_logging_decorator.h │ │ │ ├── region_target_tcp_proxies_rest_metadata_decorator.cc │ │ │ ├── region_target_tcp_proxies_rest_metadata_decorator.h │ │ │ ├── region_target_tcp_proxies_rest_stub.cc │ │ │ ├── region_target_tcp_proxies_rest_stub.h │ │ │ ├── region_target_tcp_proxies_rest_stub_factory.cc │ │ │ ├── region_target_tcp_proxies_rest_stub_factory.h │ │ │ ├── region_target_tcp_proxies_retry_traits.h │ │ │ ├── region_target_tcp_proxies_sources.cc │ │ │ ├── region_target_tcp_proxies_tracing_connection.cc │ │ │ └── region_target_tcp_proxies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_target_tcp_proxies_connection.h │ │ │ ├── region_target_tcp_proxies_client.cc │ │ │ ├── region_target_tcp_proxies_client.h │ │ │ ├── region_target_tcp_proxies_connection.cc │ │ │ ├── region_target_tcp_proxies_connection.h │ │ │ ├── region_target_tcp_proxies_connection_idempotency_policy.cc │ │ │ ├── region_target_tcp_proxies_connection_idempotency_policy.h │ │ │ ├── region_target_tcp_proxies_options.h │ │ │ ├── region_target_tcp_proxies_proto_export.h │ │ │ ├── region_target_tcp_proxies_rest_connection.cc │ │ │ ├── region_target_tcp_proxies_rest_connection.h │ │ │ └── samples │ │ │ └── region_target_tcp_proxies_client_samples.cc │ ├── region_url_maps │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_url_maps_option_defaults.cc │ │ │ ├── region_url_maps_option_defaults.h │ │ │ ├── region_url_maps_rest_connection_impl.cc │ │ │ ├── region_url_maps_rest_connection_impl.h │ │ │ ├── region_url_maps_rest_logging_decorator.cc │ │ │ ├── region_url_maps_rest_logging_decorator.h │ │ │ ├── region_url_maps_rest_metadata_decorator.cc │ │ │ ├── region_url_maps_rest_metadata_decorator.h │ │ │ ├── region_url_maps_rest_stub.cc │ │ │ ├── region_url_maps_rest_stub.h │ │ │ ├── region_url_maps_rest_stub_factory.cc │ │ │ ├── region_url_maps_rest_stub_factory.h │ │ │ ├── region_url_maps_retry_traits.h │ │ │ ├── region_url_maps_sources.cc │ │ │ ├── region_url_maps_tracing_connection.cc │ │ │ └── region_url_maps_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_url_maps_connection.h │ │ │ ├── region_url_maps_client.cc │ │ │ ├── region_url_maps_client.h │ │ │ ├── region_url_maps_connection.cc │ │ │ ├── region_url_maps_connection.h │ │ │ ├── region_url_maps_connection_idempotency_policy.cc │ │ │ ├── region_url_maps_connection_idempotency_policy.h │ │ │ ├── region_url_maps_options.h │ │ │ ├── region_url_maps_proto_export.h │ │ │ ├── region_url_maps_rest_connection.cc │ │ │ ├── region_url_maps_rest_connection.h │ │ │ └── samples │ │ │ └── region_url_maps_client_samples.cc │ ├── region_zones │ │ └── v1 │ │ │ ├── internal │ │ │ ├── region_zones_option_defaults.cc │ │ │ ├── region_zones_option_defaults.h │ │ │ ├── region_zones_rest_connection_impl.cc │ │ │ ├── region_zones_rest_connection_impl.h │ │ │ ├── region_zones_rest_logging_decorator.cc │ │ │ ├── region_zones_rest_logging_decorator.h │ │ │ ├── region_zones_rest_metadata_decorator.cc │ │ │ ├── region_zones_rest_metadata_decorator.h │ │ │ ├── region_zones_rest_stub.cc │ │ │ ├── region_zones_rest_stub.h │ │ │ ├── region_zones_rest_stub_factory.cc │ │ │ ├── region_zones_rest_stub_factory.h │ │ │ ├── region_zones_retry_traits.h │ │ │ ├── region_zones_sources.cc │ │ │ ├── region_zones_tracing_connection.cc │ │ │ └── region_zones_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_region_zones_connection.h │ │ │ ├── region_zones_client.cc │ │ │ ├── region_zones_client.h │ │ │ ├── region_zones_connection.cc │ │ │ ├── region_zones_connection.h │ │ │ ├── region_zones_connection_idempotency_policy.cc │ │ │ ├── region_zones_connection_idempotency_policy.h │ │ │ ├── region_zones_options.h │ │ │ ├── region_zones_proto_export.h │ │ │ ├── region_zones_rest_connection.cc │ │ │ ├── region_zones_rest_connection.h │ │ │ └── samples │ │ │ └── region_zones_client_samples.cc │ ├── regions │ │ └── v1 │ │ │ ├── internal │ │ │ ├── regions_option_defaults.cc │ │ │ ├── regions_option_defaults.h │ │ │ ├── regions_rest_connection_impl.cc │ │ │ ├── regions_rest_connection_impl.h │ │ │ ├── regions_rest_logging_decorator.cc │ │ │ ├── regions_rest_logging_decorator.h │ │ │ ├── regions_rest_metadata_decorator.cc │ │ │ ├── regions_rest_metadata_decorator.h │ │ │ ├── regions_rest_stub.cc │ │ │ ├── regions_rest_stub.h │ │ │ ├── regions_rest_stub_factory.cc │ │ │ ├── regions_rest_stub_factory.h │ │ │ ├── regions_retry_traits.h │ │ │ ├── regions_sources.cc │ │ │ ├── regions_tracing_connection.cc │ │ │ └── regions_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_regions_connection.h │ │ │ ├── regions_client.cc │ │ │ ├── regions_client.h │ │ │ ├── regions_connection.cc │ │ │ ├── regions_connection.h │ │ │ ├── regions_connection_idempotency_policy.cc │ │ │ ├── regions_connection_idempotency_policy.h │ │ │ ├── regions_options.h │ │ │ ├── regions_proto_export.h │ │ │ ├── regions_rest_connection.cc │ │ │ ├── regions_rest_connection.h │ │ │ └── samples │ │ │ └── regions_client_samples.cc │ ├── reservation_blocks │ │ └── v1 │ │ │ ├── internal │ │ │ ├── reservation_blocks_option_defaults.cc │ │ │ ├── reservation_blocks_option_defaults.h │ │ │ ├── reservation_blocks_rest_connection_impl.cc │ │ │ ├── reservation_blocks_rest_connection_impl.h │ │ │ ├── reservation_blocks_rest_logging_decorator.cc │ │ │ ├── reservation_blocks_rest_logging_decorator.h │ │ │ ├── reservation_blocks_rest_metadata_decorator.cc │ │ │ ├── reservation_blocks_rest_metadata_decorator.h │ │ │ ├── reservation_blocks_rest_stub.cc │ │ │ ├── reservation_blocks_rest_stub.h │ │ │ ├── reservation_blocks_rest_stub_factory.cc │ │ │ ├── reservation_blocks_rest_stub_factory.h │ │ │ ├── reservation_blocks_retry_traits.h │ │ │ ├── reservation_blocks_sources.cc │ │ │ ├── reservation_blocks_tracing_connection.cc │ │ │ └── reservation_blocks_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_reservation_blocks_connection.h │ │ │ ├── reservation_blocks_client.cc │ │ │ ├── reservation_blocks_client.h │ │ │ ├── reservation_blocks_connection.cc │ │ │ ├── reservation_blocks_connection.h │ │ │ ├── reservation_blocks_connection_idempotency_policy.cc │ │ │ ├── reservation_blocks_connection_idempotency_policy.h │ │ │ ├── reservation_blocks_options.h │ │ │ ├── reservation_blocks_proto_export.h │ │ │ ├── reservation_blocks_rest_connection.cc │ │ │ ├── reservation_blocks_rest_connection.h │ │ │ └── samples │ │ │ └── reservation_blocks_client_samples.cc │ ├── reservation_sub_blocks │ │ └── v1 │ │ │ ├── internal │ │ │ ├── reservation_sub_blocks_option_defaults.cc │ │ │ ├── reservation_sub_blocks_option_defaults.h │ │ │ ├── reservation_sub_blocks_rest_connection_impl.cc │ │ │ ├── reservation_sub_blocks_rest_connection_impl.h │ │ │ ├── reservation_sub_blocks_rest_logging_decorator.cc │ │ │ ├── reservation_sub_blocks_rest_logging_decorator.h │ │ │ ├── reservation_sub_blocks_rest_metadata_decorator.cc │ │ │ ├── reservation_sub_blocks_rest_metadata_decorator.h │ │ │ ├── reservation_sub_blocks_rest_stub.cc │ │ │ ├── reservation_sub_blocks_rest_stub.h │ │ │ ├── reservation_sub_blocks_rest_stub_factory.cc │ │ │ ├── reservation_sub_blocks_rest_stub_factory.h │ │ │ ├── reservation_sub_blocks_retry_traits.h │ │ │ ├── reservation_sub_blocks_sources.cc │ │ │ ├── reservation_sub_blocks_tracing_connection.cc │ │ │ └── reservation_sub_blocks_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_reservation_sub_blocks_connection.h │ │ │ ├── reservation_sub_blocks_client.cc │ │ │ ├── reservation_sub_blocks_client.h │ │ │ ├── reservation_sub_blocks_connection.cc │ │ │ ├── reservation_sub_blocks_connection.h │ │ │ ├── reservation_sub_blocks_connection_idempotency_policy.cc │ │ │ ├── reservation_sub_blocks_connection_idempotency_policy.h │ │ │ ├── reservation_sub_blocks_options.h │ │ │ ├── reservation_sub_blocks_proto_export.h │ │ │ ├── reservation_sub_blocks_rest_connection.cc │ │ │ ├── reservation_sub_blocks_rest_connection.h │ │ │ └── samples │ │ │ └── reservation_sub_blocks_client_samples.cc │ ├── reservations │ │ └── v1 │ │ │ ├── internal │ │ │ ├── reservations_option_defaults.cc │ │ │ ├── reservations_option_defaults.h │ │ │ ├── reservations_rest_connection_impl.cc │ │ │ ├── reservations_rest_connection_impl.h │ │ │ ├── reservations_rest_logging_decorator.cc │ │ │ ├── reservations_rest_logging_decorator.h │ │ │ ├── reservations_rest_metadata_decorator.cc │ │ │ ├── reservations_rest_metadata_decorator.h │ │ │ ├── reservations_rest_stub.cc │ │ │ ├── reservations_rest_stub.h │ │ │ ├── reservations_rest_stub_factory.cc │ │ │ ├── reservations_rest_stub_factory.h │ │ │ ├── reservations_retry_traits.h │ │ │ ├── reservations_sources.cc │ │ │ ├── reservations_tracing_connection.cc │ │ │ └── reservations_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_reservations_connection.h │ │ │ ├── reservations_client.cc │ │ │ ├── reservations_client.h │ │ │ ├── reservations_connection.cc │ │ │ ├── reservations_connection.h │ │ │ ├── reservations_connection_idempotency_policy.cc │ │ │ ├── reservations_connection_idempotency_policy.h │ │ │ ├── reservations_options.h │ │ │ ├── reservations_proto_export.h │ │ │ ├── reservations_rest_connection.cc │ │ │ ├── reservations_rest_connection.h │ │ │ └── samples │ │ │ └── reservations_client_samples.cc │ ├── resource_policies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── resource_policies_option_defaults.cc │ │ │ ├── resource_policies_option_defaults.h │ │ │ ├── resource_policies_rest_connection_impl.cc │ │ │ ├── resource_policies_rest_connection_impl.h │ │ │ ├── resource_policies_rest_logging_decorator.cc │ │ │ ├── resource_policies_rest_logging_decorator.h │ │ │ ├── resource_policies_rest_metadata_decorator.cc │ │ │ ├── resource_policies_rest_metadata_decorator.h │ │ │ ├── resource_policies_rest_stub.cc │ │ │ ├── resource_policies_rest_stub.h │ │ │ ├── resource_policies_rest_stub_factory.cc │ │ │ ├── resource_policies_rest_stub_factory.h │ │ │ ├── resource_policies_retry_traits.h │ │ │ ├── resource_policies_sources.cc │ │ │ ├── resource_policies_tracing_connection.cc │ │ │ └── resource_policies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_resource_policies_connection.h │ │ │ ├── resource_policies_client.cc │ │ │ ├── resource_policies_client.h │ │ │ ├── resource_policies_connection.cc │ │ │ ├── resource_policies_connection.h │ │ │ ├── resource_policies_connection_idempotency_policy.cc │ │ │ ├── resource_policies_connection_idempotency_policy.h │ │ │ ├── resource_policies_options.h │ │ │ ├── resource_policies_proto_export.h │ │ │ ├── resource_policies_rest_connection.cc │ │ │ ├── resource_policies_rest_connection.h │ │ │ └── samples │ │ │ └── resource_policies_client_samples.cc │ ├── routers │ │ └── v1 │ │ │ ├── internal │ │ │ ├── routers_option_defaults.cc │ │ │ ├── routers_option_defaults.h │ │ │ ├── routers_rest_connection_impl.cc │ │ │ ├── routers_rest_connection_impl.h │ │ │ ├── routers_rest_logging_decorator.cc │ │ │ ├── routers_rest_logging_decorator.h │ │ │ ├── routers_rest_metadata_decorator.cc │ │ │ ├── routers_rest_metadata_decorator.h │ │ │ ├── routers_rest_stub.cc │ │ │ ├── routers_rest_stub.h │ │ │ ├── routers_rest_stub_factory.cc │ │ │ ├── routers_rest_stub_factory.h │ │ │ ├── routers_retry_traits.h │ │ │ ├── routers_sources.cc │ │ │ ├── routers_tracing_connection.cc │ │ │ └── routers_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_routers_connection.h │ │ │ ├── routers_client.cc │ │ │ ├── routers_client.h │ │ │ ├── routers_connection.cc │ │ │ ├── routers_connection.h │ │ │ ├── routers_connection_idempotency_policy.cc │ │ │ ├── routers_connection_idempotency_policy.h │ │ │ ├── routers_options.h │ │ │ ├── routers_proto_export.h │ │ │ ├── routers_rest_connection.cc │ │ │ ├── routers_rest_connection.h │ │ │ └── samples │ │ │ └── routers_client_samples.cc │ ├── routes │ │ └── v1 │ │ │ ├── internal │ │ │ ├── routes_option_defaults.cc │ │ │ ├── routes_option_defaults.h │ │ │ ├── routes_rest_connection_impl.cc │ │ │ ├── routes_rest_connection_impl.h │ │ │ ├── routes_rest_logging_decorator.cc │ │ │ ├── routes_rest_logging_decorator.h │ │ │ ├── routes_rest_metadata_decorator.cc │ │ │ ├── routes_rest_metadata_decorator.h │ │ │ ├── routes_rest_stub.cc │ │ │ ├── routes_rest_stub.h │ │ │ ├── routes_rest_stub_factory.cc │ │ │ ├── routes_rest_stub_factory.h │ │ │ ├── routes_retry_traits.h │ │ │ ├── routes_sources.cc │ │ │ ├── routes_tracing_connection.cc │ │ │ └── routes_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_routes_connection.h │ │ │ ├── routes_client.cc │ │ │ ├── routes_client.h │ │ │ ├── routes_connection.cc │ │ │ ├── routes_connection.h │ │ │ ├── routes_connection_idempotency_policy.cc │ │ │ ├── routes_connection_idempotency_policy.h │ │ │ ├── routes_options.h │ │ │ ├── routes_proto_export.h │ │ │ ├── routes_rest_connection.cc │ │ │ ├── routes_rest_connection.h │ │ │ └── samples │ │ │ └── routes_client_samples.cc │ ├── samples │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── compute_client_samples.bzl │ │ └── disk_samples.cc │ ├── security_policies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── security_policies_option_defaults.cc │ │ │ ├── security_policies_option_defaults.h │ │ │ ├── security_policies_rest_connection_impl.cc │ │ │ ├── security_policies_rest_connection_impl.h │ │ │ ├── security_policies_rest_logging_decorator.cc │ │ │ ├── security_policies_rest_logging_decorator.h │ │ │ ├── security_policies_rest_metadata_decorator.cc │ │ │ ├── security_policies_rest_metadata_decorator.h │ │ │ ├── security_policies_rest_stub.cc │ │ │ ├── security_policies_rest_stub.h │ │ │ ├── security_policies_rest_stub_factory.cc │ │ │ ├── security_policies_rest_stub_factory.h │ │ │ ├── security_policies_retry_traits.h │ │ │ ├── security_policies_sources.cc │ │ │ ├── security_policies_tracing_connection.cc │ │ │ └── security_policies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_security_policies_connection.h │ │ │ ├── samples │ │ │ └── security_policies_client_samples.cc │ │ │ ├── security_policies_client.cc │ │ │ ├── security_policies_client.h │ │ │ ├── security_policies_connection.cc │ │ │ ├── security_policies_connection.h │ │ │ ├── security_policies_connection_idempotency_policy.cc │ │ │ ├── security_policies_connection_idempotency_policy.h │ │ │ ├── security_policies_options.h │ │ │ ├── security_policies_proto_export.h │ │ │ ├── security_policies_rest_connection.cc │ │ │ └── security_policies_rest_connection.h │ ├── service_attachments │ │ └── v1 │ │ │ ├── internal │ │ │ ├── service_attachments_option_defaults.cc │ │ │ ├── service_attachments_option_defaults.h │ │ │ ├── service_attachments_rest_connection_impl.cc │ │ │ ├── service_attachments_rest_connection_impl.h │ │ │ ├── service_attachments_rest_logging_decorator.cc │ │ │ ├── service_attachments_rest_logging_decorator.h │ │ │ ├── service_attachments_rest_metadata_decorator.cc │ │ │ ├── service_attachments_rest_metadata_decorator.h │ │ │ ├── service_attachments_rest_stub.cc │ │ │ ├── service_attachments_rest_stub.h │ │ │ ├── service_attachments_rest_stub_factory.cc │ │ │ ├── service_attachments_rest_stub_factory.h │ │ │ ├── service_attachments_retry_traits.h │ │ │ ├── service_attachments_sources.cc │ │ │ ├── service_attachments_tracing_connection.cc │ │ │ └── service_attachments_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_service_attachments_connection.h │ │ │ ├── samples │ │ │ └── service_attachments_client_samples.cc │ │ │ ├── service_attachments_client.cc │ │ │ ├── service_attachments_client.h │ │ │ ├── service_attachments_connection.cc │ │ │ ├── service_attachments_connection.h │ │ │ ├── service_attachments_connection_idempotency_policy.cc │ │ │ ├── service_attachments_connection_idempotency_policy.h │ │ │ ├── service_attachments_options.h │ │ │ ├── service_attachments_proto_export.h │ │ │ ├── service_attachments_rest_connection.cc │ │ │ └── service_attachments_rest_connection.h │ ├── service_dirs.bzl │ ├── service_dirs.cmake │ ├── snapshot_settings │ │ └── v1 │ │ │ ├── internal │ │ │ ├── snapshot_settings_option_defaults.cc │ │ │ ├── snapshot_settings_option_defaults.h │ │ │ ├── snapshot_settings_rest_connection_impl.cc │ │ │ ├── snapshot_settings_rest_connection_impl.h │ │ │ ├── snapshot_settings_rest_logging_decorator.cc │ │ │ ├── snapshot_settings_rest_logging_decorator.h │ │ │ ├── snapshot_settings_rest_metadata_decorator.cc │ │ │ ├── snapshot_settings_rest_metadata_decorator.h │ │ │ ├── snapshot_settings_rest_stub.cc │ │ │ ├── snapshot_settings_rest_stub.h │ │ │ ├── snapshot_settings_rest_stub_factory.cc │ │ │ ├── snapshot_settings_rest_stub_factory.h │ │ │ ├── snapshot_settings_retry_traits.h │ │ │ ├── snapshot_settings_sources.cc │ │ │ ├── snapshot_settings_tracing_connection.cc │ │ │ └── snapshot_settings_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_snapshot_settings_connection.h │ │ │ ├── samples │ │ │ └── snapshot_settings_client_samples.cc │ │ │ ├── snapshot_settings_client.cc │ │ │ ├── snapshot_settings_client.h │ │ │ ├── snapshot_settings_connection.cc │ │ │ ├── snapshot_settings_connection.h │ │ │ ├── snapshot_settings_connection_idempotency_policy.cc │ │ │ ├── snapshot_settings_connection_idempotency_policy.h │ │ │ ├── snapshot_settings_options.h │ │ │ ├── snapshot_settings_proto_export.h │ │ │ ├── snapshot_settings_rest_connection.cc │ │ │ └── snapshot_settings_rest_connection.h │ ├── snapshots │ │ └── v1 │ │ │ ├── internal │ │ │ ├── snapshots_option_defaults.cc │ │ │ ├── snapshots_option_defaults.h │ │ │ ├── snapshots_rest_connection_impl.cc │ │ │ ├── snapshots_rest_connection_impl.h │ │ │ ├── snapshots_rest_logging_decorator.cc │ │ │ ├── snapshots_rest_logging_decorator.h │ │ │ ├── snapshots_rest_metadata_decorator.cc │ │ │ ├── snapshots_rest_metadata_decorator.h │ │ │ ├── snapshots_rest_stub.cc │ │ │ ├── snapshots_rest_stub.h │ │ │ ├── snapshots_rest_stub_factory.cc │ │ │ ├── snapshots_rest_stub_factory.h │ │ │ ├── snapshots_retry_traits.h │ │ │ ├── snapshots_sources.cc │ │ │ ├── snapshots_tracing_connection.cc │ │ │ └── snapshots_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_snapshots_connection.h │ │ │ ├── samples │ │ │ └── snapshots_client_samples.cc │ │ │ ├── snapshots_client.cc │ │ │ ├── snapshots_client.h │ │ │ ├── snapshots_connection.cc │ │ │ ├── snapshots_connection.h │ │ │ ├── snapshots_connection_idempotency_policy.cc │ │ │ ├── snapshots_connection_idempotency_policy.h │ │ │ ├── snapshots_options.h │ │ │ ├── snapshots_proto_export.h │ │ │ ├── snapshots_rest_connection.cc │ │ │ └── snapshots_rest_connection.h │ ├── ssl_certificates │ │ └── v1 │ │ │ ├── internal │ │ │ ├── ssl_certificates_option_defaults.cc │ │ │ ├── ssl_certificates_option_defaults.h │ │ │ ├── ssl_certificates_rest_connection_impl.cc │ │ │ ├── ssl_certificates_rest_connection_impl.h │ │ │ ├── ssl_certificates_rest_logging_decorator.cc │ │ │ ├── ssl_certificates_rest_logging_decorator.h │ │ │ ├── ssl_certificates_rest_metadata_decorator.cc │ │ │ ├── ssl_certificates_rest_metadata_decorator.h │ │ │ ├── ssl_certificates_rest_stub.cc │ │ │ ├── ssl_certificates_rest_stub.h │ │ │ ├── ssl_certificates_rest_stub_factory.cc │ │ │ ├── ssl_certificates_rest_stub_factory.h │ │ │ ├── ssl_certificates_retry_traits.h │ │ │ ├── ssl_certificates_sources.cc │ │ │ ├── ssl_certificates_tracing_connection.cc │ │ │ └── ssl_certificates_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_ssl_certificates_connection.h │ │ │ ├── samples │ │ │ └── ssl_certificates_client_samples.cc │ │ │ ├── ssl_certificates_client.cc │ │ │ ├── ssl_certificates_client.h │ │ │ ├── ssl_certificates_connection.cc │ │ │ ├── ssl_certificates_connection.h │ │ │ ├── ssl_certificates_connection_idempotency_policy.cc │ │ │ ├── ssl_certificates_connection_idempotency_policy.h │ │ │ ├── ssl_certificates_options.h │ │ │ ├── ssl_certificates_proto_export.h │ │ │ ├── ssl_certificates_rest_connection.cc │ │ │ └── ssl_certificates_rest_connection.h │ ├── ssl_policies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── ssl_policies_option_defaults.cc │ │ │ ├── ssl_policies_option_defaults.h │ │ │ ├── ssl_policies_rest_connection_impl.cc │ │ │ ├── ssl_policies_rest_connection_impl.h │ │ │ ├── ssl_policies_rest_logging_decorator.cc │ │ │ ├── ssl_policies_rest_logging_decorator.h │ │ │ ├── ssl_policies_rest_metadata_decorator.cc │ │ │ ├── ssl_policies_rest_metadata_decorator.h │ │ │ ├── ssl_policies_rest_stub.cc │ │ │ ├── ssl_policies_rest_stub.h │ │ │ ├── ssl_policies_rest_stub_factory.cc │ │ │ ├── ssl_policies_rest_stub_factory.h │ │ │ ├── ssl_policies_retry_traits.h │ │ │ ├── ssl_policies_sources.cc │ │ │ ├── ssl_policies_tracing_connection.cc │ │ │ └── ssl_policies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_ssl_policies_connection.h │ │ │ ├── samples │ │ │ └── ssl_policies_client_samples.cc │ │ │ ├── ssl_policies_client.cc │ │ │ ├── ssl_policies_client.h │ │ │ ├── ssl_policies_connection.cc │ │ │ ├── ssl_policies_connection.h │ │ │ ├── ssl_policies_connection_idempotency_policy.cc │ │ │ ├── ssl_policies_connection_idempotency_policy.h │ │ │ ├── ssl_policies_options.h │ │ │ ├── ssl_policies_proto_export.h │ │ │ ├── ssl_policies_rest_connection.cc │ │ │ └── ssl_policies_rest_connection.h │ ├── storage_pool_types │ │ └── v1 │ │ │ ├── internal │ │ │ ├── storage_pool_types_option_defaults.cc │ │ │ ├── storage_pool_types_option_defaults.h │ │ │ ├── storage_pool_types_rest_connection_impl.cc │ │ │ ├── storage_pool_types_rest_connection_impl.h │ │ │ ├── storage_pool_types_rest_logging_decorator.cc │ │ │ ├── storage_pool_types_rest_logging_decorator.h │ │ │ ├── storage_pool_types_rest_metadata_decorator.cc │ │ │ ├── storage_pool_types_rest_metadata_decorator.h │ │ │ ├── storage_pool_types_rest_stub.cc │ │ │ ├── storage_pool_types_rest_stub.h │ │ │ ├── storage_pool_types_rest_stub_factory.cc │ │ │ ├── storage_pool_types_rest_stub_factory.h │ │ │ ├── storage_pool_types_retry_traits.h │ │ │ ├── storage_pool_types_sources.cc │ │ │ ├── storage_pool_types_tracing_connection.cc │ │ │ └── storage_pool_types_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_storage_pool_types_connection.h │ │ │ ├── samples │ │ │ └── storage_pool_types_client_samples.cc │ │ │ ├── storage_pool_types_client.cc │ │ │ ├── storage_pool_types_client.h │ │ │ ├── storage_pool_types_connection.cc │ │ │ ├── storage_pool_types_connection.h │ │ │ ├── storage_pool_types_connection_idempotency_policy.cc │ │ │ ├── storage_pool_types_connection_idempotency_policy.h │ │ │ ├── storage_pool_types_options.h │ │ │ ├── storage_pool_types_proto_export.h │ │ │ ├── storage_pool_types_rest_connection.cc │ │ │ └── storage_pool_types_rest_connection.h │ ├── storage_pools │ │ └── v1 │ │ │ ├── internal │ │ │ ├── storage_pools_option_defaults.cc │ │ │ ├── storage_pools_option_defaults.h │ │ │ ├── storage_pools_rest_connection_impl.cc │ │ │ ├── storage_pools_rest_connection_impl.h │ │ │ ├── storage_pools_rest_logging_decorator.cc │ │ │ ├── storage_pools_rest_logging_decorator.h │ │ │ ├── storage_pools_rest_metadata_decorator.cc │ │ │ ├── storage_pools_rest_metadata_decorator.h │ │ │ ├── storage_pools_rest_stub.cc │ │ │ ├── storage_pools_rest_stub.h │ │ │ ├── storage_pools_rest_stub_factory.cc │ │ │ ├── storage_pools_rest_stub_factory.h │ │ │ ├── storage_pools_retry_traits.h │ │ │ ├── storage_pools_sources.cc │ │ │ ├── storage_pools_tracing_connection.cc │ │ │ └── storage_pools_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_storage_pools_connection.h │ │ │ ├── samples │ │ │ └── storage_pools_client_samples.cc │ │ │ ├── storage_pools_client.cc │ │ │ ├── storage_pools_client.h │ │ │ ├── storage_pools_connection.cc │ │ │ ├── storage_pools_connection.h │ │ │ ├── storage_pools_connection_idempotency_policy.cc │ │ │ ├── storage_pools_connection_idempotency_policy.h │ │ │ ├── storage_pools_options.h │ │ │ ├── storage_pools_proto_export.h │ │ │ ├── storage_pools_rest_connection.cc │ │ │ └── storage_pools_rest_connection.h │ ├── subnetworks │ │ └── v1 │ │ │ ├── internal │ │ │ ├── subnetworks_option_defaults.cc │ │ │ ├── subnetworks_option_defaults.h │ │ │ ├── subnetworks_rest_connection_impl.cc │ │ │ ├── subnetworks_rest_connection_impl.h │ │ │ ├── subnetworks_rest_logging_decorator.cc │ │ │ ├── subnetworks_rest_logging_decorator.h │ │ │ ├── subnetworks_rest_metadata_decorator.cc │ │ │ ├── subnetworks_rest_metadata_decorator.h │ │ │ ├── subnetworks_rest_stub.cc │ │ │ ├── subnetworks_rest_stub.h │ │ │ ├── subnetworks_rest_stub_factory.cc │ │ │ ├── subnetworks_rest_stub_factory.h │ │ │ ├── subnetworks_retry_traits.h │ │ │ ├── subnetworks_sources.cc │ │ │ ├── subnetworks_tracing_connection.cc │ │ │ └── subnetworks_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_subnetworks_connection.h │ │ │ ├── samples │ │ │ └── subnetworks_client_samples.cc │ │ │ ├── subnetworks_client.cc │ │ │ ├── subnetworks_client.h │ │ │ ├── subnetworks_connection.cc │ │ │ ├── subnetworks_connection.h │ │ │ ├── subnetworks_connection_idempotency_policy.cc │ │ │ ├── subnetworks_connection_idempotency_policy.h │ │ │ ├── subnetworks_options.h │ │ │ ├── subnetworks_proto_export.h │ │ │ ├── subnetworks_rest_connection.cc │ │ │ └── subnetworks_rest_connection.h │ ├── target_grpc_proxies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── target_grpc_proxies_option_defaults.cc │ │ │ ├── target_grpc_proxies_option_defaults.h │ │ │ ├── target_grpc_proxies_rest_connection_impl.cc │ │ │ ├── target_grpc_proxies_rest_connection_impl.h │ │ │ ├── target_grpc_proxies_rest_logging_decorator.cc │ │ │ ├── target_grpc_proxies_rest_logging_decorator.h │ │ │ ├── target_grpc_proxies_rest_metadata_decorator.cc │ │ │ ├── target_grpc_proxies_rest_metadata_decorator.h │ │ │ ├── target_grpc_proxies_rest_stub.cc │ │ │ ├── target_grpc_proxies_rest_stub.h │ │ │ ├── target_grpc_proxies_rest_stub_factory.cc │ │ │ ├── target_grpc_proxies_rest_stub_factory.h │ │ │ ├── target_grpc_proxies_retry_traits.h │ │ │ ├── target_grpc_proxies_sources.cc │ │ │ ├── target_grpc_proxies_tracing_connection.cc │ │ │ └── target_grpc_proxies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_target_grpc_proxies_connection.h │ │ │ ├── samples │ │ │ └── target_grpc_proxies_client_samples.cc │ │ │ ├── target_grpc_proxies_client.cc │ │ │ ├── target_grpc_proxies_client.h │ │ │ ├── target_grpc_proxies_connection.cc │ │ │ ├── target_grpc_proxies_connection.h │ │ │ ├── target_grpc_proxies_connection_idempotency_policy.cc │ │ │ ├── target_grpc_proxies_connection_idempotency_policy.h │ │ │ ├── target_grpc_proxies_options.h │ │ │ ├── target_grpc_proxies_proto_export.h │ │ │ ├── target_grpc_proxies_rest_connection.cc │ │ │ └── target_grpc_proxies_rest_connection.h │ ├── target_http_proxies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── target_http_proxies_option_defaults.cc │ │ │ ├── target_http_proxies_option_defaults.h │ │ │ ├── target_http_proxies_rest_connection_impl.cc │ │ │ ├── target_http_proxies_rest_connection_impl.h │ │ │ ├── target_http_proxies_rest_logging_decorator.cc │ │ │ ├── target_http_proxies_rest_logging_decorator.h │ │ │ ├── target_http_proxies_rest_metadata_decorator.cc │ │ │ ├── target_http_proxies_rest_metadata_decorator.h │ │ │ ├── target_http_proxies_rest_stub.cc │ │ │ ├── target_http_proxies_rest_stub.h │ │ │ ├── target_http_proxies_rest_stub_factory.cc │ │ │ ├── target_http_proxies_rest_stub_factory.h │ │ │ ├── target_http_proxies_retry_traits.h │ │ │ ├── target_http_proxies_sources.cc │ │ │ ├── target_http_proxies_tracing_connection.cc │ │ │ └── target_http_proxies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_target_http_proxies_connection.h │ │ │ ├── samples │ │ │ └── target_http_proxies_client_samples.cc │ │ │ ├── target_http_proxies_client.cc │ │ │ ├── target_http_proxies_client.h │ │ │ ├── target_http_proxies_connection.cc │ │ │ ├── target_http_proxies_connection.h │ │ │ ├── target_http_proxies_connection_idempotency_policy.cc │ │ │ ├── target_http_proxies_connection_idempotency_policy.h │ │ │ ├── target_http_proxies_options.h │ │ │ ├── target_http_proxies_proto_export.h │ │ │ ├── target_http_proxies_rest_connection.cc │ │ │ └── target_http_proxies_rest_connection.h │ ├── target_https_proxies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── target_https_proxies_option_defaults.cc │ │ │ ├── target_https_proxies_option_defaults.h │ │ │ ├── target_https_proxies_rest_connection_impl.cc │ │ │ ├── target_https_proxies_rest_connection_impl.h │ │ │ ├── target_https_proxies_rest_logging_decorator.cc │ │ │ ├── target_https_proxies_rest_logging_decorator.h │ │ │ ├── target_https_proxies_rest_metadata_decorator.cc │ │ │ ├── target_https_proxies_rest_metadata_decorator.h │ │ │ ├── target_https_proxies_rest_stub.cc │ │ │ ├── target_https_proxies_rest_stub.h │ │ │ ├── target_https_proxies_rest_stub_factory.cc │ │ │ ├── target_https_proxies_rest_stub_factory.h │ │ │ ├── target_https_proxies_retry_traits.h │ │ │ ├── target_https_proxies_sources.cc │ │ │ ├── target_https_proxies_tracing_connection.cc │ │ │ └── target_https_proxies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_target_https_proxies_connection.h │ │ │ ├── samples │ │ │ └── target_https_proxies_client_samples.cc │ │ │ ├── target_https_proxies_client.cc │ │ │ ├── target_https_proxies_client.h │ │ │ ├── target_https_proxies_connection.cc │ │ │ ├── target_https_proxies_connection.h │ │ │ ├── target_https_proxies_connection_idempotency_policy.cc │ │ │ ├── target_https_proxies_connection_idempotency_policy.h │ │ │ ├── target_https_proxies_options.h │ │ │ ├── target_https_proxies_proto_export.h │ │ │ ├── target_https_proxies_rest_connection.cc │ │ │ └── target_https_proxies_rest_connection.h │ ├── target_instances │ │ └── v1 │ │ │ ├── internal │ │ │ ├── target_instances_option_defaults.cc │ │ │ ├── target_instances_option_defaults.h │ │ │ ├── target_instances_rest_connection_impl.cc │ │ │ ├── target_instances_rest_connection_impl.h │ │ │ ├── target_instances_rest_logging_decorator.cc │ │ │ ├── target_instances_rest_logging_decorator.h │ │ │ ├── target_instances_rest_metadata_decorator.cc │ │ │ ├── target_instances_rest_metadata_decorator.h │ │ │ ├── target_instances_rest_stub.cc │ │ │ ├── target_instances_rest_stub.h │ │ │ ├── target_instances_rest_stub_factory.cc │ │ │ ├── target_instances_rest_stub_factory.h │ │ │ ├── target_instances_retry_traits.h │ │ │ ├── target_instances_sources.cc │ │ │ ├── target_instances_tracing_connection.cc │ │ │ └── target_instances_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_target_instances_connection.h │ │ │ ├── samples │ │ │ └── target_instances_client_samples.cc │ │ │ ├── target_instances_client.cc │ │ │ ├── target_instances_client.h │ │ │ ├── target_instances_connection.cc │ │ │ ├── target_instances_connection.h │ │ │ ├── target_instances_connection_idempotency_policy.cc │ │ │ ├── target_instances_connection_idempotency_policy.h │ │ │ ├── target_instances_options.h │ │ │ ├── target_instances_proto_export.h │ │ │ ├── target_instances_rest_connection.cc │ │ │ └── target_instances_rest_connection.h │ ├── target_pools │ │ └── v1 │ │ │ ├── internal │ │ │ ├── target_pools_option_defaults.cc │ │ │ ├── target_pools_option_defaults.h │ │ │ ├── target_pools_rest_connection_impl.cc │ │ │ ├── target_pools_rest_connection_impl.h │ │ │ ├── target_pools_rest_logging_decorator.cc │ │ │ ├── target_pools_rest_logging_decorator.h │ │ │ ├── target_pools_rest_metadata_decorator.cc │ │ │ ├── target_pools_rest_metadata_decorator.h │ │ │ ├── target_pools_rest_stub.cc │ │ │ ├── target_pools_rest_stub.h │ │ │ ├── target_pools_rest_stub_factory.cc │ │ │ ├── target_pools_rest_stub_factory.h │ │ │ ├── target_pools_retry_traits.h │ │ │ ├── target_pools_sources.cc │ │ │ ├── target_pools_tracing_connection.cc │ │ │ └── target_pools_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_target_pools_connection.h │ │ │ ├── samples │ │ │ └── target_pools_client_samples.cc │ │ │ ├── target_pools_client.cc │ │ │ ├── target_pools_client.h │ │ │ ├── target_pools_connection.cc │ │ │ ├── target_pools_connection.h │ │ │ ├── target_pools_connection_idempotency_policy.cc │ │ │ ├── target_pools_connection_idempotency_policy.h │ │ │ ├── target_pools_options.h │ │ │ ├── target_pools_proto_export.h │ │ │ ├── target_pools_rest_connection.cc │ │ │ └── target_pools_rest_connection.h │ ├── target_ssl_proxies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── target_ssl_proxies_option_defaults.cc │ │ │ ├── target_ssl_proxies_option_defaults.h │ │ │ ├── target_ssl_proxies_rest_connection_impl.cc │ │ │ ├── target_ssl_proxies_rest_connection_impl.h │ │ │ ├── target_ssl_proxies_rest_logging_decorator.cc │ │ │ ├── target_ssl_proxies_rest_logging_decorator.h │ │ │ ├── target_ssl_proxies_rest_metadata_decorator.cc │ │ │ ├── target_ssl_proxies_rest_metadata_decorator.h │ │ │ ├── target_ssl_proxies_rest_stub.cc │ │ │ ├── target_ssl_proxies_rest_stub.h │ │ │ ├── target_ssl_proxies_rest_stub_factory.cc │ │ │ ├── target_ssl_proxies_rest_stub_factory.h │ │ │ ├── target_ssl_proxies_retry_traits.h │ │ │ ├── target_ssl_proxies_sources.cc │ │ │ ├── target_ssl_proxies_tracing_connection.cc │ │ │ └── target_ssl_proxies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_target_ssl_proxies_connection.h │ │ │ ├── samples │ │ │ └── target_ssl_proxies_client_samples.cc │ │ │ ├── target_ssl_proxies_client.cc │ │ │ ├── target_ssl_proxies_client.h │ │ │ ├── target_ssl_proxies_connection.cc │ │ │ ├── target_ssl_proxies_connection.h │ │ │ ├── target_ssl_proxies_connection_idempotency_policy.cc │ │ │ ├── target_ssl_proxies_connection_idempotency_policy.h │ │ │ ├── target_ssl_proxies_options.h │ │ │ ├── target_ssl_proxies_proto_export.h │ │ │ ├── target_ssl_proxies_rest_connection.cc │ │ │ └── target_ssl_proxies_rest_connection.h │ ├── target_tcp_proxies │ │ └── v1 │ │ │ ├── internal │ │ │ ├── target_tcp_proxies_option_defaults.cc │ │ │ ├── target_tcp_proxies_option_defaults.h │ │ │ ├── target_tcp_proxies_rest_connection_impl.cc │ │ │ ├── target_tcp_proxies_rest_connection_impl.h │ │ │ ├── target_tcp_proxies_rest_logging_decorator.cc │ │ │ ├── target_tcp_proxies_rest_logging_decorator.h │ │ │ ├── target_tcp_proxies_rest_metadata_decorator.cc │ │ │ ├── target_tcp_proxies_rest_metadata_decorator.h │ │ │ ├── target_tcp_proxies_rest_stub.cc │ │ │ ├── target_tcp_proxies_rest_stub.h │ │ │ ├── target_tcp_proxies_rest_stub_factory.cc │ │ │ ├── target_tcp_proxies_rest_stub_factory.h │ │ │ ├── target_tcp_proxies_retry_traits.h │ │ │ ├── target_tcp_proxies_sources.cc │ │ │ ├── target_tcp_proxies_tracing_connection.cc │ │ │ └── target_tcp_proxies_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_target_tcp_proxies_connection.h │ │ │ ├── samples │ │ │ └── target_tcp_proxies_client_samples.cc │ │ │ ├── target_tcp_proxies_client.cc │ │ │ ├── target_tcp_proxies_client.h │ │ │ ├── target_tcp_proxies_connection.cc │ │ │ ├── target_tcp_proxies_connection.h │ │ │ ├── target_tcp_proxies_connection_idempotency_policy.cc │ │ │ ├── target_tcp_proxies_connection_idempotency_policy.h │ │ │ ├── target_tcp_proxies_options.h │ │ │ ├── target_tcp_proxies_proto_export.h │ │ │ ├── target_tcp_proxies_rest_connection.cc │ │ │ └── target_tcp_proxies_rest_connection.h │ ├── target_vpn_gateways │ │ └── v1 │ │ │ ├── internal │ │ │ ├── target_vpn_gateways_option_defaults.cc │ │ │ ├── target_vpn_gateways_option_defaults.h │ │ │ ├── target_vpn_gateways_rest_connection_impl.cc │ │ │ ├── target_vpn_gateways_rest_connection_impl.h │ │ │ ├── target_vpn_gateways_rest_logging_decorator.cc │ │ │ ├── target_vpn_gateways_rest_logging_decorator.h │ │ │ ├── target_vpn_gateways_rest_metadata_decorator.cc │ │ │ ├── target_vpn_gateways_rest_metadata_decorator.h │ │ │ ├── target_vpn_gateways_rest_stub.cc │ │ │ ├── target_vpn_gateways_rest_stub.h │ │ │ ├── target_vpn_gateways_rest_stub_factory.cc │ │ │ ├── target_vpn_gateways_rest_stub_factory.h │ │ │ ├── target_vpn_gateways_retry_traits.h │ │ │ ├── target_vpn_gateways_sources.cc │ │ │ ├── target_vpn_gateways_tracing_connection.cc │ │ │ └── target_vpn_gateways_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_target_vpn_gateways_connection.h │ │ │ ├── samples │ │ │ └── target_vpn_gateways_client_samples.cc │ │ │ ├── target_vpn_gateways_client.cc │ │ │ ├── target_vpn_gateways_client.h │ │ │ ├── target_vpn_gateways_connection.cc │ │ │ ├── target_vpn_gateways_connection.h │ │ │ ├── target_vpn_gateways_connection_idempotency_policy.cc │ │ │ ├── target_vpn_gateways_connection_idempotency_policy.h │ │ │ ├── target_vpn_gateways_options.h │ │ │ ├── target_vpn_gateways_proto_export.h │ │ │ ├── target_vpn_gateways_rest_connection.cc │ │ │ └── target_vpn_gateways_rest_connection.h │ ├── url_maps │ │ └── v1 │ │ │ ├── internal │ │ │ ├── url_maps_option_defaults.cc │ │ │ ├── url_maps_option_defaults.h │ │ │ ├── url_maps_rest_connection_impl.cc │ │ │ ├── url_maps_rest_connection_impl.h │ │ │ ├── url_maps_rest_logging_decorator.cc │ │ │ ├── url_maps_rest_logging_decorator.h │ │ │ ├── url_maps_rest_metadata_decorator.cc │ │ │ ├── url_maps_rest_metadata_decorator.h │ │ │ ├── url_maps_rest_stub.cc │ │ │ ├── url_maps_rest_stub.h │ │ │ ├── url_maps_rest_stub_factory.cc │ │ │ ├── url_maps_rest_stub_factory.h │ │ │ ├── url_maps_retry_traits.h │ │ │ ├── url_maps_sources.cc │ │ │ ├── url_maps_tracing_connection.cc │ │ │ └── url_maps_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_url_maps_connection.h │ │ │ ├── samples │ │ │ └── url_maps_client_samples.cc │ │ │ ├── url_maps_client.cc │ │ │ ├── url_maps_client.h │ │ │ ├── url_maps_connection.cc │ │ │ ├── url_maps_connection.h │ │ │ ├── url_maps_connection_idempotency_policy.cc │ │ │ ├── url_maps_connection_idempotency_policy.h │ │ │ ├── url_maps_options.h │ │ │ ├── url_maps_proto_export.h │ │ │ ├── url_maps_rest_connection.cc │ │ │ └── url_maps_rest_connection.h │ ├── v1 │ │ └── .repo-metadata.json │ ├── vpn_gateways │ │ └── v1 │ │ │ ├── internal │ │ │ ├── vpn_gateways_option_defaults.cc │ │ │ ├── vpn_gateways_option_defaults.h │ │ │ ├── vpn_gateways_rest_connection_impl.cc │ │ │ ├── vpn_gateways_rest_connection_impl.h │ │ │ ├── vpn_gateways_rest_logging_decorator.cc │ │ │ ├── vpn_gateways_rest_logging_decorator.h │ │ │ ├── vpn_gateways_rest_metadata_decorator.cc │ │ │ ├── vpn_gateways_rest_metadata_decorator.h │ │ │ ├── vpn_gateways_rest_stub.cc │ │ │ ├── vpn_gateways_rest_stub.h │ │ │ ├── vpn_gateways_rest_stub_factory.cc │ │ │ ├── vpn_gateways_rest_stub_factory.h │ │ │ ├── vpn_gateways_retry_traits.h │ │ │ ├── vpn_gateways_sources.cc │ │ │ ├── vpn_gateways_tracing_connection.cc │ │ │ └── vpn_gateways_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_vpn_gateways_connection.h │ │ │ ├── samples │ │ │ └── vpn_gateways_client_samples.cc │ │ │ ├── vpn_gateways_client.cc │ │ │ ├── vpn_gateways_client.h │ │ │ ├── vpn_gateways_connection.cc │ │ │ ├── vpn_gateways_connection.h │ │ │ ├── vpn_gateways_connection_idempotency_policy.cc │ │ │ ├── vpn_gateways_connection_idempotency_policy.h │ │ │ ├── vpn_gateways_options.h │ │ │ ├── vpn_gateways_proto_export.h │ │ │ ├── vpn_gateways_rest_connection.cc │ │ │ └── vpn_gateways_rest_connection.h │ ├── vpn_tunnels │ │ └── v1 │ │ │ ├── internal │ │ │ ├── vpn_tunnels_option_defaults.cc │ │ │ ├── vpn_tunnels_option_defaults.h │ │ │ ├── vpn_tunnels_rest_connection_impl.cc │ │ │ ├── vpn_tunnels_rest_connection_impl.h │ │ │ ├── vpn_tunnels_rest_logging_decorator.cc │ │ │ ├── vpn_tunnels_rest_logging_decorator.h │ │ │ ├── vpn_tunnels_rest_metadata_decorator.cc │ │ │ ├── vpn_tunnels_rest_metadata_decorator.h │ │ │ ├── vpn_tunnels_rest_stub.cc │ │ │ ├── vpn_tunnels_rest_stub.h │ │ │ ├── vpn_tunnels_rest_stub_factory.cc │ │ │ ├── vpn_tunnels_rest_stub_factory.h │ │ │ ├── vpn_tunnels_retry_traits.h │ │ │ ├── vpn_tunnels_sources.cc │ │ │ ├── vpn_tunnels_tracing_connection.cc │ │ │ └── vpn_tunnels_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_vpn_tunnels_connection.h │ │ │ ├── samples │ │ │ └── vpn_tunnels_client_samples.cc │ │ │ ├── vpn_tunnels_client.cc │ │ │ ├── vpn_tunnels_client.h │ │ │ ├── vpn_tunnels_connection.cc │ │ │ ├── vpn_tunnels_connection.h │ │ │ ├── vpn_tunnels_connection_idempotency_policy.cc │ │ │ ├── vpn_tunnels_connection_idempotency_policy.h │ │ │ ├── vpn_tunnels_options.h │ │ │ ├── vpn_tunnels_proto_export.h │ │ │ ├── vpn_tunnels_rest_connection.cc │ │ │ └── vpn_tunnels_rest_connection.h │ ├── zone_operations │ │ └── v1 │ │ │ ├── internal │ │ │ ├── zone_operations_option_defaults.cc │ │ │ ├── zone_operations_option_defaults.h │ │ │ ├── zone_operations_rest_connection_impl.cc │ │ │ ├── zone_operations_rest_connection_impl.h │ │ │ ├── zone_operations_rest_logging_decorator.cc │ │ │ ├── zone_operations_rest_logging_decorator.h │ │ │ ├── zone_operations_rest_metadata_decorator.cc │ │ │ ├── zone_operations_rest_metadata_decorator.h │ │ │ ├── zone_operations_rest_stub.cc │ │ │ ├── zone_operations_rest_stub.h │ │ │ ├── zone_operations_rest_stub_factory.cc │ │ │ ├── zone_operations_rest_stub_factory.h │ │ │ ├── zone_operations_retry_traits.h │ │ │ ├── zone_operations_sources.cc │ │ │ ├── zone_operations_tracing_connection.cc │ │ │ └── zone_operations_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_zone_operations_connection.h │ │ │ ├── samples │ │ │ └── zone_operations_client_samples.cc │ │ │ ├── zone_operations_client.cc │ │ │ ├── zone_operations_client.h │ │ │ ├── zone_operations_connection.cc │ │ │ ├── zone_operations_connection.h │ │ │ ├── zone_operations_connection_idempotency_policy.cc │ │ │ ├── zone_operations_connection_idempotency_policy.h │ │ │ ├── zone_operations_options.h │ │ │ ├── zone_operations_proto_export.h │ │ │ ├── zone_operations_rest_connection.cc │ │ │ └── zone_operations_rest_connection.h │ └── zones │ │ └── v1 │ │ ├── internal │ │ ├── zones_option_defaults.cc │ │ ├── zones_option_defaults.h │ │ ├── zones_rest_connection_impl.cc │ │ ├── zones_rest_connection_impl.h │ │ ├── zones_rest_logging_decorator.cc │ │ ├── zones_rest_logging_decorator.h │ │ ├── zones_rest_metadata_decorator.cc │ │ ├── zones_rest_metadata_decorator.h │ │ ├── zones_rest_stub.cc │ │ ├── zones_rest_stub.h │ │ ├── zones_rest_stub_factory.cc │ │ ├── zones_rest_stub_factory.h │ │ ├── zones_retry_traits.h │ │ ├── zones_sources.cc │ │ ├── zones_tracing_connection.cc │ │ └── zones_tracing_connection.h │ │ ├── mocks │ │ └── mock_zones_connection.h │ │ ├── samples │ │ └── zones_client_samples.cc │ │ ├── zones_client.cc │ │ ├── zones_client.h │ │ ├── zones_connection.cc │ │ ├── zones_connection.h │ │ ├── zones_connection_idempotency_policy.cc │ │ ├── zones_connection_idempotency_policy.h │ │ ├── zones_options.h │ │ ├── zones_proto_export.h │ │ ├── zones_rest_connection.cc │ │ └── zones_rest_connection.h │ ├── confidentialcomputing │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── confidential_computing_client.cc │ │ ├── confidential_computing_client.h │ │ ├── confidential_computing_connection.cc │ │ ├── confidential_computing_connection.h │ │ ├── confidential_computing_connection_idempotency_policy.cc │ │ ├── confidential_computing_connection_idempotency_policy.h │ │ ├── confidential_computing_options.h │ │ ├── internal │ │ ├── confidential_computing_auth_decorator.cc │ │ ├── confidential_computing_auth_decorator.h │ │ ├── confidential_computing_connection_impl.cc │ │ ├── confidential_computing_connection_impl.h │ │ ├── confidential_computing_logging_decorator.cc │ │ ├── confidential_computing_logging_decorator.h │ │ ├── confidential_computing_metadata_decorator.cc │ │ ├── confidential_computing_metadata_decorator.h │ │ ├── confidential_computing_option_defaults.cc │ │ ├── confidential_computing_option_defaults.h │ │ ├── confidential_computing_retry_traits.h │ │ ├── confidential_computing_sources.cc │ │ ├── confidential_computing_stub.cc │ │ ├── confidential_computing_stub.h │ │ ├── confidential_computing_stub_factory.cc │ │ ├── confidential_computing_stub_factory.h │ │ ├── confidential_computing_tracing_connection.cc │ │ ├── confidential_computing_tracing_connection.h │ │ ├── confidential_computing_tracing_stub.cc │ │ └── confidential_computing_tracing_stub.h │ │ ├── mocks │ │ └── mock_confidential_computing_connection.h │ │ └── samples │ │ └── confidential_computing_client_samples.cc │ ├── config-rest-protobuf.cmake.in │ ├── config-rest.cmake.in │ ├── config-universe-domain.cmake.in │ ├── config.cmake.in │ ├── config │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── config_client.cc │ │ ├── config_client.h │ │ ├── config_connection.cc │ │ ├── config_connection.h │ │ ├── config_connection_idempotency_policy.cc │ │ ├── config_connection_idempotency_policy.h │ │ ├── config_options.h │ │ ├── internal │ │ ├── config_auth_decorator.cc │ │ ├── config_auth_decorator.h │ │ ├── config_connection_impl.cc │ │ ├── config_connection_impl.h │ │ ├── config_logging_decorator.cc │ │ ├── config_logging_decorator.h │ │ ├── config_metadata_decorator.cc │ │ ├── config_metadata_decorator.h │ │ ├── config_option_defaults.cc │ │ ├── config_option_defaults.h │ │ ├── config_retry_traits.h │ │ ├── config_sources.cc │ │ ├── config_stub.cc │ │ ├── config_stub.h │ │ ├── config_stub_factory.cc │ │ ├── config_stub_factory.h │ │ ├── config_tracing_connection.cc │ │ ├── config_tracing_connection.h │ │ ├── config_tracing_stub.cc │ │ └── config_tracing_stub.h │ │ ├── mocks │ │ └── mock_config_connection.h │ │ └── samples │ │ └── config_client_samples.cc │ ├── configdelivery │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── config_delivery_client.cc │ │ ├── config_delivery_client.h │ │ ├── config_delivery_connection.cc │ │ ├── config_delivery_connection.h │ │ ├── config_delivery_connection_idempotency_policy.cc │ │ ├── config_delivery_connection_idempotency_policy.h │ │ ├── config_delivery_options.h │ │ ├── internal │ │ ├── config_delivery_auth_decorator.cc │ │ ├── config_delivery_auth_decorator.h │ │ ├── config_delivery_connection_impl.cc │ │ ├── config_delivery_connection_impl.h │ │ ├── config_delivery_logging_decorator.cc │ │ ├── config_delivery_logging_decorator.h │ │ ├── config_delivery_metadata_decorator.cc │ │ ├── config_delivery_metadata_decorator.h │ │ ├── config_delivery_option_defaults.cc │ │ ├── config_delivery_option_defaults.h │ │ ├── config_delivery_retry_traits.h │ │ ├── config_delivery_sources.cc │ │ ├── config_delivery_stub.cc │ │ ├── config_delivery_stub.h │ │ ├── config_delivery_stub_factory.cc │ │ ├── config_delivery_stub_factory.h │ │ ├── config_delivery_tracing_connection.cc │ │ ├── config_delivery_tracing_connection.h │ │ ├── config_delivery_tracing_stub.cc │ │ └── config_delivery_tracing_stub.h │ │ ├── mocks │ │ └── mock_config_delivery_connection.h │ │ └── samples │ │ └── config_delivery_client_samples.cc │ ├── connection_options.cc │ ├── connection_options.h │ ├── connection_options_test.cc │ ├── connectors │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── connectors_client.h │ ├── connectors_connection.h │ ├── connectors_connection_idempotency_policy.h │ ├── connectors_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_connectors_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── connectors_client.cc │ │ ├── connectors_client.h │ │ ├── connectors_connection.cc │ │ ├── connectors_connection.h │ │ ├── connectors_connection_idempotency_policy.cc │ │ ├── connectors_connection_idempotency_policy.h │ │ ├── connectors_options.h │ │ ├── internal │ │ ├── connectors_auth_decorator.cc │ │ ├── connectors_auth_decorator.h │ │ ├── connectors_connection_impl.cc │ │ ├── connectors_connection_impl.h │ │ ├── connectors_logging_decorator.cc │ │ ├── connectors_logging_decorator.h │ │ ├── connectors_metadata_decorator.cc │ │ ├── connectors_metadata_decorator.h │ │ ├── connectors_option_defaults.cc │ │ ├── connectors_option_defaults.h │ │ ├── connectors_retry_traits.h │ │ ├── connectors_sources.cc │ │ ├── connectors_stub.cc │ │ ├── connectors_stub.h │ │ ├── connectors_stub_factory.cc │ │ ├── connectors_stub_factory.h │ │ ├── connectors_tracing_connection.cc │ │ ├── connectors_tracing_connection.h │ │ ├── connectors_tracing_stub.cc │ │ └── connectors_tracing_stub.h │ │ ├── mocks │ │ └── mock_connectors_connection.h │ │ └── samples │ │ └── connectors_client_samples.cc │ ├── contactcenterinsights │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── contact_center_insights_client.h │ ├── contact_center_insights_connection.h │ ├── contact_center_insights_connection_idempotency_policy.h │ ├── contact_center_insights_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_contact_center_insights_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── contact_center_insights_client.cc │ │ ├── contact_center_insights_client.h │ │ ├── contact_center_insights_connection.cc │ │ ├── contact_center_insights_connection.h │ │ ├── contact_center_insights_connection_idempotency_policy.cc │ │ ├── contact_center_insights_connection_idempotency_policy.h │ │ ├── contact_center_insights_options.h │ │ ├── internal │ │ ├── contact_center_insights_auth_decorator.cc │ │ ├── contact_center_insights_auth_decorator.h │ │ ├── contact_center_insights_connection_impl.cc │ │ ├── contact_center_insights_connection_impl.h │ │ ├── contact_center_insights_logging_decorator.cc │ │ ├── contact_center_insights_logging_decorator.h │ │ ├── contact_center_insights_metadata_decorator.cc │ │ ├── contact_center_insights_metadata_decorator.h │ │ ├── contact_center_insights_option_defaults.cc │ │ ├── contact_center_insights_option_defaults.h │ │ ├── contact_center_insights_retry_traits.h │ │ ├── contact_center_insights_sources.cc │ │ ├── contact_center_insights_stub.cc │ │ ├── contact_center_insights_stub.h │ │ ├── contact_center_insights_stub_factory.cc │ │ ├── contact_center_insights_stub_factory.h │ │ ├── contact_center_insights_tracing_connection.cc │ │ ├── contact_center_insights_tracing_connection.h │ │ ├── contact_center_insights_tracing_stub.cc │ │ └── contact_center_insights_tracing_stub.h │ │ ├── mocks │ │ └── mock_contact_center_insights_connection.h │ │ └── samples │ │ └── contact_center_insights_client_samples.cc │ ├── container │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── cluster_manager_client.h │ ├── cluster_manager_connection.h │ ├── cluster_manager_connection_idempotency_policy.h │ ├── cluster_manager_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_cluster_manager_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── cluster_manager_client.cc │ │ ├── cluster_manager_client.h │ │ ├── cluster_manager_connection.cc │ │ ├── cluster_manager_connection.h │ │ ├── cluster_manager_connection_idempotency_policy.cc │ │ ├── cluster_manager_connection_idempotency_policy.h │ │ ├── cluster_manager_options.h │ │ ├── internal │ │ ├── cluster_manager_auth_decorator.cc │ │ ├── cluster_manager_auth_decorator.h │ │ ├── cluster_manager_connection_impl.cc │ │ ├── cluster_manager_connection_impl.h │ │ ├── cluster_manager_logging_decorator.cc │ │ ├── cluster_manager_logging_decorator.h │ │ ├── cluster_manager_metadata_decorator.cc │ │ ├── cluster_manager_metadata_decorator.h │ │ ├── cluster_manager_option_defaults.cc │ │ ├── cluster_manager_option_defaults.h │ │ ├── cluster_manager_retry_traits.h │ │ ├── cluster_manager_sources.cc │ │ ├── cluster_manager_stub.cc │ │ ├── cluster_manager_stub.h │ │ ├── cluster_manager_stub_factory.cc │ │ ├── cluster_manager_stub_factory.h │ │ ├── cluster_manager_tracing_connection.cc │ │ ├── cluster_manager_tracing_connection.h │ │ ├── cluster_manager_tracing_stub.cc │ │ └── cluster_manager_tracing_stub.h │ │ ├── mocks │ │ └── mock_cluster_manager_connection.h │ │ └── samples │ │ └── cluster_manager_client_samples.cc │ ├── containeranalysis │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── container_analysis_client.h │ ├── container_analysis_connection.h │ ├── container_analysis_connection_idempotency_policy.h │ ├── container_analysis_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── grafeas_client.h │ ├── grafeas_connection.h │ ├── grafeas_connection_idempotency_policy.h │ ├── grafeas_options.h │ ├── mocks │ │ ├── mock_container_analysis_connection.h │ │ └── mock_grafeas_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── container_analysis_client.cc │ │ ├── container_analysis_client.h │ │ ├── container_analysis_connection.cc │ │ ├── container_analysis_connection.h │ │ ├── container_analysis_connection_idempotency_policy.cc │ │ ├── container_analysis_connection_idempotency_policy.h │ │ ├── container_analysis_options.h │ │ ├── grafeas_client.cc │ │ ├── grafeas_client.h │ │ ├── grafeas_connection.cc │ │ ├── grafeas_connection.h │ │ ├── grafeas_connection_idempotency_policy.cc │ │ ├── grafeas_connection_idempotency_policy.h │ │ ├── grafeas_options.h │ │ ├── internal │ │ ├── container_analysis_auth_decorator.cc │ │ ├── container_analysis_auth_decorator.h │ │ ├── container_analysis_connection_impl.cc │ │ ├── container_analysis_connection_impl.h │ │ ├── container_analysis_logging_decorator.cc │ │ ├── container_analysis_logging_decorator.h │ │ ├── container_analysis_metadata_decorator.cc │ │ ├── container_analysis_metadata_decorator.h │ │ ├── container_analysis_option_defaults.cc │ │ ├── container_analysis_option_defaults.h │ │ ├── container_analysis_retry_traits.h │ │ ├── container_analysis_sources.cc │ │ ├── container_analysis_stub.cc │ │ ├── container_analysis_stub.h │ │ ├── container_analysis_stub_factory.cc │ │ ├── container_analysis_stub_factory.h │ │ ├── container_analysis_tracing_connection.cc │ │ ├── container_analysis_tracing_connection.h │ │ ├── container_analysis_tracing_stub.cc │ │ ├── container_analysis_tracing_stub.h │ │ ├── grafeas_auth_decorator.cc │ │ ├── grafeas_auth_decorator.h │ │ ├── grafeas_connection_impl.cc │ │ ├── grafeas_connection_impl.h │ │ ├── grafeas_logging_decorator.cc │ │ ├── grafeas_logging_decorator.h │ │ ├── grafeas_metadata_decorator.cc │ │ ├── grafeas_metadata_decorator.h │ │ ├── grafeas_option_defaults.cc │ │ ├── grafeas_option_defaults.h │ │ ├── grafeas_retry_traits.h │ │ ├── grafeas_sources.cc │ │ ├── grafeas_stub.cc │ │ ├── grafeas_stub.h │ │ ├── grafeas_stub_factory.cc │ │ ├── grafeas_stub_factory.h │ │ ├── grafeas_tracing_connection.cc │ │ ├── grafeas_tracing_connection.h │ │ ├── grafeas_tracing_stub.cc │ │ └── grafeas_tracing_stub.h │ │ ├── mocks │ │ ├── mock_container_analysis_connection.h │ │ └── mock_grafeas_connection.h │ │ └── samples │ │ ├── container_analysis_client_samples.cc │ │ └── grafeas_client_samples.cc │ ├── contentwarehouse │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── document_client.cc │ │ ├── document_client.h │ │ ├── document_connection.cc │ │ ├── document_connection.h │ │ ├── document_connection_idempotency_policy.cc │ │ ├── document_connection_idempotency_policy.h │ │ ├── document_link_client.cc │ │ ├── document_link_client.h │ │ ├── document_link_connection.cc │ │ ├── document_link_connection.h │ │ ├── document_link_connection_idempotency_policy.cc │ │ ├── document_link_connection_idempotency_policy.h │ │ ├── document_link_options.h │ │ ├── document_options.h │ │ ├── document_schema_client.cc │ │ ├── document_schema_client.h │ │ ├── document_schema_connection.cc │ │ ├── document_schema_connection.h │ │ ├── document_schema_connection_idempotency_policy.cc │ │ ├── document_schema_connection_idempotency_policy.h │ │ ├── document_schema_options.h │ │ ├── internal │ │ ├── document_auth_decorator.cc │ │ ├── document_auth_decorator.h │ │ ├── document_connection_impl.cc │ │ ├── document_connection_impl.h │ │ ├── document_link_auth_decorator.cc │ │ ├── document_link_auth_decorator.h │ │ ├── document_link_connection_impl.cc │ │ ├── document_link_connection_impl.h │ │ ├── document_link_logging_decorator.cc │ │ ├── document_link_logging_decorator.h │ │ ├── document_link_metadata_decorator.cc │ │ ├── document_link_metadata_decorator.h │ │ ├── document_link_option_defaults.cc │ │ ├── document_link_option_defaults.h │ │ ├── document_link_retry_traits.h │ │ ├── document_link_sources.cc │ │ ├── document_link_stub.cc │ │ ├── document_link_stub.h │ │ ├── document_link_stub_factory.cc │ │ ├── document_link_stub_factory.h │ │ ├── document_link_tracing_connection.cc │ │ ├── document_link_tracing_connection.h │ │ ├── document_link_tracing_stub.cc │ │ ├── document_link_tracing_stub.h │ │ ├── document_logging_decorator.cc │ │ ├── document_logging_decorator.h │ │ ├── document_metadata_decorator.cc │ │ ├── document_metadata_decorator.h │ │ ├── document_option_defaults.cc │ │ ├── document_option_defaults.h │ │ ├── document_retry_traits.h │ │ ├── document_schema_auth_decorator.cc │ │ ├── document_schema_auth_decorator.h │ │ ├── document_schema_connection_impl.cc │ │ ├── document_schema_connection_impl.h │ │ ├── document_schema_logging_decorator.cc │ │ ├── document_schema_logging_decorator.h │ │ ├── document_schema_metadata_decorator.cc │ │ ├── document_schema_metadata_decorator.h │ │ ├── document_schema_option_defaults.cc │ │ ├── document_schema_option_defaults.h │ │ ├── document_schema_retry_traits.h │ │ ├── document_schema_sources.cc │ │ ├── document_schema_stub.cc │ │ ├── document_schema_stub.h │ │ ├── document_schema_stub_factory.cc │ │ ├── document_schema_stub_factory.h │ │ ├── document_schema_tracing_connection.cc │ │ ├── document_schema_tracing_connection.h │ │ ├── document_schema_tracing_stub.cc │ │ ├── document_schema_tracing_stub.h │ │ ├── document_sources.cc │ │ ├── document_stub.cc │ │ ├── document_stub.h │ │ ├── document_stub_factory.cc │ │ ├── document_stub_factory.h │ │ ├── document_tracing_connection.cc │ │ ├── document_tracing_connection.h │ │ ├── document_tracing_stub.cc │ │ ├── document_tracing_stub.h │ │ ├── pipeline_auth_decorator.cc │ │ ├── pipeline_auth_decorator.h │ │ ├── pipeline_connection_impl.cc │ │ ├── pipeline_connection_impl.h │ │ ├── pipeline_logging_decorator.cc │ │ ├── pipeline_logging_decorator.h │ │ ├── pipeline_metadata_decorator.cc │ │ ├── pipeline_metadata_decorator.h │ │ ├── pipeline_option_defaults.cc │ │ ├── pipeline_option_defaults.h │ │ ├── pipeline_retry_traits.h │ │ ├── pipeline_sources.cc │ │ ├── pipeline_stub.cc │ │ ├── pipeline_stub.h │ │ ├── pipeline_stub_factory.cc │ │ ├── pipeline_stub_factory.h │ │ ├── pipeline_tracing_connection.cc │ │ ├── pipeline_tracing_connection.h │ │ ├── pipeline_tracing_stub.cc │ │ ├── pipeline_tracing_stub.h │ │ ├── rule_set_auth_decorator.cc │ │ ├── rule_set_auth_decorator.h │ │ ├── rule_set_connection_impl.cc │ │ ├── rule_set_connection_impl.h │ │ ├── rule_set_logging_decorator.cc │ │ ├── rule_set_logging_decorator.h │ │ ├── rule_set_metadata_decorator.cc │ │ ├── rule_set_metadata_decorator.h │ │ ├── rule_set_option_defaults.cc │ │ ├── rule_set_option_defaults.h │ │ ├── rule_set_retry_traits.h │ │ ├── rule_set_sources.cc │ │ ├── rule_set_stub.cc │ │ ├── rule_set_stub.h │ │ ├── rule_set_stub_factory.cc │ │ ├── rule_set_stub_factory.h │ │ ├── rule_set_tracing_connection.cc │ │ ├── rule_set_tracing_connection.h │ │ ├── rule_set_tracing_stub.cc │ │ ├── rule_set_tracing_stub.h │ │ ├── synonym_set_auth_decorator.cc │ │ ├── synonym_set_auth_decorator.h │ │ ├── synonym_set_connection_impl.cc │ │ ├── synonym_set_connection_impl.h │ │ ├── synonym_set_logging_decorator.cc │ │ ├── synonym_set_logging_decorator.h │ │ ├── synonym_set_metadata_decorator.cc │ │ ├── synonym_set_metadata_decorator.h │ │ ├── synonym_set_option_defaults.cc │ │ ├── synonym_set_option_defaults.h │ │ ├── synonym_set_retry_traits.h │ │ ├── synonym_set_sources.cc │ │ ├── synonym_set_stub.cc │ │ ├── synonym_set_stub.h │ │ ├── synonym_set_stub_factory.cc │ │ ├── synonym_set_stub_factory.h │ │ ├── synonym_set_tracing_connection.cc │ │ ├── synonym_set_tracing_connection.h │ │ ├── synonym_set_tracing_stub.cc │ │ └── synonym_set_tracing_stub.h │ │ ├── mocks │ │ ├── mock_document_connection.h │ │ ├── mock_document_link_connection.h │ │ ├── mock_document_schema_connection.h │ │ ├── mock_pipeline_connection.h │ │ ├── mock_rule_set_connection.h │ │ └── mock_synonym_set_connection.h │ │ ├── pipeline_client.cc │ │ ├── pipeline_client.h │ │ ├── pipeline_connection.cc │ │ ├── pipeline_connection.h │ │ ├── pipeline_connection_idempotency_policy.cc │ │ ├── pipeline_connection_idempotency_policy.h │ │ ├── pipeline_options.h │ │ ├── rule_set_client.cc │ │ ├── rule_set_client.h │ │ ├── rule_set_connection.cc │ │ ├── rule_set_connection.h │ │ ├── rule_set_connection_idempotency_policy.cc │ │ ├── rule_set_connection_idempotency_policy.h │ │ ├── rule_set_options.h │ │ ├── samples │ │ ├── document_client_samples.cc │ │ ├── document_link_client_samples.cc │ │ ├── document_schema_client_samples.cc │ │ ├── pipeline_client_samples.cc │ │ ├── rule_set_client_samples.cc │ │ └── synonym_set_client_samples.cc │ │ ├── synonym_set_client.cc │ │ ├── synonym_set_client.h │ │ ├── synonym_set_connection.cc │ │ ├── synonym_set_connection.h │ │ ├── synonym_set_connection_idempotency_policy.cc │ │ ├── synonym_set_connection_idempotency_policy.h │ │ └── synonym_set_options.h │ ├── credentials.cc │ ├── credentials.h │ ├── datacatalog │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── data_catalog_client.h │ ├── data_catalog_connection.h │ ├── data_catalog_connection_idempotency_policy.h │ ├── data_catalog_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── lineage │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── lineage_auth_decorator.cc │ │ │ ├── lineage_auth_decorator.h │ │ │ ├── lineage_connection_impl.cc │ │ │ ├── lineage_connection_impl.h │ │ │ ├── lineage_logging_decorator.cc │ │ │ ├── lineage_logging_decorator.h │ │ │ ├── lineage_metadata_decorator.cc │ │ │ ├── lineage_metadata_decorator.h │ │ │ ├── lineage_option_defaults.cc │ │ │ ├── lineage_option_defaults.h │ │ │ ├── lineage_retry_traits.h │ │ │ ├── lineage_sources.cc │ │ │ ├── lineage_stub.cc │ │ │ ├── lineage_stub.h │ │ │ ├── lineage_stub_factory.cc │ │ │ ├── lineage_stub_factory.h │ │ │ ├── lineage_tracing_connection.cc │ │ │ ├── lineage_tracing_connection.h │ │ │ ├── lineage_tracing_stub.cc │ │ │ └── lineage_tracing_stub.h │ │ │ ├── lineage_client.cc │ │ │ ├── lineage_client.h │ │ │ ├── lineage_connection.cc │ │ │ ├── lineage_connection.h │ │ │ ├── lineage_connection_idempotency_policy.cc │ │ │ ├── lineage_connection_idempotency_policy.h │ │ │ ├── lineage_options.h │ │ │ ├── mocks │ │ │ └── mock_lineage_connection.h │ │ │ └── samples │ │ │ └── lineage_client_samples.cc │ ├── mocks │ │ ├── mock_data_catalog_connection.h │ │ ├── mock_policy_tag_manager_connection.h │ │ └── mock_policy_tag_manager_serialization_connection.h │ ├── policy_tag_manager_client.h │ ├── policy_tag_manager_connection.h │ ├── policy_tag_manager_connection_idempotency_policy.h │ ├── policy_tag_manager_options.h │ ├── policy_tag_manager_serialization_client.h │ ├── policy_tag_manager_serialization_connection.h │ ├── policy_tag_manager_serialization_connection_idempotency_policy.h │ ├── policy_tag_manager_serialization_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── data_catalog_client.cc │ │ ├── data_catalog_client.h │ │ ├── data_catalog_connection.cc │ │ ├── data_catalog_connection.h │ │ ├── data_catalog_connection_idempotency_policy.cc │ │ ├── data_catalog_connection_idempotency_policy.h │ │ ├── data_catalog_options.h │ │ ├── internal │ │ ├── data_catalog_auth_decorator.cc │ │ ├── data_catalog_auth_decorator.h │ │ ├── data_catalog_connection_impl.cc │ │ ├── data_catalog_connection_impl.h │ │ ├── data_catalog_logging_decorator.cc │ │ ├── data_catalog_logging_decorator.h │ │ ├── data_catalog_metadata_decorator.cc │ │ ├── data_catalog_metadata_decorator.h │ │ ├── data_catalog_option_defaults.cc │ │ ├── data_catalog_option_defaults.h │ │ ├── data_catalog_retry_traits.h │ │ ├── data_catalog_sources.cc │ │ ├── data_catalog_stub.cc │ │ ├── data_catalog_stub.h │ │ ├── data_catalog_stub_factory.cc │ │ ├── data_catalog_stub_factory.h │ │ ├── data_catalog_tracing_connection.cc │ │ ├── data_catalog_tracing_connection.h │ │ ├── data_catalog_tracing_stub.cc │ │ ├── data_catalog_tracing_stub.h │ │ ├── policy_tag_manager_auth_decorator.cc │ │ ├── policy_tag_manager_auth_decorator.h │ │ ├── policy_tag_manager_connection_impl.cc │ │ ├── policy_tag_manager_connection_impl.h │ │ ├── policy_tag_manager_logging_decorator.cc │ │ ├── policy_tag_manager_logging_decorator.h │ │ ├── policy_tag_manager_metadata_decorator.cc │ │ ├── policy_tag_manager_metadata_decorator.h │ │ ├── policy_tag_manager_option_defaults.cc │ │ ├── policy_tag_manager_option_defaults.h │ │ ├── policy_tag_manager_retry_traits.h │ │ ├── policy_tag_manager_serialization_auth_decorator.cc │ │ ├── policy_tag_manager_serialization_auth_decorator.h │ │ ├── policy_tag_manager_serialization_connection_impl.cc │ │ ├── policy_tag_manager_serialization_connection_impl.h │ │ ├── policy_tag_manager_serialization_logging_decorator.cc │ │ ├── policy_tag_manager_serialization_logging_decorator.h │ │ ├── policy_tag_manager_serialization_metadata_decorator.cc │ │ ├── policy_tag_manager_serialization_metadata_decorator.h │ │ ├── policy_tag_manager_serialization_option_defaults.cc │ │ ├── policy_tag_manager_serialization_option_defaults.h │ │ ├── policy_tag_manager_serialization_retry_traits.h │ │ ├── policy_tag_manager_serialization_sources.cc │ │ ├── policy_tag_manager_serialization_stub.cc │ │ ├── policy_tag_manager_serialization_stub.h │ │ ├── policy_tag_manager_serialization_stub_factory.cc │ │ ├── policy_tag_manager_serialization_stub_factory.h │ │ ├── policy_tag_manager_serialization_tracing_connection.cc │ │ ├── policy_tag_manager_serialization_tracing_connection.h │ │ ├── policy_tag_manager_serialization_tracing_stub.cc │ │ ├── policy_tag_manager_serialization_tracing_stub.h │ │ ├── policy_tag_manager_sources.cc │ │ ├── policy_tag_manager_stub.cc │ │ ├── policy_tag_manager_stub.h │ │ ├── policy_tag_manager_stub_factory.cc │ │ ├── policy_tag_manager_stub_factory.h │ │ ├── policy_tag_manager_tracing_connection.cc │ │ ├── policy_tag_manager_tracing_connection.h │ │ ├── policy_tag_manager_tracing_stub.cc │ │ └── policy_tag_manager_tracing_stub.h │ │ ├── mocks │ │ ├── mock_data_catalog_connection.h │ │ ├── mock_policy_tag_manager_connection.h │ │ └── mock_policy_tag_manager_serialization_connection.h │ │ ├── policy_tag_manager_client.cc │ │ ├── policy_tag_manager_client.h │ │ ├── policy_tag_manager_connection.cc │ │ ├── policy_tag_manager_connection.h │ │ ├── policy_tag_manager_connection_idempotency_policy.cc │ │ ├── policy_tag_manager_connection_idempotency_policy.h │ │ ├── policy_tag_manager_options.h │ │ ├── policy_tag_manager_serialization_client.cc │ │ ├── policy_tag_manager_serialization_client.h │ │ ├── policy_tag_manager_serialization_connection.cc │ │ ├── policy_tag_manager_serialization_connection.h │ │ ├── policy_tag_manager_serialization_connection_idempotency_policy.cc │ │ ├── policy_tag_manager_serialization_connection_idempotency_policy.h │ │ ├── policy_tag_manager_serialization_options.h │ │ └── samples │ │ ├── data_catalog_client_samples.cc │ │ ├── policy_tag_manager_client_samples.cc │ │ └── policy_tag_manager_serialization_client_samples.cc │ ├── dataform │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── dataform_client.cc │ │ ├── dataform_client.h │ │ ├── dataform_connection.cc │ │ ├── dataform_connection.h │ │ ├── dataform_connection_idempotency_policy.cc │ │ ├── dataform_connection_idempotency_policy.h │ │ ├── dataform_options.h │ │ ├── internal │ │ ├── dataform_auth_decorator.cc │ │ ├── dataform_auth_decorator.h │ │ ├── dataform_connection_impl.cc │ │ ├── dataform_connection_impl.h │ │ ├── dataform_logging_decorator.cc │ │ ├── dataform_logging_decorator.h │ │ ├── dataform_metadata_decorator.cc │ │ ├── dataform_metadata_decorator.h │ │ ├── dataform_option_defaults.cc │ │ ├── dataform_option_defaults.h │ │ ├── dataform_retry_traits.h │ │ ├── dataform_sources.cc │ │ ├── dataform_stub.cc │ │ ├── dataform_stub.h │ │ ├── dataform_stub_factory.cc │ │ ├── dataform_stub_factory.h │ │ ├── dataform_tracing_connection.cc │ │ ├── dataform_tracing_connection.h │ │ ├── dataform_tracing_stub.cc │ │ └── dataform_tracing_stub.h │ │ ├── mocks │ │ └── mock_dataform_connection.h │ │ └── samples │ │ └── dataform_client_samples.cc │ ├── datafusion │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── data_fusion_client.cc │ │ ├── data_fusion_client.h │ │ ├── data_fusion_connection.cc │ │ ├── data_fusion_connection.h │ │ ├── data_fusion_connection_idempotency_policy.cc │ │ ├── data_fusion_connection_idempotency_policy.h │ │ ├── data_fusion_options.h │ │ ├── internal │ │ ├── data_fusion_auth_decorator.cc │ │ ├── data_fusion_auth_decorator.h │ │ ├── data_fusion_connection_impl.cc │ │ ├── data_fusion_connection_impl.h │ │ ├── data_fusion_logging_decorator.cc │ │ ├── data_fusion_logging_decorator.h │ │ ├── data_fusion_metadata_decorator.cc │ │ ├── data_fusion_metadata_decorator.h │ │ ├── data_fusion_option_defaults.cc │ │ ├── data_fusion_option_defaults.h │ │ ├── data_fusion_retry_traits.h │ │ ├── data_fusion_sources.cc │ │ ├── data_fusion_stub.cc │ │ ├── data_fusion_stub.h │ │ ├── data_fusion_stub_factory.cc │ │ ├── data_fusion_stub_factory.h │ │ ├── data_fusion_tracing_connection.cc │ │ ├── data_fusion_tracing_connection.h │ │ ├── data_fusion_tracing_stub.cc │ │ └── data_fusion_tracing_stub.h │ │ ├── mocks │ │ └── mock_data_fusion_connection.h │ │ └── samples │ │ └── data_fusion_client_samples.cc │ ├── datamigration │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── data_migration_client.h │ ├── data_migration_connection.h │ ├── data_migration_connection_idempotency_policy.h │ ├── data_migration_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_data_migration_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── data_migration_client.cc │ │ ├── data_migration_client.h │ │ ├── data_migration_connection.cc │ │ ├── data_migration_connection.h │ │ ├── data_migration_connection_idempotency_policy.cc │ │ ├── data_migration_connection_idempotency_policy.h │ │ ├── data_migration_options.h │ │ ├── internal │ │ ├── data_migration_auth_decorator.cc │ │ ├── data_migration_auth_decorator.h │ │ ├── data_migration_connection_impl.cc │ │ ├── data_migration_connection_impl.h │ │ ├── data_migration_logging_decorator.cc │ │ ├── data_migration_logging_decorator.h │ │ ├── data_migration_metadata_decorator.cc │ │ ├── data_migration_metadata_decorator.h │ │ ├── data_migration_option_defaults.cc │ │ ├── data_migration_option_defaults.h │ │ ├── data_migration_retry_traits.h │ │ ├── data_migration_sources.cc │ │ ├── data_migration_stub.cc │ │ ├── data_migration_stub.h │ │ ├── data_migration_stub_factory.cc │ │ ├── data_migration_stub_factory.h │ │ ├── data_migration_tracing_connection.cc │ │ ├── data_migration_tracing_connection.h │ │ ├── data_migration_tracing_stub.cc │ │ └── data_migration_tracing_stub.h │ │ ├── mocks │ │ └── mock_data_migration_connection.h │ │ └── samples │ │ └── data_migration_client_samples.cc │ ├── dataplex │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── content_client.h │ ├── content_connection.h │ ├── content_connection_idempotency_policy.h │ ├── content_options.h │ ├── dataplex_client.h │ ├── dataplex_connection.h │ ├── dataplex_connection_idempotency_policy.h │ ├── dataplex_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── metadata_client.h │ ├── metadata_connection.h │ ├── metadata_connection_idempotency_policy.h │ ├── metadata_options.h │ ├── mocks │ │ ├── mock_content_connection.h │ │ ├── mock_dataplex_connection.h │ │ └── mock_metadata_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── catalog_client.cc │ │ ├── catalog_client.h │ │ ├── catalog_connection.cc │ │ ├── catalog_connection.h │ │ ├── catalog_connection_idempotency_policy.cc │ │ ├── catalog_connection_idempotency_policy.h │ │ ├── catalog_options.h │ │ ├── content_client.cc │ │ ├── content_client.h │ │ ├── content_connection.cc │ │ ├── content_connection.h │ │ ├── content_connection_idempotency_policy.cc │ │ ├── content_connection_idempotency_policy.h │ │ ├── content_options.h │ │ ├── data_scan_client.cc │ │ ├── data_scan_client.h │ │ ├── data_scan_connection.cc │ │ ├── data_scan_connection.h │ │ ├── data_scan_connection_idempotency_policy.cc │ │ ├── data_scan_connection_idempotency_policy.h │ │ ├── data_scan_options.h │ │ ├── data_taxonomy_client.cc │ │ ├── data_taxonomy_client.h │ │ ├── data_taxonomy_connection.cc │ │ ├── data_taxonomy_connection.h │ │ ├── data_taxonomy_connection_idempotency_policy.cc │ │ ├── data_taxonomy_connection_idempotency_policy.h │ │ ├── data_taxonomy_options.h │ │ ├── dataplex_client.cc │ │ ├── dataplex_client.h │ │ ├── dataplex_connection.cc │ │ ├── dataplex_connection.h │ │ ├── dataplex_connection_idempotency_policy.cc │ │ ├── dataplex_connection_idempotency_policy.h │ │ ├── dataplex_options.h │ │ ├── internal │ │ ├── catalog_auth_decorator.cc │ │ ├── catalog_auth_decorator.h │ │ ├── catalog_connection_impl.cc │ │ ├── catalog_connection_impl.h │ │ ├── catalog_logging_decorator.cc │ │ ├── catalog_logging_decorator.h │ │ ├── catalog_metadata_decorator.cc │ │ ├── catalog_metadata_decorator.h │ │ ├── catalog_option_defaults.cc │ │ ├── catalog_option_defaults.h │ │ ├── catalog_retry_traits.h │ │ ├── catalog_sources.cc │ │ ├── catalog_stub.cc │ │ ├── catalog_stub.h │ │ ├── catalog_stub_factory.cc │ │ ├── catalog_stub_factory.h │ │ ├── catalog_tracing_connection.cc │ │ ├── catalog_tracing_connection.h │ │ ├── catalog_tracing_stub.cc │ │ ├── catalog_tracing_stub.h │ │ ├── content_auth_decorator.cc │ │ ├── content_auth_decorator.h │ │ ├── content_connection_impl.cc │ │ ├── content_connection_impl.h │ │ ├── content_logging_decorator.cc │ │ ├── content_logging_decorator.h │ │ ├── content_metadata_decorator.cc │ │ ├── content_metadata_decorator.h │ │ ├── content_option_defaults.cc │ │ ├── content_option_defaults.h │ │ ├── content_retry_traits.h │ │ ├── content_sources.cc │ │ ├── content_stub.cc │ │ ├── content_stub.h │ │ ├── content_stub_factory.cc │ │ ├── content_stub_factory.h │ │ ├── content_tracing_connection.cc │ │ ├── content_tracing_connection.h │ │ ├── content_tracing_stub.cc │ │ ├── content_tracing_stub.h │ │ ├── data_scan_auth_decorator.cc │ │ ├── data_scan_auth_decorator.h │ │ ├── data_scan_connection_impl.cc │ │ ├── data_scan_connection_impl.h │ │ ├── data_scan_logging_decorator.cc │ │ ├── data_scan_logging_decorator.h │ │ ├── data_scan_metadata_decorator.cc │ │ ├── data_scan_metadata_decorator.h │ │ ├── data_scan_option_defaults.cc │ │ ├── data_scan_option_defaults.h │ │ ├── data_scan_retry_traits.h │ │ ├── data_scan_sources.cc │ │ ├── data_scan_stub.cc │ │ ├── data_scan_stub.h │ │ ├── data_scan_stub_factory.cc │ │ ├── data_scan_stub_factory.h │ │ ├── data_scan_tracing_connection.cc │ │ ├── data_scan_tracing_connection.h │ │ ├── data_scan_tracing_stub.cc │ │ ├── data_scan_tracing_stub.h │ │ ├── data_taxonomy_auth_decorator.cc │ │ ├── data_taxonomy_auth_decorator.h │ │ ├── data_taxonomy_connection_impl.cc │ │ ├── data_taxonomy_connection_impl.h │ │ ├── data_taxonomy_logging_decorator.cc │ │ ├── data_taxonomy_logging_decorator.h │ │ ├── data_taxonomy_metadata_decorator.cc │ │ ├── data_taxonomy_metadata_decorator.h │ │ ├── data_taxonomy_option_defaults.cc │ │ ├── data_taxonomy_option_defaults.h │ │ ├── data_taxonomy_retry_traits.h │ │ ├── data_taxonomy_sources.cc │ │ ├── data_taxonomy_stub.cc │ │ ├── data_taxonomy_stub.h │ │ ├── data_taxonomy_stub_factory.cc │ │ ├── data_taxonomy_stub_factory.h │ │ ├── data_taxonomy_tracing_connection.cc │ │ ├── data_taxonomy_tracing_connection.h │ │ ├── data_taxonomy_tracing_stub.cc │ │ ├── data_taxonomy_tracing_stub.h │ │ ├── dataplex_auth_decorator.cc │ │ ├── dataplex_auth_decorator.h │ │ ├── dataplex_connection_impl.cc │ │ ├── dataplex_connection_impl.h │ │ ├── dataplex_logging_decorator.cc │ │ ├── dataplex_logging_decorator.h │ │ ├── dataplex_metadata_decorator.cc │ │ ├── dataplex_metadata_decorator.h │ │ ├── dataplex_option_defaults.cc │ │ ├── dataplex_option_defaults.h │ │ ├── dataplex_retry_traits.h │ │ ├── dataplex_sources.cc │ │ ├── dataplex_stub.cc │ │ ├── dataplex_stub.h │ │ ├── dataplex_stub_factory.cc │ │ ├── dataplex_stub_factory.h │ │ ├── dataplex_tracing_connection.cc │ │ ├── dataplex_tracing_connection.h │ │ ├── dataplex_tracing_stub.cc │ │ ├── dataplex_tracing_stub.h │ │ ├── metadata_auth_decorator.cc │ │ ├── metadata_auth_decorator.h │ │ ├── metadata_connection_impl.cc │ │ ├── metadata_connection_impl.h │ │ ├── metadata_logging_decorator.cc │ │ ├── metadata_logging_decorator.h │ │ ├── metadata_metadata_decorator.cc │ │ ├── metadata_metadata_decorator.h │ │ ├── metadata_option_defaults.cc │ │ ├── metadata_option_defaults.h │ │ ├── metadata_retry_traits.h │ │ ├── metadata_sources.cc │ │ ├── metadata_stub.cc │ │ ├── metadata_stub.h │ │ ├── metadata_stub_factory.cc │ │ ├── metadata_stub_factory.h │ │ ├── metadata_tracing_connection.cc │ │ ├── metadata_tracing_connection.h │ │ ├── metadata_tracing_stub.cc │ │ └── metadata_tracing_stub.h │ │ ├── metadata_client.cc │ │ ├── metadata_client.h │ │ ├── metadata_connection.cc │ │ ├── metadata_connection.h │ │ ├── metadata_connection_idempotency_policy.cc │ │ ├── metadata_connection_idempotency_policy.h │ │ ├── metadata_options.h │ │ ├── mocks │ │ ├── mock_catalog_connection.h │ │ ├── mock_content_connection.h │ │ ├── mock_data_scan_connection.h │ │ ├── mock_data_taxonomy_connection.h │ │ ├── mock_dataplex_connection.h │ │ └── mock_metadata_connection.h │ │ └── samples │ │ ├── catalog_client_samples.cc │ │ ├── content_client_samples.cc │ │ ├── data_scan_client_samples.cc │ │ ├── data_taxonomy_client_samples.cc │ │ ├── dataplex_client_samples.cc │ │ └── metadata_client_samples.cc │ ├── dataproc │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── autoscaling_policy_client.h │ ├── autoscaling_policy_connection.h │ ├── autoscaling_policy_connection_idempotency_policy.h │ ├── autoscaling_policy_options.h │ ├── batch_controller_client.h │ ├── batch_controller_connection.h │ ├── batch_controller_connection_idempotency_policy.h │ ├── batch_controller_options.h │ ├── cluster_controller_client.h │ ├── cluster_controller_connection.h │ ├── cluster_controller_connection_idempotency_policy.h │ ├── cluster_controller_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── job_controller_client.h │ ├── job_controller_connection.h │ ├── job_controller_connection_idempotency_policy.h │ ├── job_controller_options.h │ ├── mocks │ │ ├── mock_autoscaling_policy_connection.h │ │ ├── mock_batch_controller_connection.h │ │ ├── mock_cluster_controller_connection.h │ │ ├── mock_job_controller_connection.h │ │ └── mock_workflow_template_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── autoscaling_policy_client.cc │ │ ├── autoscaling_policy_client.h │ │ ├── autoscaling_policy_connection.cc │ │ ├── autoscaling_policy_connection.h │ │ ├── autoscaling_policy_connection_idempotency_policy.cc │ │ ├── autoscaling_policy_connection_idempotency_policy.h │ │ ├── autoscaling_policy_options.h │ │ ├── batch_controller_client.cc │ │ ├── batch_controller_client.h │ │ ├── batch_controller_connection.cc │ │ ├── batch_controller_connection.h │ │ ├── batch_controller_connection_idempotency_policy.cc │ │ ├── batch_controller_connection_idempotency_policy.h │ │ ├── batch_controller_options.h │ │ ├── cluster_controller_client.cc │ │ ├── cluster_controller_client.h │ │ ├── cluster_controller_connection.cc │ │ ├── cluster_controller_connection.h │ │ ├── cluster_controller_connection_idempotency_policy.cc │ │ ├── cluster_controller_connection_idempotency_policy.h │ │ ├── cluster_controller_options.h │ │ ├── internal │ │ │ ├── autoscaling_policy_auth_decorator.cc │ │ │ ├── autoscaling_policy_auth_decorator.h │ │ │ ├── autoscaling_policy_connection_impl.cc │ │ │ ├── autoscaling_policy_connection_impl.h │ │ │ ├── autoscaling_policy_logging_decorator.cc │ │ │ ├── autoscaling_policy_logging_decorator.h │ │ │ ├── autoscaling_policy_metadata_decorator.cc │ │ │ ├── autoscaling_policy_metadata_decorator.h │ │ │ ├── autoscaling_policy_option_defaults.cc │ │ │ ├── autoscaling_policy_option_defaults.h │ │ │ ├── autoscaling_policy_retry_traits.h │ │ │ ├── autoscaling_policy_sources.cc │ │ │ ├── autoscaling_policy_stub.cc │ │ │ ├── autoscaling_policy_stub.h │ │ │ ├── autoscaling_policy_stub_factory.cc │ │ │ ├── autoscaling_policy_stub_factory.h │ │ │ ├── autoscaling_policy_tracing_connection.cc │ │ │ ├── autoscaling_policy_tracing_connection.h │ │ │ ├── autoscaling_policy_tracing_stub.cc │ │ │ ├── autoscaling_policy_tracing_stub.h │ │ │ ├── batch_controller_auth_decorator.cc │ │ │ ├── batch_controller_auth_decorator.h │ │ │ ├── batch_controller_connection_impl.cc │ │ │ ├── batch_controller_connection_impl.h │ │ │ ├── batch_controller_logging_decorator.cc │ │ │ ├── batch_controller_logging_decorator.h │ │ │ ├── batch_controller_metadata_decorator.cc │ │ │ ├── batch_controller_metadata_decorator.h │ │ │ ├── batch_controller_option_defaults.cc │ │ │ ├── batch_controller_option_defaults.h │ │ │ ├── batch_controller_retry_traits.h │ │ │ ├── batch_controller_sources.cc │ │ │ ├── batch_controller_stub.cc │ │ │ ├── batch_controller_stub.h │ │ │ ├── batch_controller_stub_factory.cc │ │ │ ├── batch_controller_stub_factory.h │ │ │ ├── batch_controller_tracing_connection.cc │ │ │ ├── batch_controller_tracing_connection.h │ │ │ ├── batch_controller_tracing_stub.cc │ │ │ ├── batch_controller_tracing_stub.h │ │ │ ├── cluster_controller_auth_decorator.cc │ │ │ ├── cluster_controller_auth_decorator.h │ │ │ ├── cluster_controller_connection_impl.cc │ │ │ ├── cluster_controller_connection_impl.h │ │ │ ├── cluster_controller_logging_decorator.cc │ │ │ ├── cluster_controller_logging_decorator.h │ │ │ ├── cluster_controller_metadata_decorator.cc │ │ │ ├── cluster_controller_metadata_decorator.h │ │ │ ├── cluster_controller_option_defaults.cc │ │ │ ├── cluster_controller_option_defaults.h │ │ │ ├── cluster_controller_retry_traits.h │ │ │ ├── cluster_controller_sources.cc │ │ │ ├── cluster_controller_stub.cc │ │ │ ├── cluster_controller_stub.h │ │ │ ├── cluster_controller_stub_factory.cc │ │ │ ├── cluster_controller_stub_factory.h │ │ │ ├── cluster_controller_tracing_connection.cc │ │ │ ├── cluster_controller_tracing_connection.h │ │ │ ├── cluster_controller_tracing_stub.cc │ │ │ ├── cluster_controller_tracing_stub.h │ │ │ ├── job_controller_auth_decorator.cc │ │ │ ├── job_controller_auth_decorator.h │ │ │ ├── job_controller_connection_impl.cc │ │ │ ├── job_controller_connection_impl.h │ │ │ ├── job_controller_logging_decorator.cc │ │ │ ├── job_controller_logging_decorator.h │ │ │ ├── job_controller_metadata_decorator.cc │ │ │ ├── job_controller_metadata_decorator.h │ │ │ ├── job_controller_option_defaults.cc │ │ │ ├── job_controller_option_defaults.h │ │ │ ├── job_controller_retry_traits.h │ │ │ ├── job_controller_sources.cc │ │ │ ├── job_controller_stub.cc │ │ │ ├── job_controller_stub.h │ │ │ ├── job_controller_stub_factory.cc │ │ │ ├── job_controller_stub_factory.h │ │ │ ├── job_controller_tracing_connection.cc │ │ │ ├── job_controller_tracing_connection.h │ │ │ ├── job_controller_tracing_stub.cc │ │ │ ├── job_controller_tracing_stub.h │ │ │ ├── node_group_controller_auth_decorator.cc │ │ │ ├── node_group_controller_auth_decorator.h │ │ │ ├── node_group_controller_connection_impl.cc │ │ │ ├── node_group_controller_connection_impl.h │ │ │ ├── node_group_controller_logging_decorator.cc │ │ │ ├── node_group_controller_logging_decorator.h │ │ │ ├── node_group_controller_metadata_decorator.cc │ │ │ ├── node_group_controller_metadata_decorator.h │ │ │ ├── node_group_controller_option_defaults.cc │ │ │ ├── node_group_controller_option_defaults.h │ │ │ ├── node_group_controller_retry_traits.h │ │ │ ├── node_group_controller_sources.cc │ │ │ ├── node_group_controller_stub.cc │ │ │ ├── node_group_controller_stub.h │ │ │ ├── node_group_controller_stub_factory.cc │ │ │ ├── node_group_controller_stub_factory.h │ │ │ ├── node_group_controller_tracing_connection.cc │ │ │ ├── node_group_controller_tracing_connection.h │ │ │ ├── node_group_controller_tracing_stub.cc │ │ │ ├── node_group_controller_tracing_stub.h │ │ │ ├── session_controller_auth_decorator.cc │ │ │ ├── session_controller_auth_decorator.h │ │ │ ├── session_controller_connection_impl.cc │ │ │ ├── session_controller_connection_impl.h │ │ │ ├── session_controller_logging_decorator.cc │ │ │ ├── session_controller_logging_decorator.h │ │ │ ├── session_controller_metadata_decorator.cc │ │ │ ├── session_controller_metadata_decorator.h │ │ │ ├── session_controller_option_defaults.cc │ │ │ ├── session_controller_option_defaults.h │ │ │ ├── session_controller_retry_traits.h │ │ │ ├── session_controller_sources.cc │ │ │ ├── session_controller_stub.cc │ │ │ ├── session_controller_stub.h │ │ │ ├── session_controller_stub_factory.cc │ │ │ ├── session_controller_stub_factory.h │ │ │ ├── session_controller_tracing_connection.cc │ │ │ ├── session_controller_tracing_connection.h │ │ │ ├── session_controller_tracing_stub.cc │ │ │ ├── session_controller_tracing_stub.h │ │ │ ├── session_template_controller_auth_decorator.cc │ │ │ ├── session_template_controller_auth_decorator.h │ │ │ ├── session_template_controller_connection_impl.cc │ │ │ ├── session_template_controller_connection_impl.h │ │ │ ├── session_template_controller_logging_decorator.cc │ │ │ ├── session_template_controller_logging_decorator.h │ │ │ ├── session_template_controller_metadata_decorator.cc │ │ │ ├── session_template_controller_metadata_decorator.h │ │ │ ├── session_template_controller_option_defaults.cc │ │ │ ├── session_template_controller_option_defaults.h │ │ │ ├── session_template_controller_retry_traits.h │ │ │ ├── session_template_controller_sources.cc │ │ │ ├── session_template_controller_stub.cc │ │ │ ├── session_template_controller_stub.h │ │ │ ├── session_template_controller_stub_factory.cc │ │ │ ├── session_template_controller_stub_factory.h │ │ │ ├── session_template_controller_tracing_connection.cc │ │ │ ├── session_template_controller_tracing_connection.h │ │ │ ├── session_template_controller_tracing_stub.cc │ │ │ ├── session_template_controller_tracing_stub.h │ │ │ ├── workflow_template_auth_decorator.cc │ │ │ ├── workflow_template_auth_decorator.h │ │ │ ├── workflow_template_connection_impl.cc │ │ │ ├── workflow_template_connection_impl.h │ │ │ ├── workflow_template_logging_decorator.cc │ │ │ ├── workflow_template_logging_decorator.h │ │ │ ├── workflow_template_metadata_decorator.cc │ │ │ ├── workflow_template_metadata_decorator.h │ │ │ ├── workflow_template_option_defaults.cc │ │ │ ├── workflow_template_option_defaults.h │ │ │ ├── workflow_template_retry_traits.h │ │ │ ├── workflow_template_sources.cc │ │ │ ├── workflow_template_stub.cc │ │ │ ├── workflow_template_stub.h │ │ │ ├── workflow_template_stub_factory.cc │ │ │ ├── workflow_template_stub_factory.h │ │ │ ├── workflow_template_tracing_connection.cc │ │ │ ├── workflow_template_tracing_connection.h │ │ │ ├── workflow_template_tracing_stub.cc │ │ │ └── workflow_template_tracing_stub.h │ │ ├── job_controller_client.cc │ │ ├── job_controller_client.h │ │ ├── job_controller_connection.cc │ │ ├── job_controller_connection.h │ │ ├── job_controller_connection_idempotency_policy.cc │ │ ├── job_controller_connection_idempotency_policy.h │ │ ├── job_controller_options.h │ │ ├── mocks │ │ │ ├── mock_autoscaling_policy_connection.h │ │ │ ├── mock_batch_controller_connection.h │ │ │ ├── mock_cluster_controller_connection.h │ │ │ ├── mock_job_controller_connection.h │ │ │ ├── mock_node_group_controller_connection.h │ │ │ ├── mock_session_controller_connection.h │ │ │ ├── mock_session_template_controller_connection.h │ │ │ └── mock_workflow_template_connection.h │ │ ├── node_group_controller_client.cc │ │ ├── node_group_controller_client.h │ │ ├── node_group_controller_connection.cc │ │ ├── node_group_controller_connection.h │ │ ├── node_group_controller_connection_idempotency_policy.cc │ │ ├── node_group_controller_connection_idempotency_policy.h │ │ ├── node_group_controller_options.h │ │ ├── samples │ │ │ ├── autoscaling_policy_client_samples.cc │ │ │ ├── batch_controller_client_samples.cc │ │ │ ├── cluster_controller_client_samples.cc │ │ │ ├── job_controller_client_samples.cc │ │ │ ├── node_group_controller_client_samples.cc │ │ │ ├── session_controller_client_samples.cc │ │ │ ├── session_template_controller_client_samples.cc │ │ │ └── workflow_template_client_samples.cc │ │ ├── session_controller_client.cc │ │ ├── session_controller_client.h │ │ ├── session_controller_connection.cc │ │ ├── session_controller_connection.h │ │ ├── session_controller_connection_idempotency_policy.cc │ │ ├── session_controller_connection_idempotency_policy.h │ │ ├── session_controller_options.h │ │ ├── session_template_controller_client.cc │ │ ├── session_template_controller_client.h │ │ ├── session_template_controller_connection.cc │ │ ├── session_template_controller_connection.h │ │ ├── session_template_controller_connection_idempotency_policy.cc │ │ ├── session_template_controller_connection_idempotency_policy.h │ │ ├── session_template_controller_options.h │ │ ├── workflow_template_client.cc │ │ ├── workflow_template_client.h │ │ ├── workflow_template_connection.cc │ │ ├── workflow_template_connection.h │ │ ├── workflow_template_connection_idempotency_policy.cc │ │ ├── workflow_template_connection_idempotency_policy.h │ │ └── workflow_template_options.h │ ├── workflow_template_client.h │ ├── workflow_template_connection.h │ ├── workflow_template_connection_idempotency_policy.h │ └── workflow_template_options.h │ ├── datastore │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── admin │ │ └── v1 │ │ │ ├── datastore_admin_client.cc │ │ │ ├── datastore_admin_client.h │ │ │ ├── datastore_admin_connection.cc │ │ │ ├── datastore_admin_connection.h │ │ │ ├── datastore_admin_connection_idempotency_policy.cc │ │ │ ├── datastore_admin_connection_idempotency_policy.h │ │ │ ├── datastore_admin_options.h │ │ │ ├── internal │ │ │ ├── datastore_admin_auth_decorator.cc │ │ │ ├── datastore_admin_auth_decorator.h │ │ │ ├── datastore_admin_connection_impl.cc │ │ │ ├── datastore_admin_connection_impl.h │ │ │ ├── datastore_admin_logging_decorator.cc │ │ │ ├── datastore_admin_logging_decorator.h │ │ │ ├── datastore_admin_metadata_decorator.cc │ │ │ ├── datastore_admin_metadata_decorator.h │ │ │ ├── datastore_admin_option_defaults.cc │ │ │ ├── datastore_admin_option_defaults.h │ │ │ ├── datastore_admin_retry_traits.h │ │ │ ├── datastore_admin_sources.cc │ │ │ ├── datastore_admin_stub.cc │ │ │ ├── datastore_admin_stub.h │ │ │ ├── datastore_admin_stub_factory.cc │ │ │ ├── datastore_admin_stub_factory.h │ │ │ ├── datastore_admin_tracing_connection.cc │ │ │ ├── datastore_admin_tracing_connection.h │ │ │ ├── datastore_admin_tracing_stub.cc │ │ │ └── datastore_admin_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_datastore_admin_connection.h │ │ │ └── samples │ │ │ └── datastore_admin_client_samples.cc │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── datastore_client.cc │ │ ├── datastore_client.h │ │ ├── datastore_connection.cc │ │ ├── datastore_connection.h │ │ ├── datastore_connection_idempotency_policy.cc │ │ ├── datastore_connection_idempotency_policy.h │ │ ├── datastore_options.h │ │ ├── internal │ │ ├── datastore_auth_decorator.cc │ │ ├── datastore_auth_decorator.h │ │ ├── datastore_connection_impl.cc │ │ ├── datastore_connection_impl.h │ │ ├── datastore_logging_decorator.cc │ │ ├── datastore_logging_decorator.h │ │ ├── datastore_metadata_decorator.cc │ │ ├── datastore_metadata_decorator.h │ │ ├── datastore_option_defaults.cc │ │ ├── datastore_option_defaults.h │ │ ├── datastore_retry_traits.h │ │ ├── datastore_sources.cc │ │ ├── datastore_stub.cc │ │ ├── datastore_stub.h │ │ ├── datastore_stub_factory.cc │ │ ├── datastore_stub_factory.h │ │ ├── datastore_tracing_connection.cc │ │ ├── datastore_tracing_connection.h │ │ ├── datastore_tracing_stub.cc │ │ └── datastore_tracing_stub.h │ │ ├── mocks │ │ └── mock_datastore_connection.h │ │ └── samples │ │ └── datastore_client_samples.cc │ ├── datastream │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── datastream_client.h │ ├── datastream_connection.h │ ├── datastream_connection_idempotency_policy.h │ ├── datastream_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_datastream_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── datastream_client.cc │ │ ├── datastream_client.h │ │ ├── datastream_connection.cc │ │ ├── datastream_connection.h │ │ ├── datastream_connection_idempotency_policy.cc │ │ ├── datastream_connection_idempotency_policy.h │ │ ├── datastream_options.h │ │ ├── internal │ │ ├── datastream_auth_decorator.cc │ │ ├── datastream_auth_decorator.h │ │ ├── datastream_connection_impl.cc │ │ ├── datastream_connection_impl.h │ │ ├── datastream_logging_decorator.cc │ │ ├── datastream_logging_decorator.h │ │ ├── datastream_metadata_decorator.cc │ │ ├── datastream_metadata_decorator.h │ │ ├── datastream_option_defaults.cc │ │ ├── datastream_option_defaults.h │ │ ├── datastream_retry_traits.h │ │ ├── datastream_sources.cc │ │ ├── datastream_stub.cc │ │ ├── datastream_stub.h │ │ ├── datastream_stub_factory.cc │ │ ├── datastream_stub_factory.h │ │ ├── datastream_tracing_connection.cc │ │ ├── datastream_tracing_connection.h │ │ ├── datastream_tracing_stub.cc │ │ └── datastream_tracing_stub.h │ │ ├── mocks │ │ └── mock_datastream_connection.h │ │ └── samples │ │ └── datastream_client_samples.cc │ ├── deploy │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── cloud_deploy_client.h │ ├── cloud_deploy_connection.h │ ├── cloud_deploy_connection_idempotency_policy.h │ ├── cloud_deploy_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_cloud_deploy_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_deploy_client.cc │ │ ├── cloud_deploy_client.h │ │ ├── cloud_deploy_connection.cc │ │ ├── cloud_deploy_connection.h │ │ ├── cloud_deploy_connection_idempotency_policy.cc │ │ ├── cloud_deploy_connection_idempotency_policy.h │ │ ├── cloud_deploy_options.h │ │ ├── internal │ │ ├── cloud_deploy_auth_decorator.cc │ │ ├── cloud_deploy_auth_decorator.h │ │ ├── cloud_deploy_connection_impl.cc │ │ ├── cloud_deploy_connection_impl.h │ │ ├── cloud_deploy_logging_decorator.cc │ │ ├── cloud_deploy_logging_decorator.h │ │ ├── cloud_deploy_metadata_decorator.cc │ │ ├── cloud_deploy_metadata_decorator.h │ │ ├── cloud_deploy_option_defaults.cc │ │ ├── cloud_deploy_option_defaults.h │ │ ├── cloud_deploy_retry_traits.h │ │ ├── cloud_deploy_sources.cc │ │ ├── cloud_deploy_stub.cc │ │ ├── cloud_deploy_stub.h │ │ ├── cloud_deploy_stub_factory.cc │ │ ├── cloud_deploy_stub_factory.h │ │ ├── cloud_deploy_tracing_connection.cc │ │ ├── cloud_deploy_tracing_connection.h │ │ ├── cloud_deploy_tracing_stub.cc │ │ └── cloud_deploy_tracing_stub.h │ │ ├── mocks │ │ └── mock_cloud_deploy_connection.h │ │ └── samples │ │ └── cloud_deploy_client_samples.cc │ ├── developerconnect │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── developer_connect_client.cc │ │ ├── developer_connect_client.h │ │ ├── developer_connect_connection.cc │ │ ├── developer_connect_connection.h │ │ ├── developer_connect_connection_idempotency_policy.cc │ │ ├── developer_connect_connection_idempotency_policy.h │ │ ├── developer_connect_options.h │ │ ├── internal │ │ ├── developer_connect_auth_decorator.cc │ │ ├── developer_connect_auth_decorator.h │ │ ├── developer_connect_connection_impl.cc │ │ ├── developer_connect_connection_impl.h │ │ ├── developer_connect_logging_decorator.cc │ │ ├── developer_connect_logging_decorator.h │ │ ├── developer_connect_metadata_decorator.cc │ │ ├── developer_connect_metadata_decorator.h │ │ ├── developer_connect_option_defaults.cc │ │ ├── developer_connect_option_defaults.h │ │ ├── developer_connect_retry_traits.h │ │ ├── developer_connect_sources.cc │ │ ├── developer_connect_stub.cc │ │ ├── developer_connect_stub.h │ │ ├── developer_connect_stub_factory.cc │ │ ├── developer_connect_stub_factory.h │ │ ├── developer_connect_tracing_connection.cc │ │ ├── developer_connect_tracing_connection.h │ │ ├── developer_connect_tracing_stub.cc │ │ └── developer_connect_tracing_stub.h │ │ ├── mocks │ │ └── mock_developer_connect_connection.h │ │ └── samples │ │ └── developer_connect_client_samples.cc │ ├── devicestreaming │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── direct_access_client.cc │ │ ├── direct_access_client.h │ │ ├── direct_access_connection.cc │ │ ├── direct_access_connection.h │ │ ├── direct_access_connection_idempotency_policy.cc │ │ ├── direct_access_connection_idempotency_policy.h │ │ ├── direct_access_options.h │ │ ├── internal │ │ ├── direct_access_auth_decorator.cc │ │ ├── direct_access_auth_decorator.h │ │ ├── direct_access_connection_impl.cc │ │ ├── direct_access_connection_impl.h │ │ ├── direct_access_logging_decorator.cc │ │ ├── direct_access_logging_decorator.h │ │ ├── direct_access_metadata_decorator.cc │ │ ├── direct_access_metadata_decorator.h │ │ ├── direct_access_option_defaults.cc │ │ ├── direct_access_option_defaults.h │ │ ├── direct_access_retry_traits.h │ │ ├── direct_access_sources.cc │ │ ├── direct_access_stub.cc │ │ ├── direct_access_stub.h │ │ ├── direct_access_stub_factory.cc │ │ ├── direct_access_stub_factory.h │ │ ├── direct_access_tracing_connection.cc │ │ ├── direct_access_tracing_connection.h │ │ ├── direct_access_tracing_stub.cc │ │ └── direct_access_tracing_stub.h │ │ ├── mocks │ │ └── mock_direct_access_connection.h │ │ └── samples │ │ └── direct_access_client_samples.cc │ ├── dialogflow_cx │ ├── .repo-metadata.json │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── agents_client.cc │ ├── agents_client.h │ ├── agents_connection.cc │ ├── agents_connection.h │ ├── agents_connection_idempotency_policy.cc │ ├── agents_connection_idempotency_policy.h │ ├── agents_options.h │ ├── changelogs_client.cc │ ├── changelogs_client.h │ ├── changelogs_connection.cc │ ├── changelogs_connection.h │ ├── changelogs_connection_idempotency_policy.cc │ ├── changelogs_connection_idempotency_policy.h │ ├── changelogs_options.h │ ├── deployments_client.cc │ ├── deployments_client.h │ ├── deployments_connection.cc │ ├── deployments_connection.h │ ├── deployments_connection_idempotency_policy.cc │ ├── deployments_connection_idempotency_policy.h │ ├── deployments_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── entity_types_client.cc │ ├── entity_types_client.h │ ├── entity_types_connection.cc │ ├── entity_types_connection.h │ ├── entity_types_connection_idempotency_policy.cc │ ├── entity_types_connection_idempotency_policy.h │ ├── entity_types_options.h │ ├── environments_client.cc │ ├── environments_client.h │ ├── environments_connection.cc │ ├── environments_connection.h │ ├── environments_connection_idempotency_policy.cc │ ├── environments_connection_idempotency_policy.h │ ├── environments_options.h │ ├── experiments_client.cc │ ├── experiments_client.h │ ├── experiments_connection.cc │ ├── experiments_connection.h │ ├── experiments_connection_idempotency_policy.cc │ ├── experiments_connection_idempotency_policy.h │ ├── experiments_options.h │ ├── flows_client.cc │ ├── flows_client.h │ ├── flows_connection.cc │ ├── flows_connection.h │ ├── flows_connection_idempotency_policy.cc │ ├── flows_connection_idempotency_policy.h │ ├── flows_options.h │ ├── generators_client.cc │ ├── generators_client.h │ ├── generators_connection.cc │ ├── generators_connection.h │ ├── generators_connection_idempotency_policy.cc │ ├── generators_connection_idempotency_policy.h │ ├── generators_options.h │ ├── intents_client.cc │ ├── intents_client.h │ ├── intents_connection.cc │ ├── intents_connection.h │ ├── intents_connection_idempotency_policy.cc │ ├── intents_connection_idempotency_policy.h │ ├── intents_options.h │ ├── internal │ │ ├── agents_auth_decorator.cc │ │ ├── agents_auth_decorator.h │ │ ├── agents_connection_impl.cc │ │ ├── agents_connection_impl.h │ │ ├── agents_logging_decorator.cc │ │ ├── agents_logging_decorator.h │ │ ├── agents_metadata_decorator.cc │ │ ├── agents_metadata_decorator.h │ │ ├── agents_option_defaults.cc │ │ ├── agents_option_defaults.h │ │ ├── agents_retry_traits.h │ │ ├── agents_sources.cc │ │ ├── agents_stub.cc │ │ ├── agents_stub.h │ │ ├── agents_stub_factory.cc │ │ ├── agents_stub_factory.h │ │ ├── agents_tracing_connection.cc │ │ ├── agents_tracing_connection.h │ │ ├── agents_tracing_stub.cc │ │ ├── agents_tracing_stub.h │ │ ├── changelogs_auth_decorator.cc │ │ ├── changelogs_auth_decorator.h │ │ ├── changelogs_connection_impl.cc │ │ ├── changelogs_connection_impl.h │ │ ├── changelogs_logging_decorator.cc │ │ ├── changelogs_logging_decorator.h │ │ ├── changelogs_metadata_decorator.cc │ │ ├── changelogs_metadata_decorator.h │ │ ├── changelogs_option_defaults.cc │ │ ├── changelogs_option_defaults.h │ │ ├── changelogs_retry_traits.h │ │ ├── changelogs_sources.cc │ │ ├── changelogs_stub.cc │ │ ├── changelogs_stub.h │ │ ├── changelogs_stub_factory.cc │ │ ├── changelogs_stub_factory.h │ │ ├── changelogs_tracing_connection.cc │ │ ├── changelogs_tracing_connection.h │ │ ├── changelogs_tracing_stub.cc │ │ ├── changelogs_tracing_stub.h │ │ ├── deployments_auth_decorator.cc │ │ ├── deployments_auth_decorator.h │ │ ├── deployments_connection_impl.cc │ │ ├── deployments_connection_impl.h │ │ ├── deployments_logging_decorator.cc │ │ ├── deployments_logging_decorator.h │ │ ├── deployments_metadata_decorator.cc │ │ ├── deployments_metadata_decorator.h │ │ ├── deployments_option_defaults.cc │ │ ├── deployments_option_defaults.h │ │ ├── deployments_retry_traits.h │ │ ├── deployments_sources.cc │ │ ├── deployments_stub.cc │ │ ├── deployments_stub.h │ │ ├── deployments_stub_factory.cc │ │ ├── deployments_stub_factory.h │ │ ├── deployments_tracing_connection.cc │ │ ├── deployments_tracing_connection.h │ │ ├── deployments_tracing_stub.cc │ │ ├── deployments_tracing_stub.h │ │ ├── entity_types_auth_decorator.cc │ │ ├── entity_types_auth_decorator.h │ │ ├── entity_types_connection_impl.cc │ │ ├── entity_types_connection_impl.h │ │ ├── entity_types_logging_decorator.cc │ │ ├── entity_types_logging_decorator.h │ │ ├── entity_types_metadata_decorator.cc │ │ ├── entity_types_metadata_decorator.h │ │ ├── entity_types_option_defaults.cc │ │ ├── entity_types_option_defaults.h │ │ ├── entity_types_retry_traits.h │ │ ├── entity_types_sources.cc │ │ ├── entity_types_stub.cc │ │ ├── entity_types_stub.h │ │ ├── entity_types_stub_factory.cc │ │ ├── entity_types_stub_factory.h │ │ ├── entity_types_tracing_connection.cc │ │ ├── entity_types_tracing_connection.h │ │ ├── entity_types_tracing_stub.cc │ │ ├── entity_types_tracing_stub.h │ │ ├── environments_auth_decorator.cc │ │ ├── environments_auth_decorator.h │ │ ├── environments_connection_impl.cc │ │ ├── environments_connection_impl.h │ │ ├── environments_logging_decorator.cc │ │ ├── environments_logging_decorator.h │ │ ├── environments_metadata_decorator.cc │ │ ├── environments_metadata_decorator.h │ │ ├── environments_option_defaults.cc │ │ ├── environments_option_defaults.h │ │ ├── environments_retry_traits.h │ │ ├── environments_sources.cc │ │ ├── environments_stub.cc │ │ ├── environments_stub.h │ │ ├── environments_stub_factory.cc │ │ ├── environments_stub_factory.h │ │ ├── environments_tracing_connection.cc │ │ ├── environments_tracing_connection.h │ │ ├── environments_tracing_stub.cc │ │ ├── environments_tracing_stub.h │ │ ├── experiments_auth_decorator.cc │ │ ├── experiments_auth_decorator.h │ │ ├── experiments_connection_impl.cc │ │ ├── experiments_connection_impl.h │ │ ├── experiments_logging_decorator.cc │ │ ├── experiments_logging_decorator.h │ │ ├── experiments_metadata_decorator.cc │ │ ├── experiments_metadata_decorator.h │ │ ├── experiments_option_defaults.cc │ │ ├── experiments_option_defaults.h │ │ ├── experiments_retry_traits.h │ │ ├── experiments_sources.cc │ │ ├── experiments_stub.cc │ │ ├── experiments_stub.h │ │ ├── experiments_stub_factory.cc │ │ ├── experiments_stub_factory.h │ │ ├── experiments_tracing_connection.cc │ │ ├── experiments_tracing_connection.h │ │ ├── experiments_tracing_stub.cc │ │ ├── experiments_tracing_stub.h │ │ ├── flows_auth_decorator.cc │ │ ├── flows_auth_decorator.h │ │ ├── flows_connection_impl.cc │ │ ├── flows_connection_impl.h │ │ ├── flows_logging_decorator.cc │ │ ├── flows_logging_decorator.h │ │ ├── flows_metadata_decorator.cc │ │ ├── flows_metadata_decorator.h │ │ ├── flows_option_defaults.cc │ │ ├── flows_option_defaults.h │ │ ├── flows_retry_traits.h │ │ ├── flows_sources.cc │ │ ├── flows_stub.cc │ │ ├── flows_stub.h │ │ ├── flows_stub_factory.cc │ │ ├── flows_stub_factory.h │ │ ├── flows_tracing_connection.cc │ │ ├── flows_tracing_connection.h │ │ ├── flows_tracing_stub.cc │ │ ├── flows_tracing_stub.h │ │ ├── generators_auth_decorator.cc │ │ ├── generators_auth_decorator.h │ │ ├── generators_connection_impl.cc │ │ ├── generators_connection_impl.h │ │ ├── generators_logging_decorator.cc │ │ ├── generators_logging_decorator.h │ │ ├── generators_metadata_decorator.cc │ │ ├── generators_metadata_decorator.h │ │ ├── generators_option_defaults.cc │ │ ├── generators_option_defaults.h │ │ ├── generators_retry_traits.h │ │ ├── generators_sources.cc │ │ ├── generators_stub.cc │ │ ├── generators_stub.h │ │ ├── generators_stub_factory.cc │ │ ├── generators_stub_factory.h │ │ ├── generators_tracing_connection.cc │ │ ├── generators_tracing_connection.h │ │ ├── generators_tracing_stub.cc │ │ ├── generators_tracing_stub.h │ │ ├── intents_auth_decorator.cc │ │ ├── intents_auth_decorator.h │ │ ├── intents_connection_impl.cc │ │ ├── intents_connection_impl.h │ │ ├── intents_logging_decorator.cc │ │ ├── intents_logging_decorator.h │ │ ├── intents_metadata_decorator.cc │ │ ├── intents_metadata_decorator.h │ │ ├── intents_option_defaults.cc │ │ ├── intents_option_defaults.h │ │ ├── intents_retry_traits.h │ │ ├── intents_sources.cc │ │ ├── intents_stub.cc │ │ ├── intents_stub.h │ │ ├── intents_stub_factory.cc │ │ ├── intents_stub_factory.h │ │ ├── intents_tracing_connection.cc │ │ ├── intents_tracing_connection.h │ │ ├── intents_tracing_stub.cc │ │ ├── intents_tracing_stub.h │ │ ├── pages_auth_decorator.cc │ │ ├── pages_auth_decorator.h │ │ ├── pages_connection_impl.cc │ │ ├── pages_connection_impl.h │ │ ├── pages_logging_decorator.cc │ │ ├── pages_logging_decorator.h │ │ ├── pages_metadata_decorator.cc │ │ ├── pages_metadata_decorator.h │ │ ├── pages_option_defaults.cc │ │ ├── pages_option_defaults.h │ │ ├── pages_retry_traits.h │ │ ├── pages_sources.cc │ │ ├── pages_stub.cc │ │ ├── pages_stub.h │ │ ├── pages_stub_factory.cc │ │ ├── pages_stub_factory.h │ │ ├── pages_tracing_connection.cc │ │ ├── pages_tracing_connection.h │ │ ├── pages_tracing_stub.cc │ │ ├── pages_tracing_stub.h │ │ ├── security_settings_auth_decorator.cc │ │ ├── security_settings_auth_decorator.h │ │ ├── security_settings_connection_impl.cc │ │ ├── security_settings_connection_impl.h │ │ ├── security_settings_logging_decorator.cc │ │ ├── security_settings_logging_decorator.h │ │ ├── security_settings_metadata_decorator.cc │ │ ├── security_settings_metadata_decorator.h │ │ ├── security_settings_option_defaults.cc │ │ ├── security_settings_option_defaults.h │ │ ├── security_settings_retry_traits.h │ │ ├── security_settings_sources.cc │ │ ├── security_settings_stub.cc │ │ ├── security_settings_stub.h │ │ ├── security_settings_stub_factory.cc │ │ ├── security_settings_stub_factory.h │ │ ├── security_settings_tracing_connection.cc │ │ ├── security_settings_tracing_connection.h │ │ ├── security_settings_tracing_stub.cc │ │ ├── security_settings_tracing_stub.h │ │ ├── session_entity_types_auth_decorator.cc │ │ ├── session_entity_types_auth_decorator.h │ │ ├── session_entity_types_connection_impl.cc │ │ ├── session_entity_types_connection_impl.h │ │ ├── session_entity_types_logging_decorator.cc │ │ ├── session_entity_types_logging_decorator.h │ │ ├── session_entity_types_metadata_decorator.cc │ │ ├── session_entity_types_metadata_decorator.h │ │ ├── session_entity_types_option_defaults.cc │ │ ├── session_entity_types_option_defaults.h │ │ ├── session_entity_types_retry_traits.h │ │ ├── session_entity_types_sources.cc │ │ ├── session_entity_types_stub.cc │ │ ├── session_entity_types_stub.h │ │ ├── session_entity_types_stub_factory.cc │ │ ├── session_entity_types_stub_factory.h │ │ ├── session_entity_types_tracing_connection.cc │ │ ├── session_entity_types_tracing_connection.h │ │ ├── session_entity_types_tracing_stub.cc │ │ ├── session_entity_types_tracing_stub.h │ │ ├── sessions_auth_decorator.cc │ │ ├── sessions_auth_decorator.h │ │ ├── sessions_connection_impl.cc │ │ ├── sessions_connection_impl.h │ │ ├── sessions_logging_decorator.cc │ │ ├── sessions_logging_decorator.h │ │ ├── sessions_metadata_decorator.cc │ │ ├── sessions_metadata_decorator.h │ │ ├── sessions_option_defaults.cc │ │ ├── sessions_option_defaults.h │ │ ├── sessions_retry_traits.h │ │ ├── sessions_sources.cc │ │ ├── sessions_stub.cc │ │ ├── sessions_stub.h │ │ ├── sessions_stub_factory.cc │ │ ├── sessions_stub_factory.h │ │ ├── sessions_tracing_connection.cc │ │ ├── sessions_tracing_connection.h │ │ ├── sessions_tracing_stub.cc │ │ ├── sessions_tracing_stub.h │ │ ├── test_cases_auth_decorator.cc │ │ ├── test_cases_auth_decorator.h │ │ ├── test_cases_connection_impl.cc │ │ ├── test_cases_connection_impl.h │ │ ├── test_cases_logging_decorator.cc │ │ ├── test_cases_logging_decorator.h │ │ ├── test_cases_metadata_decorator.cc │ │ ├── test_cases_metadata_decorator.h │ │ ├── test_cases_option_defaults.cc │ │ ├── test_cases_option_defaults.h │ │ ├── test_cases_retry_traits.h │ │ ├── test_cases_sources.cc │ │ ├── test_cases_stub.cc │ │ ├── test_cases_stub.h │ │ ├── test_cases_stub_factory.cc │ │ ├── test_cases_stub_factory.h │ │ ├── test_cases_tracing_connection.cc │ │ ├── test_cases_tracing_connection.h │ │ ├── test_cases_tracing_stub.cc │ │ ├── test_cases_tracing_stub.h │ │ ├── transition_route_groups_auth_decorator.cc │ │ ├── transition_route_groups_auth_decorator.h │ │ ├── transition_route_groups_connection_impl.cc │ │ ├── transition_route_groups_connection_impl.h │ │ ├── transition_route_groups_logging_decorator.cc │ │ ├── transition_route_groups_logging_decorator.h │ │ ├── transition_route_groups_metadata_decorator.cc │ │ ├── transition_route_groups_metadata_decorator.h │ │ ├── transition_route_groups_option_defaults.cc │ │ ├── transition_route_groups_option_defaults.h │ │ ├── transition_route_groups_retry_traits.h │ │ ├── transition_route_groups_sources.cc │ │ ├── transition_route_groups_stub.cc │ │ ├── transition_route_groups_stub.h │ │ ├── transition_route_groups_stub_factory.cc │ │ ├── transition_route_groups_stub_factory.h │ │ ├── transition_route_groups_tracing_connection.cc │ │ ├── transition_route_groups_tracing_connection.h │ │ ├── transition_route_groups_tracing_stub.cc │ │ ├── transition_route_groups_tracing_stub.h │ │ ├── versions_auth_decorator.cc │ │ ├── versions_auth_decorator.h │ │ ├── versions_connection_impl.cc │ │ ├── versions_connection_impl.h │ │ ├── versions_logging_decorator.cc │ │ ├── versions_logging_decorator.h │ │ ├── versions_metadata_decorator.cc │ │ ├── versions_metadata_decorator.h │ │ ├── versions_option_defaults.cc │ │ ├── versions_option_defaults.h │ │ ├── versions_retry_traits.h │ │ ├── versions_sources.cc │ │ ├── versions_stub.cc │ │ ├── versions_stub.h │ │ ├── versions_stub_factory.cc │ │ ├── versions_stub_factory.h │ │ ├── versions_tracing_connection.cc │ │ ├── versions_tracing_connection.h │ │ ├── versions_tracing_stub.cc │ │ ├── versions_tracing_stub.h │ │ ├── webhooks_auth_decorator.cc │ │ ├── webhooks_auth_decorator.h │ │ ├── webhooks_connection_impl.cc │ │ ├── webhooks_connection_impl.h │ │ ├── webhooks_logging_decorator.cc │ │ ├── webhooks_logging_decorator.h │ │ ├── webhooks_metadata_decorator.cc │ │ ├── webhooks_metadata_decorator.h │ │ ├── webhooks_option_defaults.cc │ │ ├── webhooks_option_defaults.h │ │ ├── webhooks_retry_traits.h │ │ ├── webhooks_sources.cc │ │ ├── webhooks_stub.cc │ │ ├── webhooks_stub.h │ │ ├── webhooks_stub_factory.cc │ │ ├── webhooks_stub_factory.h │ │ ├── webhooks_tracing_connection.cc │ │ ├── webhooks_tracing_connection.h │ │ ├── webhooks_tracing_stub.cc │ │ └── webhooks_tracing_stub.h │ ├── mocks │ │ ├── mock_agents_connection.h │ │ ├── mock_changelogs_connection.h │ │ ├── mock_deployments_connection.h │ │ ├── mock_entity_types_connection.h │ │ ├── mock_environments_connection.h │ │ ├── mock_experiments_connection.h │ │ ├── mock_flows_connection.h │ │ ├── mock_generators_connection.h │ │ ├── mock_intents_connection.h │ │ ├── mock_pages_connection.h │ │ ├── mock_security_settings_connection.h │ │ ├── mock_session_entity_types_connection.h │ │ ├── mock_sessions_connection.h │ │ ├── mock_test_cases_connection.h │ │ ├── mock_transition_route_groups_connection.h │ │ ├── mock_versions_connection.h │ │ └── mock_webhooks_connection.h │ ├── pages_client.cc │ ├── pages_client.h │ ├── pages_connection.cc │ ├── pages_connection.h │ ├── pages_connection_idempotency_policy.cc │ ├── pages_connection_idempotency_policy.h │ ├── pages_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── samples │ │ ├── agents_client_samples.cc │ │ ├── changelogs_client_samples.cc │ │ ├── deployments_client_samples.cc │ │ ├── entity_types_client_samples.cc │ │ ├── environments_client_samples.cc │ │ ├── experiments_client_samples.cc │ │ ├── flows_client_samples.cc │ │ ├── generators_client_samples.cc │ │ ├── intents_client_samples.cc │ │ ├── pages_client_samples.cc │ │ ├── security_settings_client_samples.cc │ │ ├── session_entity_types_client_samples.cc │ │ ├── sessions_client_samples.cc │ │ ├── test_cases_client_samples.cc │ │ ├── transition_route_groups_client_samples.cc │ │ ├── versions_client_samples.cc │ │ └── webhooks_client_samples.cc │ ├── security_settings_client.cc │ ├── security_settings_client.h │ ├── security_settings_connection.cc │ ├── security_settings_connection.h │ ├── security_settings_connection_idempotency_policy.cc │ ├── security_settings_connection_idempotency_policy.h │ ├── security_settings_options.h │ ├── session_entity_types_client.cc │ ├── session_entity_types_client.h │ ├── session_entity_types_connection.cc │ ├── session_entity_types_connection.h │ ├── session_entity_types_connection_idempotency_policy.cc │ ├── session_entity_types_connection_idempotency_policy.h │ ├── session_entity_types_options.h │ ├── sessions_client.cc │ ├── sessions_client.h │ ├── sessions_connection.cc │ ├── sessions_connection.h │ ├── sessions_connection_idempotency_policy.cc │ ├── sessions_connection_idempotency_policy.h │ ├── sessions_options.h │ ├── test_cases_client.cc │ ├── test_cases_client.h │ ├── test_cases_connection.cc │ ├── test_cases_connection.h │ ├── test_cases_connection_idempotency_policy.cc │ ├── test_cases_connection_idempotency_policy.h │ ├── test_cases_options.h │ ├── transition_route_groups_client.cc │ ├── transition_route_groups_client.h │ ├── transition_route_groups_connection.cc │ ├── transition_route_groups_connection.h │ ├── transition_route_groups_connection_idempotency_policy.cc │ ├── transition_route_groups_connection_idempotency_policy.h │ ├── transition_route_groups_options.h │ ├── versions_client.cc │ ├── versions_client.h │ ├── versions_connection.cc │ ├── versions_connection.h │ ├── versions_connection_idempotency_policy.cc │ ├── versions_connection_idempotency_policy.h │ ├── versions_options.h │ ├── webhooks_client.cc │ ├── webhooks_client.h │ ├── webhooks_connection.cc │ ├── webhooks_connection.h │ ├── webhooks_connection_idempotency_policy.cc │ ├── webhooks_connection_idempotency_policy.h │ └── webhooks_options.h │ ├── dialogflow_es │ ├── .repo-metadata.json │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── agents_client.cc │ ├── agents_client.h │ ├── agents_connection.cc │ ├── agents_connection.h │ ├── agents_connection_idempotency_policy.cc │ ├── agents_connection_idempotency_policy.h │ ├── agents_options.h │ ├── answer_records_client.cc │ ├── answer_records_client.h │ ├── answer_records_connection.cc │ ├── answer_records_connection.h │ ├── answer_records_connection_idempotency_policy.cc │ ├── answer_records_connection_idempotency_policy.h │ ├── answer_records_options.h │ ├── contexts_client.cc │ ├── contexts_client.h │ ├── contexts_connection.cc │ ├── contexts_connection.h │ ├── contexts_connection_idempotency_policy.cc │ ├── contexts_connection_idempotency_policy.h │ ├── contexts_options.h │ ├── conversation_datasets_client.cc │ ├── conversation_datasets_client.h │ ├── conversation_datasets_connection.cc │ ├── conversation_datasets_connection.h │ ├── conversation_datasets_connection_idempotency_policy.cc │ ├── conversation_datasets_connection_idempotency_policy.h │ ├── conversation_datasets_options.h │ ├── conversation_models_client.cc │ ├── conversation_models_client.h │ ├── conversation_models_connection.cc │ ├── conversation_models_connection.h │ ├── conversation_models_connection_idempotency_policy.cc │ ├── conversation_models_connection_idempotency_policy.h │ ├── conversation_models_options.h │ ├── conversation_profiles_client.cc │ ├── conversation_profiles_client.h │ ├── conversation_profiles_connection.cc │ ├── conversation_profiles_connection.h │ ├── conversation_profiles_connection_idempotency_policy.cc │ ├── conversation_profiles_connection_idempotency_policy.h │ ├── conversation_profiles_options.h │ ├── conversations_client.cc │ ├── conversations_client.h │ ├── conversations_connection.cc │ ├── conversations_connection.h │ ├── conversations_connection_idempotency_policy.cc │ ├── conversations_connection_idempotency_policy.h │ ├── conversations_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── documents_client.cc │ ├── documents_client.h │ ├── documents_connection.cc │ ├── documents_connection.h │ ├── documents_connection_idempotency_policy.cc │ ├── documents_connection_idempotency_policy.h │ ├── documents_options.h │ ├── encryption_spec_client.cc │ ├── encryption_spec_client.h │ ├── encryption_spec_connection.cc │ ├── encryption_spec_connection.h │ ├── encryption_spec_connection_idempotency_policy.cc │ ├── encryption_spec_connection_idempotency_policy.h │ ├── encryption_spec_options.h │ ├── entity_types_client.cc │ ├── entity_types_client.h │ ├── entity_types_connection.cc │ ├── entity_types_connection.h │ ├── entity_types_connection_idempotency_policy.cc │ ├── entity_types_connection_idempotency_policy.h │ ├── entity_types_options.h │ ├── environments_client.cc │ ├── environments_client.h │ ├── environments_connection.cc │ ├── environments_connection.h │ ├── environments_connection_idempotency_policy.cc │ ├── environments_connection_idempotency_policy.h │ ├── environments_options.h │ ├── fulfillments_client.cc │ ├── fulfillments_client.h │ ├── fulfillments_connection.cc │ ├── fulfillments_connection.h │ ├── fulfillments_connection_idempotency_policy.cc │ ├── fulfillments_connection_idempotency_policy.h │ ├── fulfillments_options.h │ ├── generators_client.cc │ ├── generators_client.h │ ├── generators_connection.cc │ ├── generators_connection.h │ ├── generators_connection_idempotency_policy.cc │ ├── generators_connection_idempotency_policy.h │ ├── generators_options.h │ ├── intents_client.cc │ ├── intents_client.h │ ├── intents_connection.cc │ ├── intents_connection.h │ ├── intents_connection_idempotency_policy.cc │ ├── intents_connection_idempotency_policy.h │ ├── intents_options.h │ ├── internal │ │ ├── agents_auth_decorator.cc │ │ ├── agents_auth_decorator.h │ │ ├── agents_connection_impl.cc │ │ ├── agents_connection_impl.h │ │ ├── agents_logging_decorator.cc │ │ ├── agents_logging_decorator.h │ │ ├── agents_metadata_decorator.cc │ │ ├── agents_metadata_decorator.h │ │ ├── agents_option_defaults.cc │ │ ├── agents_option_defaults.h │ │ ├── agents_retry_traits.h │ │ ├── agents_sources.cc │ │ ├── agents_stub.cc │ │ ├── agents_stub.h │ │ ├── agents_stub_factory.cc │ │ ├── agents_stub_factory.h │ │ ├── agents_tracing_connection.cc │ │ ├── agents_tracing_connection.h │ │ ├── agents_tracing_stub.cc │ │ ├── agents_tracing_stub.h │ │ ├── answer_records_auth_decorator.cc │ │ ├── answer_records_auth_decorator.h │ │ ├── answer_records_connection_impl.cc │ │ ├── answer_records_connection_impl.h │ │ ├── answer_records_logging_decorator.cc │ │ ├── answer_records_logging_decorator.h │ │ ├── answer_records_metadata_decorator.cc │ │ ├── answer_records_metadata_decorator.h │ │ ├── answer_records_option_defaults.cc │ │ ├── answer_records_option_defaults.h │ │ ├── answer_records_retry_traits.h │ │ ├── answer_records_sources.cc │ │ ├── answer_records_stub.cc │ │ ├── answer_records_stub.h │ │ ├── answer_records_stub_factory.cc │ │ ├── answer_records_stub_factory.h │ │ ├── answer_records_tracing_connection.cc │ │ ├── answer_records_tracing_connection.h │ │ ├── answer_records_tracing_stub.cc │ │ ├── answer_records_tracing_stub.h │ │ ├── contexts_auth_decorator.cc │ │ ├── contexts_auth_decorator.h │ │ ├── contexts_connection_impl.cc │ │ ├── contexts_connection_impl.h │ │ ├── contexts_logging_decorator.cc │ │ ├── contexts_logging_decorator.h │ │ ├── contexts_metadata_decorator.cc │ │ ├── contexts_metadata_decorator.h │ │ ├── contexts_option_defaults.cc │ │ ├── contexts_option_defaults.h │ │ ├── contexts_retry_traits.h │ │ ├── contexts_sources.cc │ │ ├── contexts_stub.cc │ │ ├── contexts_stub.h │ │ ├── contexts_stub_factory.cc │ │ ├── contexts_stub_factory.h │ │ ├── contexts_tracing_connection.cc │ │ ├── contexts_tracing_connection.h │ │ ├── contexts_tracing_stub.cc │ │ ├── contexts_tracing_stub.h │ │ ├── conversation_datasets_auth_decorator.cc │ │ ├── conversation_datasets_auth_decorator.h │ │ ├── conversation_datasets_connection_impl.cc │ │ ├── conversation_datasets_connection_impl.h │ │ ├── conversation_datasets_logging_decorator.cc │ │ ├── conversation_datasets_logging_decorator.h │ │ ├── conversation_datasets_metadata_decorator.cc │ │ ├── conversation_datasets_metadata_decorator.h │ │ ├── conversation_datasets_option_defaults.cc │ │ ├── conversation_datasets_option_defaults.h │ │ ├── conversation_datasets_retry_traits.h │ │ ├── conversation_datasets_sources.cc │ │ ├── conversation_datasets_stub.cc │ │ ├── conversation_datasets_stub.h │ │ ├── conversation_datasets_stub_factory.cc │ │ ├── conversation_datasets_stub_factory.h │ │ ├── conversation_datasets_tracing_connection.cc │ │ ├── conversation_datasets_tracing_connection.h │ │ ├── conversation_datasets_tracing_stub.cc │ │ ├── conversation_datasets_tracing_stub.h │ │ ├── conversation_models_auth_decorator.cc │ │ ├── conversation_models_auth_decorator.h │ │ ├── conversation_models_connection_impl.cc │ │ ├── conversation_models_connection_impl.h │ │ ├── conversation_models_logging_decorator.cc │ │ ├── conversation_models_logging_decorator.h │ │ ├── conversation_models_metadata_decorator.cc │ │ ├── conversation_models_metadata_decorator.h │ │ ├── conversation_models_option_defaults.cc │ │ ├── conversation_models_option_defaults.h │ │ ├── conversation_models_retry_traits.h │ │ ├── conversation_models_sources.cc │ │ ├── conversation_models_stub.cc │ │ ├── conversation_models_stub.h │ │ ├── conversation_models_stub_factory.cc │ │ ├── conversation_models_stub_factory.h │ │ ├── conversation_models_tracing_connection.cc │ │ ├── conversation_models_tracing_connection.h │ │ ├── conversation_models_tracing_stub.cc │ │ ├── conversation_models_tracing_stub.h │ │ ├── conversation_profiles_auth_decorator.cc │ │ ├── conversation_profiles_auth_decorator.h │ │ ├── conversation_profiles_connection_impl.cc │ │ ├── conversation_profiles_connection_impl.h │ │ ├── conversation_profiles_logging_decorator.cc │ │ ├── conversation_profiles_logging_decorator.h │ │ ├── conversation_profiles_metadata_decorator.cc │ │ ├── conversation_profiles_metadata_decorator.h │ │ ├── conversation_profiles_option_defaults.cc │ │ ├── conversation_profiles_option_defaults.h │ │ ├── conversation_profiles_retry_traits.h │ │ ├── conversation_profiles_sources.cc │ │ ├── conversation_profiles_stub.cc │ │ ├── conversation_profiles_stub.h │ │ ├── conversation_profiles_stub_factory.cc │ │ ├── conversation_profiles_stub_factory.h │ │ ├── conversation_profiles_tracing_connection.cc │ │ ├── conversation_profiles_tracing_connection.h │ │ ├── conversation_profiles_tracing_stub.cc │ │ ├── conversation_profiles_tracing_stub.h │ │ ├── conversations_auth_decorator.cc │ │ ├── conversations_auth_decorator.h │ │ ├── conversations_connection_impl.cc │ │ ├── conversations_connection_impl.h │ │ ├── conversations_logging_decorator.cc │ │ ├── conversations_logging_decorator.h │ │ ├── conversations_metadata_decorator.cc │ │ ├── conversations_metadata_decorator.h │ │ ├── conversations_option_defaults.cc │ │ ├── conversations_option_defaults.h │ │ ├── conversations_retry_traits.h │ │ ├── conversations_sources.cc │ │ ├── conversations_stub.cc │ │ ├── conversations_stub.h │ │ ├── conversations_stub_factory.cc │ │ ├── conversations_stub_factory.h │ │ ├── conversations_tracing_connection.cc │ │ ├── conversations_tracing_connection.h │ │ ├── conversations_tracing_stub.cc │ │ ├── conversations_tracing_stub.h │ │ ├── documents_auth_decorator.cc │ │ ├── documents_auth_decorator.h │ │ ├── documents_connection_impl.cc │ │ ├── documents_connection_impl.h │ │ ├── documents_logging_decorator.cc │ │ ├── documents_logging_decorator.h │ │ ├── documents_metadata_decorator.cc │ │ ├── documents_metadata_decorator.h │ │ ├── documents_option_defaults.cc │ │ ├── documents_option_defaults.h │ │ ├── documents_retry_traits.h │ │ ├── documents_sources.cc │ │ ├── documents_stub.cc │ │ ├── documents_stub.h │ │ ├── documents_stub_factory.cc │ │ ├── documents_stub_factory.h │ │ ├── documents_tracing_connection.cc │ │ ├── documents_tracing_connection.h │ │ ├── documents_tracing_stub.cc │ │ ├── documents_tracing_stub.h │ │ ├── encryption_spec_auth_decorator.cc │ │ ├── encryption_spec_auth_decorator.h │ │ ├── encryption_spec_connection_impl.cc │ │ ├── encryption_spec_connection_impl.h │ │ ├── encryption_spec_logging_decorator.cc │ │ ├── encryption_spec_logging_decorator.h │ │ ├── encryption_spec_metadata_decorator.cc │ │ ├── encryption_spec_metadata_decorator.h │ │ ├── encryption_spec_option_defaults.cc │ │ ├── encryption_spec_option_defaults.h │ │ ├── encryption_spec_retry_traits.h │ │ ├── encryption_spec_sources.cc │ │ ├── encryption_spec_stub.cc │ │ ├── encryption_spec_stub.h │ │ ├── encryption_spec_stub_factory.cc │ │ ├── encryption_spec_stub_factory.h │ │ ├── encryption_spec_tracing_connection.cc │ │ ├── encryption_spec_tracing_connection.h │ │ ├── encryption_spec_tracing_stub.cc │ │ ├── encryption_spec_tracing_stub.h │ │ ├── entity_types_auth_decorator.cc │ │ ├── entity_types_auth_decorator.h │ │ ├── entity_types_connection_impl.cc │ │ ├── entity_types_connection_impl.h │ │ ├── entity_types_logging_decorator.cc │ │ ├── entity_types_logging_decorator.h │ │ ├── entity_types_metadata_decorator.cc │ │ ├── entity_types_metadata_decorator.h │ │ ├── entity_types_option_defaults.cc │ │ ├── entity_types_option_defaults.h │ │ ├── entity_types_retry_traits.h │ │ ├── entity_types_sources.cc │ │ ├── entity_types_stub.cc │ │ ├── entity_types_stub.h │ │ ├── entity_types_stub_factory.cc │ │ ├── entity_types_stub_factory.h │ │ ├── entity_types_tracing_connection.cc │ │ ├── entity_types_tracing_connection.h │ │ ├── entity_types_tracing_stub.cc │ │ ├── entity_types_tracing_stub.h │ │ ├── environments_auth_decorator.cc │ │ ├── environments_auth_decorator.h │ │ ├── environments_connection_impl.cc │ │ ├── environments_connection_impl.h │ │ ├── environments_logging_decorator.cc │ │ ├── environments_logging_decorator.h │ │ ├── environments_metadata_decorator.cc │ │ ├── environments_metadata_decorator.h │ │ ├── environments_option_defaults.cc │ │ ├── environments_option_defaults.h │ │ ├── environments_retry_traits.h │ │ ├── environments_sources.cc │ │ ├── environments_stub.cc │ │ ├── environments_stub.h │ │ ├── environments_stub_factory.cc │ │ ├── environments_stub_factory.h │ │ ├── environments_tracing_connection.cc │ │ ├── environments_tracing_connection.h │ │ ├── environments_tracing_stub.cc │ │ ├── environments_tracing_stub.h │ │ ├── fulfillments_auth_decorator.cc │ │ ├── fulfillments_auth_decorator.h │ │ ├── fulfillments_connection_impl.cc │ │ ├── fulfillments_connection_impl.h │ │ ├── fulfillments_logging_decorator.cc │ │ ├── fulfillments_logging_decorator.h │ │ ├── fulfillments_metadata_decorator.cc │ │ ├── fulfillments_metadata_decorator.h │ │ ├── fulfillments_option_defaults.cc │ │ ├── fulfillments_option_defaults.h │ │ ├── fulfillments_retry_traits.h │ │ ├── fulfillments_sources.cc │ │ ├── fulfillments_stub.cc │ │ ├── fulfillments_stub.h │ │ ├── fulfillments_stub_factory.cc │ │ ├── fulfillments_stub_factory.h │ │ ├── fulfillments_tracing_connection.cc │ │ ├── fulfillments_tracing_connection.h │ │ ├── fulfillments_tracing_stub.cc │ │ ├── fulfillments_tracing_stub.h │ │ ├── generators_auth_decorator.cc │ │ ├── generators_auth_decorator.h │ │ ├── generators_connection_impl.cc │ │ ├── generators_connection_impl.h │ │ ├── generators_logging_decorator.cc │ │ ├── generators_logging_decorator.h │ │ ├── generators_metadata_decorator.cc │ │ ├── generators_metadata_decorator.h │ │ ├── generators_option_defaults.cc │ │ ├── generators_option_defaults.h │ │ ├── generators_retry_traits.h │ │ ├── generators_sources.cc │ │ ├── generators_stub.cc │ │ ├── generators_stub.h │ │ ├── generators_stub_factory.cc │ │ ├── generators_stub_factory.h │ │ ├── generators_tracing_connection.cc │ │ ├── generators_tracing_connection.h │ │ ├── generators_tracing_stub.cc │ │ ├── generators_tracing_stub.h │ │ ├── intents_auth_decorator.cc │ │ ├── intents_auth_decorator.h │ │ ├── intents_connection_impl.cc │ │ ├── intents_connection_impl.h │ │ ├── intents_logging_decorator.cc │ │ ├── intents_logging_decorator.h │ │ ├── intents_metadata_decorator.cc │ │ ├── intents_metadata_decorator.h │ │ ├── intents_option_defaults.cc │ │ ├── intents_option_defaults.h │ │ ├── intents_retry_traits.h │ │ ├── intents_sources.cc │ │ ├── intents_stub.cc │ │ ├── intents_stub.h │ │ ├── intents_stub_factory.cc │ │ ├── intents_stub_factory.h │ │ ├── intents_tracing_connection.cc │ │ ├── intents_tracing_connection.h │ │ ├── intents_tracing_stub.cc │ │ ├── intents_tracing_stub.h │ │ ├── knowledge_bases_auth_decorator.cc │ │ ├── knowledge_bases_auth_decorator.h │ │ ├── knowledge_bases_connection_impl.cc │ │ ├── knowledge_bases_connection_impl.h │ │ ├── knowledge_bases_logging_decorator.cc │ │ ├── knowledge_bases_logging_decorator.h │ │ ├── knowledge_bases_metadata_decorator.cc │ │ ├── knowledge_bases_metadata_decorator.h │ │ ├── knowledge_bases_option_defaults.cc │ │ ├── knowledge_bases_option_defaults.h │ │ ├── knowledge_bases_retry_traits.h │ │ ├── knowledge_bases_sources.cc │ │ ├── knowledge_bases_stub.cc │ │ ├── knowledge_bases_stub.h │ │ ├── knowledge_bases_stub_factory.cc │ │ ├── knowledge_bases_stub_factory.h │ │ ├── knowledge_bases_tracing_connection.cc │ │ ├── knowledge_bases_tracing_connection.h │ │ ├── knowledge_bases_tracing_stub.cc │ │ ├── knowledge_bases_tracing_stub.h │ │ ├── participants_auth_decorator.cc │ │ ├── participants_auth_decorator.h │ │ ├── participants_connection_impl.cc │ │ ├── participants_connection_impl.h │ │ ├── participants_logging_decorator.cc │ │ ├── participants_logging_decorator.h │ │ ├── participants_metadata_decorator.cc │ │ ├── participants_metadata_decorator.h │ │ ├── participants_option_defaults.cc │ │ ├── participants_option_defaults.h │ │ ├── participants_retry_traits.h │ │ ├── participants_sources.cc │ │ ├── participants_stub.cc │ │ ├── participants_stub.h │ │ ├── participants_stub_factory.cc │ │ ├── participants_stub_factory.h │ │ ├── participants_tracing_connection.cc │ │ ├── participants_tracing_connection.h │ │ ├── participants_tracing_stub.cc │ │ ├── participants_tracing_stub.h │ │ ├── session_entity_types_auth_decorator.cc │ │ ├── session_entity_types_auth_decorator.h │ │ ├── session_entity_types_connection_impl.cc │ │ ├── session_entity_types_connection_impl.h │ │ ├── session_entity_types_logging_decorator.cc │ │ ├── session_entity_types_logging_decorator.h │ │ ├── session_entity_types_metadata_decorator.cc │ │ ├── session_entity_types_metadata_decorator.h │ │ ├── session_entity_types_option_defaults.cc │ │ ├── session_entity_types_option_defaults.h │ │ ├── session_entity_types_retry_traits.h │ │ ├── session_entity_types_sources.cc │ │ ├── session_entity_types_stub.cc │ │ ├── session_entity_types_stub.h │ │ ├── session_entity_types_stub_factory.cc │ │ ├── session_entity_types_stub_factory.h │ │ ├── session_entity_types_tracing_connection.cc │ │ ├── session_entity_types_tracing_connection.h │ │ ├── session_entity_types_tracing_stub.cc │ │ ├── session_entity_types_tracing_stub.h │ │ ├── sessions_auth_decorator.cc │ │ ├── sessions_auth_decorator.h │ │ ├── sessions_connection_impl.cc │ │ ├── sessions_connection_impl.h │ │ ├── sessions_logging_decorator.cc │ │ ├── sessions_logging_decorator.h │ │ ├── sessions_metadata_decorator.cc │ │ ├── sessions_metadata_decorator.h │ │ ├── sessions_option_defaults.cc │ │ ├── sessions_option_defaults.h │ │ ├── sessions_retry_traits.h │ │ ├── sessions_sources.cc │ │ ├── sessions_stub.cc │ │ ├── sessions_stub.h │ │ ├── sessions_stub_factory.cc │ │ ├── sessions_stub_factory.h │ │ ├── sessions_tracing_connection.cc │ │ ├── sessions_tracing_connection.h │ │ ├── sessions_tracing_stub.cc │ │ ├── sessions_tracing_stub.h │ │ ├── versions_auth_decorator.cc │ │ ├── versions_auth_decorator.h │ │ ├── versions_connection_impl.cc │ │ ├── versions_connection_impl.h │ │ ├── versions_logging_decorator.cc │ │ ├── versions_logging_decorator.h │ │ ├── versions_metadata_decorator.cc │ │ ├── versions_metadata_decorator.h │ │ ├── versions_option_defaults.cc │ │ ├── versions_option_defaults.h │ │ ├── versions_retry_traits.h │ │ ├── versions_sources.cc │ │ ├── versions_stub.cc │ │ ├── versions_stub.h │ │ ├── versions_stub_factory.cc │ │ ├── versions_stub_factory.h │ │ ├── versions_tracing_connection.cc │ │ ├── versions_tracing_connection.h │ │ ├── versions_tracing_stub.cc │ │ └── versions_tracing_stub.h │ ├── knowledge_bases_client.cc │ ├── knowledge_bases_client.h │ ├── knowledge_bases_connection.cc │ ├── knowledge_bases_connection.h │ ├── knowledge_bases_connection_idempotency_policy.cc │ ├── knowledge_bases_connection_idempotency_policy.h │ ├── knowledge_bases_options.h │ ├── mocks │ │ ├── mock_agents_connection.h │ │ ├── mock_answer_records_connection.h │ │ ├── mock_contexts_connection.h │ │ ├── mock_conversation_datasets_connection.h │ │ ├── mock_conversation_models_connection.h │ │ ├── mock_conversation_profiles_connection.h │ │ ├── mock_conversations_connection.h │ │ ├── mock_documents_connection.h │ │ ├── mock_encryption_spec_connection.h │ │ ├── mock_entity_types_connection.h │ │ ├── mock_environments_connection.h │ │ ├── mock_fulfillments_connection.h │ │ ├── mock_generators_connection.h │ │ ├── mock_intents_connection.h │ │ ├── mock_knowledge_bases_connection.h │ │ ├── mock_participants_connection.h │ │ ├── mock_session_entity_types_connection.h │ │ ├── mock_sessions_connection.h │ │ └── mock_versions_connection.h │ ├── participants_client.cc │ ├── participants_client.h │ ├── participants_connection.cc │ ├── participants_connection.h │ ├── participants_connection_idempotency_policy.cc │ ├── participants_connection_idempotency_policy.h │ ├── participants_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── samples │ │ ├── agents_client_samples.cc │ │ ├── answer_records_client_samples.cc │ │ ├── contexts_client_samples.cc │ │ ├── conversation_datasets_client_samples.cc │ │ ├── conversation_models_client_samples.cc │ │ ├── conversation_profiles_client_samples.cc │ │ ├── conversations_client_samples.cc │ │ ├── documents_client_samples.cc │ │ ├── encryption_spec_client_samples.cc │ │ ├── entity_types_client_samples.cc │ │ ├── environments_client_samples.cc │ │ ├── fulfillments_client_samples.cc │ │ ├── generators_client_samples.cc │ │ ├── intents_client_samples.cc │ │ ├── knowledge_bases_client_samples.cc │ │ ├── participants_client_samples.cc │ │ ├── session_entity_types_client_samples.cc │ │ ├── sessions_client_samples.cc │ │ └── versions_client_samples.cc │ ├── session_entity_types_client.cc │ ├── session_entity_types_client.h │ ├── session_entity_types_connection.cc │ ├── session_entity_types_connection.h │ ├── session_entity_types_connection_idempotency_policy.cc │ ├── session_entity_types_connection_idempotency_policy.h │ ├── session_entity_types_options.h │ ├── sessions_client.cc │ ├── sessions_client.h │ ├── sessions_connection.cc │ ├── sessions_connection.h │ ├── sessions_connection_idempotency_policy.cc │ ├── sessions_connection_idempotency_policy.h │ ├── sessions_options.h │ ├── versions_client.cc │ ├── versions_client.h │ ├── versions_connection.cc │ ├── versions_connection.h │ ├── versions_connection_idempotency_policy.cc │ ├── versions_connection_idempotency_policy.h │ └── versions_options.h │ ├── discoveryengine │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── completion_client.cc │ │ ├── completion_client.h │ │ ├── completion_connection.cc │ │ ├── completion_connection.h │ │ ├── completion_connection_idempotency_policy.cc │ │ ├── completion_connection_idempotency_policy.h │ │ ├── completion_options.h │ │ ├── control_client.cc │ │ ├── control_client.h │ │ ├── control_connection.cc │ │ ├── control_connection.h │ │ ├── control_connection_idempotency_policy.cc │ │ ├── control_connection_idempotency_policy.h │ │ ├── control_options.h │ │ ├── conversational_search_client.cc │ │ ├── conversational_search_client.h │ │ ├── conversational_search_connection.cc │ │ ├── conversational_search_connection.h │ │ ├── conversational_search_connection_idempotency_policy.cc │ │ ├── conversational_search_connection_idempotency_policy.h │ │ ├── conversational_search_options.h │ │ ├── data_store_client.cc │ │ ├── data_store_client.h │ │ ├── data_store_connection.cc │ │ ├── data_store_connection.h │ │ ├── data_store_connection_idempotency_policy.cc │ │ ├── data_store_connection_idempotency_policy.h │ │ ├── data_store_options.h │ │ ├── document_client.cc │ │ ├── document_client.h │ │ ├── document_connection.cc │ │ ├── document_connection.h │ │ ├── document_connection_idempotency_policy.cc │ │ ├── document_connection_idempotency_policy.h │ │ ├── document_options.h │ │ ├── engine_client.cc │ │ ├── engine_client.h │ │ ├── engine_connection.cc │ │ ├── engine_connection.h │ │ ├── engine_connection_idempotency_policy.cc │ │ ├── engine_connection_idempotency_policy.h │ │ ├── engine_options.h │ │ ├── grounded_generation_client.cc │ │ ├── grounded_generation_client.h │ │ ├── grounded_generation_connection.cc │ │ ├── grounded_generation_connection.h │ │ ├── grounded_generation_connection_idempotency_policy.cc │ │ ├── grounded_generation_connection_idempotency_policy.h │ │ ├── grounded_generation_options.h │ │ ├── internal │ │ ├── completion_auth_decorator.cc │ │ ├── completion_auth_decorator.h │ │ ├── completion_connection_impl.cc │ │ ├── completion_connection_impl.h │ │ ├── completion_logging_decorator.cc │ │ ├── completion_logging_decorator.h │ │ ├── completion_metadata_decorator.cc │ │ ├── completion_metadata_decorator.h │ │ ├── completion_option_defaults.cc │ │ ├── completion_option_defaults.h │ │ ├── completion_retry_traits.h │ │ ├── completion_sources.cc │ │ ├── completion_stub.cc │ │ ├── completion_stub.h │ │ ├── completion_stub_factory.cc │ │ ├── completion_stub_factory.h │ │ ├── completion_tracing_connection.cc │ │ ├── completion_tracing_connection.h │ │ ├── completion_tracing_stub.cc │ │ ├── completion_tracing_stub.h │ │ ├── control_auth_decorator.cc │ │ ├── control_auth_decorator.h │ │ ├── control_connection_impl.cc │ │ ├── control_connection_impl.h │ │ ├── control_logging_decorator.cc │ │ ├── control_logging_decorator.h │ │ ├── control_metadata_decorator.cc │ │ ├── control_metadata_decorator.h │ │ ├── control_option_defaults.cc │ │ ├── control_option_defaults.h │ │ ├── control_retry_traits.h │ │ ├── control_sources.cc │ │ ├── control_stub.cc │ │ ├── control_stub.h │ │ ├── control_stub_factory.cc │ │ ├── control_stub_factory.h │ │ ├── control_tracing_connection.cc │ │ ├── control_tracing_connection.h │ │ ├── control_tracing_stub.cc │ │ ├── control_tracing_stub.h │ │ ├── conversational_search_auth_decorator.cc │ │ ├── conversational_search_auth_decorator.h │ │ ├── conversational_search_connection_impl.cc │ │ ├── conversational_search_connection_impl.h │ │ ├── conversational_search_logging_decorator.cc │ │ ├── conversational_search_logging_decorator.h │ │ ├── conversational_search_metadata_decorator.cc │ │ ├── conversational_search_metadata_decorator.h │ │ ├── conversational_search_option_defaults.cc │ │ ├── conversational_search_option_defaults.h │ │ ├── conversational_search_retry_traits.h │ │ ├── conversational_search_sources.cc │ │ ├── conversational_search_stub.cc │ │ ├── conversational_search_stub.h │ │ ├── conversational_search_stub_factory.cc │ │ ├── conversational_search_stub_factory.h │ │ ├── conversational_search_tracing_connection.cc │ │ ├── conversational_search_tracing_connection.h │ │ ├── conversational_search_tracing_stub.cc │ │ ├── conversational_search_tracing_stub.h │ │ ├── data_store_auth_decorator.cc │ │ ├── data_store_auth_decorator.h │ │ ├── data_store_connection_impl.cc │ │ ├── data_store_connection_impl.h │ │ ├── data_store_logging_decorator.cc │ │ ├── data_store_logging_decorator.h │ │ ├── data_store_metadata_decorator.cc │ │ ├── data_store_metadata_decorator.h │ │ ├── data_store_option_defaults.cc │ │ ├── data_store_option_defaults.h │ │ ├── data_store_retry_traits.h │ │ ├── data_store_sources.cc │ │ ├── data_store_stub.cc │ │ ├── data_store_stub.h │ │ ├── data_store_stub_factory.cc │ │ ├── data_store_stub_factory.h │ │ ├── data_store_tracing_connection.cc │ │ ├── data_store_tracing_connection.h │ │ ├── data_store_tracing_stub.cc │ │ ├── data_store_tracing_stub.h │ │ ├── document_auth_decorator.cc │ │ ├── document_auth_decorator.h │ │ ├── document_connection_impl.cc │ │ ├── document_connection_impl.h │ │ ├── document_logging_decorator.cc │ │ ├── document_logging_decorator.h │ │ ├── document_metadata_decorator.cc │ │ ├── document_metadata_decorator.h │ │ ├── document_option_defaults.cc │ │ ├── document_option_defaults.h │ │ ├── document_retry_traits.h │ │ ├── document_sources.cc │ │ ├── document_stub.cc │ │ ├── document_stub.h │ │ ├── document_stub_factory.cc │ │ ├── document_stub_factory.h │ │ ├── document_tracing_connection.cc │ │ ├── document_tracing_connection.h │ │ ├── document_tracing_stub.cc │ │ ├── document_tracing_stub.h │ │ ├── engine_auth_decorator.cc │ │ ├── engine_auth_decorator.h │ │ ├── engine_connection_impl.cc │ │ ├── engine_connection_impl.h │ │ ├── engine_logging_decorator.cc │ │ ├── engine_logging_decorator.h │ │ ├── engine_metadata_decorator.cc │ │ ├── engine_metadata_decorator.h │ │ ├── engine_option_defaults.cc │ │ ├── engine_option_defaults.h │ │ ├── engine_retry_traits.h │ │ ├── engine_sources.cc │ │ ├── engine_stub.cc │ │ ├── engine_stub.h │ │ ├── engine_stub_factory.cc │ │ ├── engine_stub_factory.h │ │ ├── engine_tracing_connection.cc │ │ ├── engine_tracing_connection.h │ │ ├── engine_tracing_stub.cc │ │ ├── engine_tracing_stub.h │ │ ├── grounded_generation_auth_decorator.cc │ │ ├── grounded_generation_auth_decorator.h │ │ ├── grounded_generation_connection_impl.cc │ │ ├── grounded_generation_connection_impl.h │ │ ├── grounded_generation_logging_decorator.cc │ │ ├── grounded_generation_logging_decorator.h │ │ ├── grounded_generation_metadata_decorator.cc │ │ ├── grounded_generation_metadata_decorator.h │ │ ├── grounded_generation_option_defaults.cc │ │ ├── grounded_generation_option_defaults.h │ │ ├── grounded_generation_retry_traits.h │ │ ├── grounded_generation_sources.cc │ │ ├── grounded_generation_stub.cc │ │ ├── grounded_generation_stub.h │ │ ├── grounded_generation_stub_factory.cc │ │ ├── grounded_generation_stub_factory.h │ │ ├── grounded_generation_tracing_connection.cc │ │ ├── grounded_generation_tracing_connection.h │ │ ├── grounded_generation_tracing_stub.cc │ │ ├── grounded_generation_tracing_stub.h │ │ ├── project_auth_decorator.cc │ │ ├── project_auth_decorator.h │ │ ├── project_connection_impl.cc │ │ ├── project_connection_impl.h │ │ ├── project_logging_decorator.cc │ │ ├── project_logging_decorator.h │ │ ├── project_metadata_decorator.cc │ │ ├── project_metadata_decorator.h │ │ ├── project_option_defaults.cc │ │ ├── project_option_defaults.h │ │ ├── project_retry_traits.h │ │ ├── project_sources.cc │ │ ├── project_stub.cc │ │ ├── project_stub.h │ │ ├── project_stub_factory.cc │ │ ├── project_stub_factory.h │ │ ├── project_tracing_connection.cc │ │ ├── project_tracing_connection.h │ │ ├── project_tracing_stub.cc │ │ ├── project_tracing_stub.h │ │ ├── rank_auth_decorator.cc │ │ ├── rank_auth_decorator.h │ │ ├── rank_connection_impl.cc │ │ ├── rank_connection_impl.h │ │ ├── rank_logging_decorator.cc │ │ ├── rank_logging_decorator.h │ │ ├── rank_metadata_decorator.cc │ │ ├── rank_metadata_decorator.h │ │ ├── rank_option_defaults.cc │ │ ├── rank_option_defaults.h │ │ ├── rank_retry_traits.h │ │ ├── rank_sources.cc │ │ ├── rank_stub.cc │ │ ├── rank_stub.h │ │ ├── rank_stub_factory.cc │ │ ├── rank_stub_factory.h │ │ ├── rank_tracing_connection.cc │ │ ├── rank_tracing_connection.h │ │ ├── rank_tracing_stub.cc │ │ ├── rank_tracing_stub.h │ │ ├── recommendation_auth_decorator.cc │ │ ├── recommendation_auth_decorator.h │ │ ├── recommendation_connection_impl.cc │ │ ├── recommendation_connection_impl.h │ │ ├── recommendation_logging_decorator.cc │ │ ├── recommendation_logging_decorator.h │ │ ├── recommendation_metadata_decorator.cc │ │ ├── recommendation_metadata_decorator.h │ │ ├── recommendation_option_defaults.cc │ │ ├── recommendation_option_defaults.h │ │ ├── recommendation_retry_traits.h │ │ ├── recommendation_sources.cc │ │ ├── recommendation_stub.cc │ │ ├── recommendation_stub.h │ │ ├── recommendation_stub_factory.cc │ │ ├── recommendation_stub_factory.h │ │ ├── recommendation_tracing_connection.cc │ │ ├── recommendation_tracing_connection.h │ │ ├── recommendation_tracing_stub.cc │ │ ├── recommendation_tracing_stub.h │ │ ├── schema_auth_decorator.cc │ │ ├── schema_auth_decorator.h │ │ ├── schema_connection_impl.cc │ │ ├── schema_connection_impl.h │ │ ├── schema_logging_decorator.cc │ │ ├── schema_logging_decorator.h │ │ ├── schema_metadata_decorator.cc │ │ ├── schema_metadata_decorator.h │ │ ├── schema_option_defaults.cc │ │ ├── schema_option_defaults.h │ │ ├── schema_retry_traits.h │ │ ├── schema_sources.cc │ │ ├── schema_stub.cc │ │ ├── schema_stub.h │ │ ├── schema_stub_factory.cc │ │ ├── schema_stub_factory.h │ │ ├── schema_tracing_connection.cc │ │ ├── schema_tracing_connection.h │ │ ├── schema_tracing_stub.cc │ │ ├── schema_tracing_stub.h │ │ ├── search_auth_decorator.cc │ │ ├── search_auth_decorator.h │ │ ├── search_connection_impl.cc │ │ ├── search_connection_impl.h │ │ ├── search_logging_decorator.cc │ │ ├── search_logging_decorator.h │ │ ├── search_metadata_decorator.cc │ │ ├── search_metadata_decorator.h │ │ ├── search_option_defaults.cc │ │ ├── search_option_defaults.h │ │ ├── search_retry_traits.h │ │ ├── search_sources.cc │ │ ├── search_stub.cc │ │ ├── search_stub.h │ │ ├── search_stub_factory.cc │ │ ├── search_stub_factory.h │ │ ├── search_tracing_connection.cc │ │ ├── search_tracing_connection.h │ │ ├── search_tracing_stub.cc │ │ ├── search_tracing_stub.h │ │ ├── site_search_engine_auth_decorator.cc │ │ ├── site_search_engine_auth_decorator.h │ │ ├── site_search_engine_connection_impl.cc │ │ ├── site_search_engine_connection_impl.h │ │ ├── site_search_engine_logging_decorator.cc │ │ ├── site_search_engine_logging_decorator.h │ │ ├── site_search_engine_metadata_decorator.cc │ │ ├── site_search_engine_metadata_decorator.h │ │ ├── site_search_engine_option_defaults.cc │ │ ├── site_search_engine_option_defaults.h │ │ ├── site_search_engine_retry_traits.h │ │ ├── site_search_engine_sources.cc │ │ ├── site_search_engine_stub.cc │ │ ├── site_search_engine_stub.h │ │ ├── site_search_engine_stub_factory.cc │ │ ├── site_search_engine_stub_factory.h │ │ ├── site_search_engine_tracing_connection.cc │ │ ├── site_search_engine_tracing_connection.h │ │ ├── site_search_engine_tracing_stub.cc │ │ ├── site_search_engine_tracing_stub.h │ │ ├── user_event_auth_decorator.cc │ │ ├── user_event_auth_decorator.h │ │ ├── user_event_connection_impl.cc │ │ ├── user_event_connection_impl.h │ │ ├── user_event_logging_decorator.cc │ │ ├── user_event_logging_decorator.h │ │ ├── user_event_metadata_decorator.cc │ │ ├── user_event_metadata_decorator.h │ │ ├── user_event_option_defaults.cc │ │ ├── user_event_option_defaults.h │ │ ├── user_event_retry_traits.h │ │ ├── user_event_sources.cc │ │ ├── user_event_stub.cc │ │ ├── user_event_stub.h │ │ ├── user_event_stub_factory.cc │ │ ├── user_event_stub_factory.h │ │ ├── user_event_tracing_connection.cc │ │ ├── user_event_tracing_connection.h │ │ ├── user_event_tracing_stub.cc │ │ └── user_event_tracing_stub.h │ │ ├── mocks │ │ ├── mock_completion_connection.h │ │ ├── mock_control_connection.h │ │ ├── mock_conversational_search_connection.h │ │ ├── mock_data_store_connection.h │ │ ├── mock_document_connection.h │ │ ├── mock_engine_connection.h │ │ ├── mock_grounded_generation_connection.h │ │ ├── mock_project_connection.h │ │ ├── mock_rank_connection.h │ │ ├── mock_recommendation_connection.h │ │ ├── mock_schema_connection.h │ │ ├── mock_search_connection.h │ │ ├── mock_site_search_engine_connection.h │ │ └── mock_user_event_connection.h │ │ ├── project_client.cc │ │ ├── project_client.h │ │ ├── project_connection.cc │ │ ├── project_connection.h │ │ ├── project_connection_idempotency_policy.cc │ │ ├── project_connection_idempotency_policy.h │ │ ├── project_options.h │ │ ├── rank_client.cc │ │ ├── rank_client.h │ │ ├── rank_connection.cc │ │ ├── rank_connection.h │ │ ├── rank_connection_idempotency_policy.cc │ │ ├── rank_connection_idempotency_policy.h │ │ ├── rank_options.h │ │ ├── recommendation_client.cc │ │ ├── recommendation_client.h │ │ ├── recommendation_connection.cc │ │ ├── recommendation_connection.h │ │ ├── recommendation_connection_idempotency_policy.cc │ │ ├── recommendation_connection_idempotency_policy.h │ │ ├── recommendation_options.h │ │ ├── samples │ │ ├── completion_client_samples.cc │ │ ├── control_client_samples.cc │ │ ├── conversational_search_client_samples.cc │ │ ├── data_store_client_samples.cc │ │ ├── document_client_samples.cc │ │ ├── engine_client_samples.cc │ │ ├── grounded_generation_client_samples.cc │ │ ├── project_client_samples.cc │ │ ├── rank_client_samples.cc │ │ ├── recommendation_client_samples.cc │ │ ├── schema_client_samples.cc │ │ ├── search_client_samples.cc │ │ ├── site_search_engine_client_samples.cc │ │ └── user_event_client_samples.cc │ │ ├── schema_client.cc │ │ ├── schema_client.h │ │ ├── schema_connection.cc │ │ ├── schema_connection.h │ │ ├── schema_connection_idempotency_policy.cc │ │ ├── schema_connection_idempotency_policy.h │ │ ├── schema_options.h │ │ ├── search_client.cc │ │ ├── search_client.h │ │ ├── search_connection.cc │ │ ├── search_connection.h │ │ ├── search_connection_idempotency_policy.cc │ │ ├── search_connection_idempotency_policy.h │ │ ├── search_options.h │ │ ├── site_search_engine_client.cc │ │ ├── site_search_engine_client.h │ │ ├── site_search_engine_connection.cc │ │ ├── site_search_engine_connection.h │ │ ├── site_search_engine_connection_idempotency_policy.cc │ │ ├── site_search_engine_connection_idempotency_policy.h │ │ ├── site_search_engine_options.h │ │ ├── user_event_client.cc │ │ ├── user_event_client.h │ │ ├── user_event_connection.cc │ │ ├── user_event_connection.h │ │ ├── user_event_connection_idempotency_policy.cc │ │ ├── user_event_connection_idempotency_policy.h │ │ └── user_event_options.h │ ├── dlp │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── dlp_client.h │ ├── dlp_connection.h │ ├── dlp_connection_idempotency_policy.h │ ├── dlp_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_dlp_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── dlp_client.cc │ │ ├── dlp_client.h │ │ ├── dlp_connection.cc │ │ ├── dlp_connection.h │ │ ├── dlp_connection_idempotency_policy.cc │ │ ├── dlp_connection_idempotency_policy.h │ │ ├── dlp_options.h │ │ ├── internal │ │ ├── dlp_auth_decorator.cc │ │ ├── dlp_auth_decorator.h │ │ ├── dlp_connection_impl.cc │ │ ├── dlp_connection_impl.h │ │ ├── dlp_logging_decorator.cc │ │ ├── dlp_logging_decorator.h │ │ ├── dlp_metadata_decorator.cc │ │ ├── dlp_metadata_decorator.h │ │ ├── dlp_option_defaults.cc │ │ ├── dlp_option_defaults.h │ │ ├── dlp_retry_traits.h │ │ ├── dlp_sources.cc │ │ ├── dlp_stub.cc │ │ ├── dlp_stub.h │ │ ├── dlp_stub_factory.cc │ │ ├── dlp_stub_factory.h │ │ ├── dlp_tracing_connection.cc │ │ ├── dlp_tracing_connection.h │ │ ├── dlp_tracing_stub.cc │ │ └── dlp_tracing_stub.h │ │ ├── mocks │ │ └── mock_dlp_connection.h │ │ └── samples │ │ └── dlp_client_samples.cc │ ├── doc │ ├── common-main.dox │ ├── error-handling.dox │ ├── guac.dox │ ├── logging.dox │ └── options.dox │ ├── documentai │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── document_processor_client.h │ ├── document_processor_connection.h │ ├── document_processor_connection_idempotency_policy.h │ ├── document_processor_options.h │ ├── mocks │ │ └── mock_document_processor_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ ├── quickstart.cc │ │ └── resources │ │ │ └── invoice.pdf │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── document_processor_client.cc │ │ ├── document_processor_client.h │ │ ├── document_processor_connection.cc │ │ ├── document_processor_connection.h │ │ ├── document_processor_connection_idempotency_policy.cc │ │ ├── document_processor_connection_idempotency_policy.h │ │ ├── document_processor_options.h │ │ ├── internal │ │ ├── document_processor_auth_decorator.cc │ │ ├── document_processor_auth_decorator.h │ │ ├── document_processor_connection_impl.cc │ │ ├── document_processor_connection_impl.h │ │ ├── document_processor_logging_decorator.cc │ │ ├── document_processor_logging_decorator.h │ │ ├── document_processor_metadata_decorator.cc │ │ ├── document_processor_metadata_decorator.h │ │ ├── document_processor_option_defaults.cc │ │ ├── document_processor_option_defaults.h │ │ ├── document_processor_retry_traits.h │ │ ├── document_processor_sources.cc │ │ ├── document_processor_stub.cc │ │ ├── document_processor_stub.h │ │ ├── document_processor_stub_factory.cc │ │ ├── document_processor_stub_factory.h │ │ ├── document_processor_tracing_connection.cc │ │ ├── document_processor_tracing_connection.h │ │ ├── document_processor_tracing_stub.cc │ │ └── document_processor_tracing_stub.h │ │ ├── mocks │ │ └── mock_document_processor_connection.h │ │ └── samples │ │ └── document_processor_client_samples.cc │ ├── domains │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── domains_client.cc │ │ ├── domains_client.h │ │ ├── domains_connection.cc │ │ ├── domains_connection.h │ │ ├── domains_connection_idempotency_policy.cc │ │ ├── domains_connection_idempotency_policy.h │ │ ├── domains_options.h │ │ ├── internal │ │ ├── domains_auth_decorator.cc │ │ ├── domains_auth_decorator.h │ │ ├── domains_connection_impl.cc │ │ ├── domains_connection_impl.h │ │ ├── domains_logging_decorator.cc │ │ ├── domains_logging_decorator.h │ │ ├── domains_metadata_decorator.cc │ │ ├── domains_metadata_decorator.h │ │ ├── domains_option_defaults.cc │ │ ├── domains_option_defaults.h │ │ ├── domains_retry_traits.h │ │ ├── domains_sources.cc │ │ ├── domains_stub.cc │ │ ├── domains_stub.h │ │ ├── domains_stub_factory.cc │ │ ├── domains_stub_factory.h │ │ ├── domains_tracing_connection.cc │ │ ├── domains_tracing_connection.h │ │ ├── domains_tracing_stub.cc │ │ └── domains_tracing_stub.h │ │ ├── mocks │ │ └── mock_domains_connection.h │ │ └── samples │ │ └── domains_client_samples.cc │ ├── edgecontainer │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── edge_container_client.h │ ├── edge_container_connection.h │ ├── edge_container_connection_idempotency_policy.h │ ├── edge_container_options.h │ ├── mocks │ │ └── mock_edge_container_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── edge_container_client.cc │ │ ├── edge_container_client.h │ │ ├── edge_container_connection.cc │ │ ├── edge_container_connection.h │ │ ├── edge_container_connection_idempotency_policy.cc │ │ ├── edge_container_connection_idempotency_policy.h │ │ ├── edge_container_options.h │ │ ├── internal │ │ ├── edge_container_auth_decorator.cc │ │ ├── edge_container_auth_decorator.h │ │ ├── edge_container_connection_impl.cc │ │ ├── edge_container_connection_impl.h │ │ ├── edge_container_logging_decorator.cc │ │ ├── edge_container_logging_decorator.h │ │ ├── edge_container_metadata_decorator.cc │ │ ├── edge_container_metadata_decorator.h │ │ ├── edge_container_option_defaults.cc │ │ ├── edge_container_option_defaults.h │ │ ├── edge_container_retry_traits.h │ │ ├── edge_container_sources.cc │ │ ├── edge_container_stub.cc │ │ ├── edge_container_stub.h │ │ ├── edge_container_stub_factory.cc │ │ ├── edge_container_stub_factory.h │ │ ├── edge_container_tracing_connection.cc │ │ ├── edge_container_tracing_connection.h │ │ ├── edge_container_tracing_stub.cc │ │ └── edge_container_tracing_stub.h │ │ ├── mocks │ │ └── mock_edge_container_connection.h │ │ └── samples │ │ └── edge_container_client_samples.cc │ ├── edgenetwork │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── edge_network_client.cc │ │ ├── edge_network_client.h │ │ ├── edge_network_connection.cc │ │ ├── edge_network_connection.h │ │ ├── edge_network_connection_idempotency_policy.cc │ │ ├── edge_network_connection_idempotency_policy.h │ │ ├── edge_network_options.h │ │ ├── internal │ │ ├── edge_network_auth_decorator.cc │ │ ├── edge_network_auth_decorator.h │ │ ├── edge_network_connection_impl.cc │ │ ├── edge_network_connection_impl.h │ │ ├── edge_network_logging_decorator.cc │ │ ├── edge_network_logging_decorator.h │ │ ├── edge_network_metadata_decorator.cc │ │ ├── edge_network_metadata_decorator.h │ │ ├── edge_network_option_defaults.cc │ │ ├── edge_network_option_defaults.h │ │ ├── edge_network_retry_traits.h │ │ ├── edge_network_sources.cc │ │ ├── edge_network_stub.cc │ │ ├── edge_network_stub.h │ │ ├── edge_network_stub_factory.cc │ │ ├── edge_network_stub_factory.h │ │ ├── edge_network_tracing_connection.cc │ │ ├── edge_network_tracing_connection.h │ │ ├── edge_network_tracing_stub.cc │ │ └── edge_network_tracing_stub.h │ │ ├── mocks │ │ └── mock_edge_network_connection.h │ │ └── samples │ │ └── edge_network_client_samples.cc │ ├── essentialcontacts │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── essential_contacts_client.cc │ │ ├── essential_contacts_client.h │ │ ├── essential_contacts_connection.cc │ │ ├── essential_contacts_connection.h │ │ ├── essential_contacts_connection_idempotency_policy.cc │ │ ├── essential_contacts_connection_idempotency_policy.h │ │ ├── essential_contacts_options.h │ │ ├── internal │ │ ├── essential_contacts_auth_decorator.cc │ │ ├── essential_contacts_auth_decorator.h │ │ ├── essential_contacts_connection_impl.cc │ │ ├── essential_contacts_connection_impl.h │ │ ├── essential_contacts_logging_decorator.cc │ │ ├── essential_contacts_logging_decorator.h │ │ ├── essential_contacts_metadata_decorator.cc │ │ ├── essential_contacts_metadata_decorator.h │ │ ├── essential_contacts_option_defaults.cc │ │ ├── essential_contacts_option_defaults.h │ │ ├── essential_contacts_retry_traits.h │ │ ├── essential_contacts_sources.cc │ │ ├── essential_contacts_stub.cc │ │ ├── essential_contacts_stub.h │ │ ├── essential_contacts_stub_factory.cc │ │ ├── essential_contacts_stub_factory.h │ │ ├── essential_contacts_tracing_connection.cc │ │ ├── essential_contacts_tracing_connection.h │ │ ├── essential_contacts_tracing_stub.cc │ │ └── essential_contacts_tracing_stub.h │ │ ├── mocks │ │ └── mock_essential_contacts_connection.h │ │ └── samples │ │ └── essential_contacts_client_samples.cc │ ├── eventarc │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── eventarc_client.h │ ├── eventarc_connection.h │ ├── eventarc_connection_idempotency_policy.h │ ├── eventarc_options.h │ ├── mocks │ │ ├── mock_eventarc_connection.h │ │ └── mock_publisher_connection.h │ ├── publisher_client.h │ ├── publisher_connection.h │ ├── publisher_connection_idempotency_policy.h │ ├── publisher_options.h │ ├── publishing │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── publisher_auth_decorator.cc │ │ │ ├── publisher_auth_decorator.h │ │ │ ├── publisher_connection_impl.cc │ │ │ ├── publisher_connection_impl.h │ │ │ ├── publisher_logging_decorator.cc │ │ │ ├── publisher_logging_decorator.h │ │ │ ├── publisher_metadata_decorator.cc │ │ │ ├── publisher_metadata_decorator.h │ │ │ ├── publisher_option_defaults.cc │ │ │ ├── publisher_option_defaults.h │ │ │ ├── publisher_retry_traits.h │ │ │ ├── publisher_sources.cc │ │ │ ├── publisher_stub.cc │ │ │ ├── publisher_stub.h │ │ │ ├── publisher_stub_factory.cc │ │ │ ├── publisher_stub_factory.h │ │ │ ├── publisher_tracing_connection.cc │ │ │ ├── publisher_tracing_connection.h │ │ │ ├── publisher_tracing_stub.cc │ │ │ └── publisher_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_publisher_connection.h │ │ │ ├── publisher_client.cc │ │ │ ├── publisher_client.h │ │ │ ├── publisher_connection.cc │ │ │ ├── publisher_connection.h │ │ │ ├── publisher_connection_idempotency_policy.cc │ │ │ ├── publisher_connection_idempotency_policy.h │ │ │ ├── publisher_options.h │ │ │ └── samples │ │ │ └── publisher_client_samples.cc │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── eventarc_client.cc │ │ ├── eventarc_client.h │ │ ├── eventarc_connection.cc │ │ ├── eventarc_connection.h │ │ ├── eventarc_connection_idempotency_policy.cc │ │ ├── eventarc_connection_idempotency_policy.h │ │ ├── eventarc_options.h │ │ ├── internal │ │ ├── eventarc_auth_decorator.cc │ │ ├── eventarc_auth_decorator.h │ │ ├── eventarc_connection_impl.cc │ │ ├── eventarc_connection_impl.h │ │ ├── eventarc_logging_decorator.cc │ │ ├── eventarc_logging_decorator.h │ │ ├── eventarc_metadata_decorator.cc │ │ ├── eventarc_metadata_decorator.h │ │ ├── eventarc_option_defaults.cc │ │ ├── eventarc_option_defaults.h │ │ ├── eventarc_retry_traits.h │ │ ├── eventarc_sources.cc │ │ ├── eventarc_stub.cc │ │ ├── eventarc_stub.h │ │ ├── eventarc_stub_factory.cc │ │ ├── eventarc_stub_factory.h │ │ ├── eventarc_tracing_connection.cc │ │ ├── eventarc_tracing_connection.h │ │ ├── eventarc_tracing_stub.cc │ │ └── eventarc_tracing_stub.h │ │ ├── mocks │ │ └── mock_eventarc_connection.h │ │ └── samples │ │ └── eventarc_client_samples.cc │ ├── experimental_tag.h │ ├── filestore │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── cloud_filestore_manager_client.h │ ├── cloud_filestore_manager_connection.h │ ├── cloud_filestore_manager_connection_idempotency_policy.h │ ├── cloud_filestore_manager_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_cloud_filestore_manager_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_filestore_manager_client.cc │ │ ├── cloud_filestore_manager_client.h │ │ ├── cloud_filestore_manager_connection.cc │ │ ├── cloud_filestore_manager_connection.h │ │ ├── cloud_filestore_manager_connection_idempotency_policy.cc │ │ ├── cloud_filestore_manager_connection_idempotency_policy.h │ │ ├── cloud_filestore_manager_options.h │ │ ├── internal │ │ ├── cloud_filestore_manager_auth_decorator.cc │ │ ├── cloud_filestore_manager_auth_decorator.h │ │ ├── cloud_filestore_manager_connection_impl.cc │ │ ├── cloud_filestore_manager_connection_impl.h │ │ ├── cloud_filestore_manager_logging_decorator.cc │ │ ├── cloud_filestore_manager_logging_decorator.h │ │ ├── cloud_filestore_manager_metadata_decorator.cc │ │ ├── cloud_filestore_manager_metadata_decorator.h │ │ ├── cloud_filestore_manager_option_defaults.cc │ │ ├── cloud_filestore_manager_option_defaults.h │ │ ├── cloud_filestore_manager_retry_traits.h │ │ ├── cloud_filestore_manager_sources.cc │ │ ├── cloud_filestore_manager_stub.cc │ │ ├── cloud_filestore_manager_stub.h │ │ ├── cloud_filestore_manager_stub_factory.cc │ │ ├── cloud_filestore_manager_stub_factory.h │ │ ├── cloud_filestore_manager_tracing_connection.cc │ │ ├── cloud_filestore_manager_tracing_connection.h │ │ ├── cloud_filestore_manager_tracing_stub.cc │ │ └── cloud_filestore_manager_tracing_stub.h │ │ ├── mocks │ │ └── mock_cloud_filestore_manager_connection.h │ │ └── samples │ │ └── cloud_filestore_manager_client_samples.cc │ ├── financialservices │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── MODULE.bazel │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── aml_client.cc │ │ ├── aml_client.h │ │ ├── aml_connection.cc │ │ ├── aml_connection.h │ │ ├── aml_connection_idempotency_policy.cc │ │ ├── aml_connection_idempotency_policy.h │ │ ├── aml_options.h │ │ ├── internal │ │ ├── aml_auth_decorator.cc │ │ ├── aml_auth_decorator.h │ │ ├── aml_connection_impl.cc │ │ ├── aml_connection_impl.h │ │ ├── aml_logging_decorator.cc │ │ ├── aml_logging_decorator.h │ │ ├── aml_metadata_decorator.cc │ │ ├── aml_metadata_decorator.h │ │ ├── aml_option_defaults.cc │ │ ├── aml_option_defaults.h │ │ ├── aml_retry_traits.h │ │ ├── aml_sources.cc │ │ ├── aml_stub.cc │ │ ├── aml_stub.h │ │ ├── aml_stub_factory.cc │ │ ├── aml_stub_factory.h │ │ ├── aml_tracing_connection.cc │ │ ├── aml_tracing_connection.h │ │ ├── aml_tracing_stub.cc │ │ └── aml_tracing_stub.h │ │ ├── mocks │ │ └── mock_aml_connection.h │ │ └── samples │ │ └── aml_client_samples.cc │ ├── functions │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── cloud_functions_client.h │ ├── cloud_functions_connection.h │ ├── cloud_functions_connection_idempotency_policy.h │ ├── cloud_functions_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_cloud_functions_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_functions_client.cc │ │ ├── cloud_functions_client.h │ │ ├── cloud_functions_connection.cc │ │ ├── cloud_functions_connection.h │ │ ├── cloud_functions_connection_idempotency_policy.cc │ │ ├── cloud_functions_connection_idempotency_policy.h │ │ ├── cloud_functions_options.h │ │ ├── internal │ │ │ ├── cloud_functions_auth_decorator.cc │ │ │ ├── cloud_functions_auth_decorator.h │ │ │ ├── cloud_functions_connection_impl.cc │ │ │ ├── cloud_functions_connection_impl.h │ │ │ ├── cloud_functions_logging_decorator.cc │ │ │ ├── cloud_functions_logging_decorator.h │ │ │ ├── cloud_functions_metadata_decorator.cc │ │ │ ├── cloud_functions_metadata_decorator.h │ │ │ ├── cloud_functions_option_defaults.cc │ │ │ ├── cloud_functions_option_defaults.h │ │ │ ├── cloud_functions_retry_traits.h │ │ │ ├── cloud_functions_sources.cc │ │ │ ├── cloud_functions_stub.cc │ │ │ ├── cloud_functions_stub.h │ │ │ ├── cloud_functions_stub_factory.cc │ │ │ ├── cloud_functions_stub_factory.h │ │ │ ├── cloud_functions_tracing_connection.cc │ │ │ ├── cloud_functions_tracing_connection.h │ │ │ ├── cloud_functions_tracing_stub.cc │ │ │ └── cloud_functions_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_cloud_functions_connection.h │ │ └── samples │ │ │ └── cloud_functions_client_samples.cc │ └── v2 │ │ ├── function_client.cc │ │ ├── function_client.h │ │ ├── function_connection.cc │ │ ├── function_connection.h │ │ ├── function_connection_idempotency_policy.cc │ │ ├── function_connection_idempotency_policy.h │ │ ├── function_options.h │ │ ├── internal │ │ ├── function_auth_decorator.cc │ │ ├── function_auth_decorator.h │ │ ├── function_connection_impl.cc │ │ ├── function_connection_impl.h │ │ ├── function_logging_decorator.cc │ │ ├── function_logging_decorator.h │ │ ├── function_metadata_decorator.cc │ │ ├── function_metadata_decorator.h │ │ ├── function_option_defaults.cc │ │ ├── function_option_defaults.h │ │ ├── function_retry_traits.h │ │ ├── function_sources.cc │ │ ├── function_stub.cc │ │ ├── function_stub.h │ │ ├── function_stub_factory.cc │ │ ├── function_stub_factory.h │ │ ├── function_tracing_connection.cc │ │ ├── function_tracing_connection.h │ │ ├── function_tracing_stub.cc │ │ └── function_tracing_stub.h │ │ ├── mocks │ │ └── mock_function_connection.h │ │ └── samples │ │ └── function_client_samples.cc │ ├── future.h │ ├── future_coroutines_test.cc │ ├── future_generic.h │ ├── future_generic_test.cc │ ├── future_generic_then_test.cc │ ├── future_void.h │ ├── future_void_test.cc │ ├── future_void_then_test.cc │ ├── gkebackup │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── backup_for_gke_client.cc │ │ ├── backup_for_gke_client.h │ │ ├── backup_for_gke_connection.cc │ │ ├── backup_for_gke_connection.h │ │ ├── backup_for_gke_connection_idempotency_policy.cc │ │ ├── backup_for_gke_connection_idempotency_policy.h │ │ ├── backup_for_gke_options.h │ │ ├── internal │ │ ├── backup_for_gke_auth_decorator.cc │ │ ├── backup_for_gke_auth_decorator.h │ │ ├── backup_for_gke_connection_impl.cc │ │ ├── backup_for_gke_connection_impl.h │ │ ├── backup_for_gke_logging_decorator.cc │ │ ├── backup_for_gke_logging_decorator.h │ │ ├── backup_for_gke_metadata_decorator.cc │ │ ├── backup_for_gke_metadata_decorator.h │ │ ├── backup_for_gke_option_defaults.cc │ │ ├── backup_for_gke_option_defaults.h │ │ ├── backup_for_gke_retry_traits.h │ │ ├── backup_for_gke_sources.cc │ │ ├── backup_for_gke_stub.cc │ │ ├── backup_for_gke_stub.h │ │ ├── backup_for_gke_stub_factory.cc │ │ ├── backup_for_gke_stub_factory.h │ │ ├── backup_for_gke_tracing_connection.cc │ │ ├── backup_for_gke_tracing_connection.h │ │ ├── backup_for_gke_tracing_stub.cc │ │ └── backup_for_gke_tracing_stub.h │ │ ├── mocks │ │ └── mock_backup_for_gke_connection.h │ │ └── samples │ │ └── backup_for_gke_client_samples.cc │ ├── gkeconnect │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── gateway │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── gateway_control_client.cc │ │ │ ├── gateway_control_client.h │ │ │ ├── gateway_control_connection.cc │ │ │ ├── gateway_control_connection.h │ │ │ ├── gateway_control_connection_idempotency_policy.cc │ │ │ ├── gateway_control_connection_idempotency_policy.h │ │ │ ├── gateway_control_options.h │ │ │ ├── gateway_control_rest_connection.cc │ │ │ ├── gateway_control_rest_connection.h │ │ │ ├── internal │ │ │ ├── gateway_control_option_defaults.cc │ │ │ ├── gateway_control_option_defaults.h │ │ │ ├── gateway_control_rest_connection_impl.cc │ │ │ ├── gateway_control_rest_connection_impl.h │ │ │ ├── gateway_control_rest_logging_decorator.cc │ │ │ ├── gateway_control_rest_logging_decorator.h │ │ │ ├── gateway_control_rest_metadata_decorator.cc │ │ │ ├── gateway_control_rest_metadata_decorator.h │ │ │ ├── gateway_control_rest_stub.cc │ │ │ ├── gateway_control_rest_stub.h │ │ │ ├── gateway_control_rest_stub_factory.cc │ │ │ ├── gateway_control_rest_stub_factory.h │ │ │ ├── gateway_control_retry_traits.h │ │ │ ├── gateway_control_sources.cc │ │ │ ├── gateway_control_tracing_connection.cc │ │ │ └── gateway_control_tracing_connection.h │ │ │ ├── mocks │ │ │ └── mock_gateway_control_connection.h │ │ │ └── samples │ │ │ └── gateway_control_client_samples.cc │ └── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── MODULE.bazel │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── gkehub │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── gke_hub_client.h │ ├── gke_hub_connection.h │ ├── gke_hub_connection_idempotency_policy.h │ ├── gke_hub_options.h │ ├── mocks │ │ └── mock_gke_hub_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── gke_hub_client.cc │ │ ├── gke_hub_client.h │ │ ├── gke_hub_connection.cc │ │ ├── gke_hub_connection.h │ │ ├── gke_hub_connection_idempotency_policy.cc │ │ ├── gke_hub_connection_idempotency_policy.h │ │ ├── gke_hub_options.h │ │ ├── internal │ │ ├── gke_hub_auth_decorator.cc │ │ ├── gke_hub_auth_decorator.h │ │ ├── gke_hub_connection_impl.cc │ │ ├── gke_hub_connection_impl.h │ │ ├── gke_hub_logging_decorator.cc │ │ ├── gke_hub_logging_decorator.h │ │ ├── gke_hub_metadata_decorator.cc │ │ ├── gke_hub_metadata_decorator.h │ │ ├── gke_hub_option_defaults.cc │ │ ├── gke_hub_option_defaults.h │ │ ├── gke_hub_retry_traits.h │ │ ├── gke_hub_sources.cc │ │ ├── gke_hub_stub.cc │ │ ├── gke_hub_stub.h │ │ ├── gke_hub_stub_factory.cc │ │ ├── gke_hub_stub_factory.h │ │ ├── gke_hub_tracing_connection.cc │ │ ├── gke_hub_tracing_connection.h │ │ ├── gke_hub_tracing_stub.cc │ │ └── gke_hub_tracing_stub.h │ │ ├── mocks │ │ └── mock_gke_hub_connection.h │ │ └── samples │ │ └── gke_hub_client_samples.cc │ ├── gkemulticloud │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── attached_clusters_client.cc │ │ ├── attached_clusters_client.h │ │ ├── attached_clusters_connection.cc │ │ ├── attached_clusters_connection.h │ │ ├── attached_clusters_connection_idempotency_policy.cc │ │ ├── attached_clusters_connection_idempotency_policy.h │ │ ├── attached_clusters_options.h │ │ ├── aws_clusters_client.cc │ │ ├── aws_clusters_client.h │ │ ├── aws_clusters_connection.cc │ │ ├── aws_clusters_connection.h │ │ ├── aws_clusters_connection_idempotency_policy.cc │ │ ├── aws_clusters_connection_idempotency_policy.h │ │ ├── aws_clusters_options.h │ │ ├── azure_clusters_client.cc │ │ ├── azure_clusters_client.h │ │ ├── azure_clusters_connection.cc │ │ ├── azure_clusters_connection.h │ │ ├── azure_clusters_connection_idempotency_policy.cc │ │ ├── azure_clusters_connection_idempotency_policy.h │ │ ├── azure_clusters_options.h │ │ ├── internal │ │ ├── attached_clusters_auth_decorator.cc │ │ ├── attached_clusters_auth_decorator.h │ │ ├── attached_clusters_connection_impl.cc │ │ ├── attached_clusters_connection_impl.h │ │ ├── attached_clusters_logging_decorator.cc │ │ ├── attached_clusters_logging_decorator.h │ │ ├── attached_clusters_metadata_decorator.cc │ │ ├── attached_clusters_metadata_decorator.h │ │ ├── attached_clusters_option_defaults.cc │ │ ├── attached_clusters_option_defaults.h │ │ ├── attached_clusters_retry_traits.h │ │ ├── attached_clusters_sources.cc │ │ ├── attached_clusters_stub.cc │ │ ├── attached_clusters_stub.h │ │ ├── attached_clusters_stub_factory.cc │ │ ├── attached_clusters_stub_factory.h │ │ ├── attached_clusters_tracing_connection.cc │ │ ├── attached_clusters_tracing_connection.h │ │ ├── attached_clusters_tracing_stub.cc │ │ ├── attached_clusters_tracing_stub.h │ │ ├── aws_clusters_auth_decorator.cc │ │ ├── aws_clusters_auth_decorator.h │ │ ├── aws_clusters_connection_impl.cc │ │ ├── aws_clusters_connection_impl.h │ │ ├── aws_clusters_logging_decorator.cc │ │ ├── aws_clusters_logging_decorator.h │ │ ├── aws_clusters_metadata_decorator.cc │ │ ├── aws_clusters_metadata_decorator.h │ │ ├── aws_clusters_option_defaults.cc │ │ ├── aws_clusters_option_defaults.h │ │ ├── aws_clusters_retry_traits.h │ │ ├── aws_clusters_sources.cc │ │ ├── aws_clusters_stub.cc │ │ ├── aws_clusters_stub.h │ │ ├── aws_clusters_stub_factory.cc │ │ ├── aws_clusters_stub_factory.h │ │ ├── aws_clusters_tracing_connection.cc │ │ ├── aws_clusters_tracing_connection.h │ │ ├── aws_clusters_tracing_stub.cc │ │ ├── aws_clusters_tracing_stub.h │ │ ├── azure_clusters_auth_decorator.cc │ │ ├── azure_clusters_auth_decorator.h │ │ ├── azure_clusters_connection_impl.cc │ │ ├── azure_clusters_connection_impl.h │ │ ├── azure_clusters_logging_decorator.cc │ │ ├── azure_clusters_logging_decorator.h │ │ ├── azure_clusters_metadata_decorator.cc │ │ ├── azure_clusters_metadata_decorator.h │ │ ├── azure_clusters_option_defaults.cc │ │ ├── azure_clusters_option_defaults.h │ │ ├── azure_clusters_retry_traits.h │ │ ├── azure_clusters_sources.cc │ │ ├── azure_clusters_stub.cc │ │ ├── azure_clusters_stub.h │ │ ├── azure_clusters_stub_factory.cc │ │ ├── azure_clusters_stub_factory.h │ │ ├── azure_clusters_tracing_connection.cc │ │ ├── azure_clusters_tracing_connection.h │ │ ├── azure_clusters_tracing_stub.cc │ │ └── azure_clusters_tracing_stub.h │ │ ├── mocks │ │ ├── mock_attached_clusters_connection.h │ │ ├── mock_aws_clusters_connection.h │ │ └── mock_azure_clusters_connection.h │ │ └── samples │ │ ├── attached_clusters_client_samples.cc │ │ ├── aws_clusters_client_samples.cc │ │ └── azure_clusters_client_samples.cc │ ├── google_cloud_cpp_common.bzl │ ├── google_cloud_cpp_common.cmake │ ├── google_cloud_cpp_common_benchmarks.bzl │ ├── google_cloud_cpp_common_unit_tests.bzl │ ├── google_cloud_cpp_grpc_utils.bzl │ ├── google_cloud_cpp_grpc_utils.cmake │ ├── google_cloud_cpp_grpc_utils_benchmarks.bzl │ ├── google_cloud_cpp_grpc_utils_integration_tests.bzl │ ├── google_cloud_cpp_grpc_utils_unit_tests.bzl │ ├── google_cloud_cpp_mocks.bzl │ ├── google_cloud_cpp_rest_internal.bzl │ ├── google_cloud_cpp_rest_internal.cmake │ ├── google_cloud_cpp_rest_internal_benchmarks.bzl │ ├── google_cloud_cpp_rest_internal_emulator_integration_tests.bzl │ ├── google_cloud_cpp_rest_internal_production_integration_tests.bzl │ ├── google_cloud_cpp_rest_internal_unit_tests.bzl │ ├── google_cloud_cpp_rest_protobuf_internal.bzl │ ├── google_cloud_cpp_rest_protobuf_internal.cmake │ ├── google_cloud_cpp_rest_protobuf_internal_unit_tests.bzl │ ├── google_cloud_cpp_universe_domain.bzl │ ├── google_cloud_cpp_universe_domain.cmake │ ├── google_cloud_cpp_universe_domain_unit_tests.bzl │ ├── grafeas │ ├── CMakeLists.txt │ └── README.md │ ├── grpc_error_delegate.cc │ ├── grpc_error_delegate.h │ ├── grpc_error_delegate_test.cc │ ├── grpc_options.cc │ ├── grpc_options.h │ ├── grpc_options_test.cc │ ├── grpc_utils │ ├── BUILD.bazel │ ├── async_operation.h │ ├── completion_queue.h │ ├── config.cmake.in │ ├── grpc_error_delegate.h │ └── version.h │ ├── iam │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── admin │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── iam_client.cc │ │ │ ├── iam_client.h │ │ │ ├── iam_connection.cc │ │ │ ├── iam_connection.h │ │ │ ├── iam_connection_idempotency_policy.cc │ │ │ ├── iam_connection_idempotency_policy.h │ │ │ ├── iam_options.h │ │ │ ├── internal │ │ │ ├── iam_auth_decorator.cc │ │ │ ├── iam_auth_decorator.h │ │ │ ├── iam_connection_impl.cc │ │ │ ├── iam_connection_impl.h │ │ │ ├── iam_logging_decorator.cc │ │ │ ├── iam_logging_decorator.h │ │ │ ├── iam_metadata_decorator.cc │ │ │ ├── iam_metadata_decorator.h │ │ │ ├── iam_option_defaults.cc │ │ │ ├── iam_option_defaults.h │ │ │ ├── iam_retry_traits.h │ │ │ ├── iam_sources.cc │ │ │ ├── iam_stub.cc │ │ │ ├── iam_stub.h │ │ │ ├── iam_stub_factory.cc │ │ │ ├── iam_stub_factory.h │ │ │ ├── iam_tracing_connection.cc │ │ │ ├── iam_tracing_connection.h │ │ │ ├── iam_tracing_stub.cc │ │ │ └── iam_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_iam_connection.h │ │ │ └── samples │ │ │ └── iam_client_samples.cc │ ├── credentials │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── iam_credentials_client.cc │ │ │ ├── iam_credentials_client.h │ │ │ ├── iam_credentials_connection.cc │ │ │ ├── iam_credentials_connection.h │ │ │ ├── iam_credentials_connection_idempotency_policy.cc │ │ │ ├── iam_credentials_connection_idempotency_policy.h │ │ │ ├── iam_credentials_options.h │ │ │ ├── internal │ │ │ ├── iam_credentials_auth_decorator.cc │ │ │ ├── iam_credentials_auth_decorator.h │ │ │ ├── iam_credentials_connection_impl.cc │ │ │ ├── iam_credentials_connection_impl.h │ │ │ ├── iam_credentials_logging_decorator.cc │ │ │ ├── iam_credentials_logging_decorator.h │ │ │ ├── iam_credentials_metadata_decorator.cc │ │ │ ├── iam_credentials_metadata_decorator.h │ │ │ ├── iam_credentials_option_defaults.cc │ │ │ ├── iam_credentials_option_defaults.h │ │ │ ├── iam_credentials_retry_traits.h │ │ │ ├── iam_credentials_sources.cc │ │ │ ├── iam_credentials_stub.cc │ │ │ ├── iam_credentials_stub.h │ │ │ ├── iam_credentials_stub_factory.cc │ │ │ ├── iam_credentials_stub_factory.h │ │ │ ├── iam_credentials_tracing_connection.cc │ │ │ ├── iam_credentials_tracing_connection.h │ │ │ ├── iam_credentials_tracing_stub.cc │ │ │ └── iam_credentials_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_iam_credentials_connection.h │ │ │ └── samples │ │ │ └── iam_credentials_client_samples.cc │ ├── doc │ │ ├── environment-variables.dox │ │ ├── iam-credentials-mock.dox │ │ ├── iam-mock.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── iam_client.h │ ├── iam_connection.h │ ├── iam_connection_idempotency_policy.h │ ├── iam_credentials_client.h │ ├── iam_credentials_connection.h │ ├── iam_credentials_connection_idempotency_policy.h │ ├── iam_credentials_options.h │ ├── iam_options.h │ ├── iam_policy_client.h │ ├── iam_policy_connection.h │ ├── iam_policy_connection_idempotency_policy.h │ ├── iam_policy_options.h │ ├── mocks │ │ ├── mock_iam_connection.h │ │ ├── mock_iam_credentials_connection.h │ │ └── mock_iam_policy_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── retry_traits.h │ ├── samples │ │ ├── iam_credentials_samples.cc │ │ ├── iam_samples.cc │ │ ├── mock_iam.cc │ │ └── mock_iam_credentials.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── iam_policy_client.cc │ │ ├── iam_policy_client.h │ │ ├── iam_policy_connection.cc │ │ ├── iam_policy_connection.h │ │ ├── iam_policy_connection_idempotency_policy.cc │ │ ├── iam_policy_connection_idempotency_policy.h │ │ ├── iam_policy_options.h │ │ ├── internal │ │ │ ├── iam_policy_auth_decorator.cc │ │ │ ├── iam_policy_auth_decorator.h │ │ │ ├── iam_policy_connection_impl.cc │ │ │ ├── iam_policy_connection_impl.h │ │ │ ├── iam_policy_logging_decorator.cc │ │ │ ├── iam_policy_logging_decorator.h │ │ │ ├── iam_policy_metadata_decorator.cc │ │ │ ├── iam_policy_metadata_decorator.h │ │ │ ├── iam_policy_option_defaults.cc │ │ │ ├── iam_policy_option_defaults.h │ │ │ ├── iam_policy_retry_traits.h │ │ │ ├── iam_policy_sources.cc │ │ │ ├── iam_policy_stub.cc │ │ │ ├── iam_policy_stub.h │ │ │ ├── iam_policy_stub_factory.cc │ │ │ ├── iam_policy_stub_factory.h │ │ │ ├── iam_policy_tracing_connection.cc │ │ │ ├── iam_policy_tracing_connection.h │ │ │ ├── iam_policy_tracing_stub.cc │ │ │ └── iam_policy_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_iam_policy_connection.h │ │ └── samples │ │ │ └── iam_policy_client_samples.cc │ ├── v2 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── policies_auth_decorator.cc │ │ │ ├── policies_auth_decorator.h │ │ │ ├── policies_connection_impl.cc │ │ │ ├── policies_connection_impl.h │ │ │ ├── policies_logging_decorator.cc │ │ │ ├── policies_logging_decorator.h │ │ │ ├── policies_metadata_decorator.cc │ │ │ ├── policies_metadata_decorator.h │ │ │ ├── policies_option_defaults.cc │ │ │ ├── policies_option_defaults.h │ │ │ ├── policies_retry_traits.h │ │ │ ├── policies_sources.cc │ │ │ ├── policies_stub.cc │ │ │ ├── policies_stub.h │ │ │ ├── policies_stub_factory.cc │ │ │ ├── policies_stub_factory.h │ │ │ ├── policies_tracing_connection.cc │ │ │ ├── policies_tracing_connection.h │ │ │ ├── policies_tracing_stub.cc │ │ │ └── policies_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_policies_connection.h │ │ ├── policies_client.cc │ │ ├── policies_client.h │ │ ├── policies_connection.cc │ │ ├── policies_connection.h │ │ ├── policies_connection_idempotency_policy.cc │ │ ├── policies_connection_idempotency_policy.h │ │ ├── policies_options.h │ │ └── samples │ │ │ └── policies_client_samples.cc │ └── v3 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── policy_bindings_auth_decorator.cc │ │ ├── policy_bindings_auth_decorator.h │ │ ├── policy_bindings_connection_impl.cc │ │ ├── policy_bindings_connection_impl.h │ │ ├── policy_bindings_logging_decorator.cc │ │ ├── policy_bindings_logging_decorator.h │ │ ├── policy_bindings_metadata_decorator.cc │ │ ├── policy_bindings_metadata_decorator.h │ │ ├── policy_bindings_option_defaults.cc │ │ ├── policy_bindings_option_defaults.h │ │ ├── policy_bindings_retry_traits.h │ │ ├── policy_bindings_sources.cc │ │ ├── policy_bindings_stub.cc │ │ ├── policy_bindings_stub.h │ │ ├── policy_bindings_stub_factory.cc │ │ ├── policy_bindings_stub_factory.h │ │ ├── policy_bindings_tracing_connection.cc │ │ ├── policy_bindings_tracing_connection.h │ │ ├── policy_bindings_tracing_stub.cc │ │ ├── policy_bindings_tracing_stub.h │ │ ├── principal_access_boundary_policies_auth_decorator.cc │ │ ├── principal_access_boundary_policies_auth_decorator.h │ │ ├── principal_access_boundary_policies_connection_impl.cc │ │ ├── principal_access_boundary_policies_connection_impl.h │ │ ├── principal_access_boundary_policies_logging_decorator.cc │ │ ├── principal_access_boundary_policies_logging_decorator.h │ │ ├── principal_access_boundary_policies_metadata_decorator.cc │ │ ├── principal_access_boundary_policies_metadata_decorator.h │ │ ├── principal_access_boundary_policies_option_defaults.cc │ │ ├── principal_access_boundary_policies_option_defaults.h │ │ ├── principal_access_boundary_policies_retry_traits.h │ │ ├── principal_access_boundary_policies_sources.cc │ │ ├── principal_access_boundary_policies_stub.cc │ │ ├── principal_access_boundary_policies_stub.h │ │ ├── principal_access_boundary_policies_stub_factory.cc │ │ ├── principal_access_boundary_policies_stub_factory.h │ │ ├── principal_access_boundary_policies_tracing_connection.cc │ │ ├── principal_access_boundary_policies_tracing_connection.h │ │ ├── principal_access_boundary_policies_tracing_stub.cc │ │ └── principal_access_boundary_policies_tracing_stub.h │ │ ├── mocks │ │ ├── mock_policy_bindings_connection.h │ │ └── mock_principal_access_boundary_policies_connection.h │ │ ├── policy_bindings_client.cc │ │ ├── policy_bindings_client.h │ │ ├── policy_bindings_connection.cc │ │ ├── policy_bindings_connection.h │ │ ├── policy_bindings_connection_idempotency_policy.cc │ │ ├── policy_bindings_connection_idempotency_policy.h │ │ ├── policy_bindings_options.h │ │ ├── principal_access_boundary_policies_client.cc │ │ ├── principal_access_boundary_policies_client.h │ │ ├── principal_access_boundary_policies_connection.cc │ │ ├── principal_access_boundary_policies_connection.h │ │ ├── principal_access_boundary_policies_connection_idempotency_policy.cc │ │ ├── principal_access_boundary_policies_connection_idempotency_policy.h │ │ ├── principal_access_boundary_policies_options.h │ │ └── samples │ │ ├── policy_bindings_client_samples.cc │ │ └── principal_access_boundary_policies_client_samples.cc │ ├── iam_updater.h │ ├── iap │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── identity_aware_proxy_admin_client.h │ ├── identity_aware_proxy_admin_connection.h │ ├── identity_aware_proxy_admin_connection_idempotency_policy.h │ ├── identity_aware_proxy_admin_options.h │ ├── identity_aware_proxy_o_auth_client.h │ ├── identity_aware_proxy_o_auth_connection.h │ ├── identity_aware_proxy_o_auth_connection_idempotency_policy.h │ ├── identity_aware_proxy_o_auth_options.h │ ├── mocks │ │ ├── mock_identity_aware_proxy_admin_connection.h │ │ └── mock_identity_aware_proxy_o_auth_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── identity_aware_proxy_admin_client.cc │ │ ├── identity_aware_proxy_admin_client.h │ │ ├── identity_aware_proxy_admin_connection.cc │ │ ├── identity_aware_proxy_admin_connection.h │ │ ├── identity_aware_proxy_admin_connection_idempotency_policy.cc │ │ ├── identity_aware_proxy_admin_connection_idempotency_policy.h │ │ ├── identity_aware_proxy_admin_options.h │ │ ├── identity_aware_proxy_o_auth_client.cc │ │ ├── identity_aware_proxy_o_auth_client.h │ │ ├── identity_aware_proxy_o_auth_connection.cc │ │ ├── identity_aware_proxy_o_auth_connection.h │ │ ├── identity_aware_proxy_o_auth_connection_idempotency_policy.cc │ │ ├── identity_aware_proxy_o_auth_connection_idempotency_policy.h │ │ ├── identity_aware_proxy_o_auth_options.h │ │ ├── internal │ │ ├── identity_aware_proxy_admin_auth_decorator.cc │ │ ├── identity_aware_proxy_admin_auth_decorator.h │ │ ├── identity_aware_proxy_admin_connection_impl.cc │ │ ├── identity_aware_proxy_admin_connection_impl.h │ │ ├── identity_aware_proxy_admin_logging_decorator.cc │ │ ├── identity_aware_proxy_admin_logging_decorator.h │ │ ├── identity_aware_proxy_admin_metadata_decorator.cc │ │ ├── identity_aware_proxy_admin_metadata_decorator.h │ │ ├── identity_aware_proxy_admin_option_defaults.cc │ │ ├── identity_aware_proxy_admin_option_defaults.h │ │ ├── identity_aware_proxy_admin_retry_traits.h │ │ ├── identity_aware_proxy_admin_sources.cc │ │ ├── identity_aware_proxy_admin_stub.cc │ │ ├── identity_aware_proxy_admin_stub.h │ │ ├── identity_aware_proxy_admin_stub_factory.cc │ │ ├── identity_aware_proxy_admin_stub_factory.h │ │ ├── identity_aware_proxy_admin_tracing_connection.cc │ │ ├── identity_aware_proxy_admin_tracing_connection.h │ │ ├── identity_aware_proxy_admin_tracing_stub.cc │ │ ├── identity_aware_proxy_admin_tracing_stub.h │ │ ├── identity_aware_proxy_o_auth_auth_decorator.cc │ │ ├── identity_aware_proxy_o_auth_auth_decorator.h │ │ ├── identity_aware_proxy_o_auth_connection_impl.cc │ │ ├── identity_aware_proxy_o_auth_connection_impl.h │ │ ├── identity_aware_proxy_o_auth_logging_decorator.cc │ │ ├── identity_aware_proxy_o_auth_logging_decorator.h │ │ ├── identity_aware_proxy_o_auth_metadata_decorator.cc │ │ ├── identity_aware_proxy_o_auth_metadata_decorator.h │ │ ├── identity_aware_proxy_o_auth_option_defaults.cc │ │ ├── identity_aware_proxy_o_auth_option_defaults.h │ │ ├── identity_aware_proxy_o_auth_retry_traits.h │ │ ├── identity_aware_proxy_o_auth_sources.cc │ │ ├── identity_aware_proxy_o_auth_stub.cc │ │ ├── identity_aware_proxy_o_auth_stub.h │ │ ├── identity_aware_proxy_o_auth_stub_factory.cc │ │ ├── identity_aware_proxy_o_auth_stub_factory.h │ │ ├── identity_aware_proxy_o_auth_tracing_connection.cc │ │ ├── identity_aware_proxy_o_auth_tracing_connection.h │ │ ├── identity_aware_proxy_o_auth_tracing_stub.cc │ │ └── identity_aware_proxy_o_auth_tracing_stub.h │ │ ├── mocks │ │ ├── mock_identity_aware_proxy_admin_connection.h │ │ └── mock_identity_aware_proxy_o_auth_connection.h │ │ └── samples │ │ ├── identity_aware_proxy_admin_client_samples.cc │ │ └── identity_aware_proxy_o_auth_client_samples.cc │ ├── idempotency.h │ ├── ids │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── ids_client.h │ ├── ids_connection.h │ ├── ids_connection_idempotency_policy.h │ ├── ids_options.h │ ├── mocks │ │ └── mock_ids_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── ids_client.cc │ │ ├── ids_client.h │ │ ├── ids_connection.cc │ │ ├── ids_connection.h │ │ ├── ids_connection_idempotency_policy.cc │ │ ├── ids_connection_idempotency_policy.h │ │ ├── ids_options.h │ │ ├── internal │ │ ├── ids_auth_decorator.cc │ │ ├── ids_auth_decorator.h │ │ ├── ids_connection_impl.cc │ │ ├── ids_connection_impl.h │ │ ├── ids_logging_decorator.cc │ │ ├── ids_logging_decorator.h │ │ ├── ids_metadata_decorator.cc │ │ ├── ids_metadata_decorator.h │ │ ├── ids_option_defaults.cc │ │ ├── ids_option_defaults.h │ │ ├── ids_retry_traits.h │ │ ├── ids_sources.cc │ │ ├── ids_stub.cc │ │ ├── ids_stub.h │ │ ├── ids_stub_factory.cc │ │ ├── ids_stub_factory.h │ │ ├── ids_tracing_connection.cc │ │ ├── ids_tracing_connection.h │ │ ├── ids_tracing_stub.cc │ │ └── ids_tracing_stub.h │ │ ├── mocks │ │ └── mock_ids_connection.h │ │ └── samples │ │ └── ids_client_samples.cc │ ├── internal │ ├── README.md │ ├── absl_str_cat_quiet.h │ ├── absl_str_join_quiet.h │ ├── absl_str_replace_quiet.h │ ├── algorithm.h │ ├── algorithm_test.cc │ ├── api_client_header.cc │ ├── api_client_header.h │ ├── api_client_header_test.cc │ ├── async_connection_ready.cc │ ├── async_connection_ready.h │ ├── async_connection_ready_test.cc │ ├── async_long_running_operation.h │ ├── async_long_running_operation_test.cc │ ├── async_polling_loop.cc │ ├── async_polling_loop.h │ ├── async_polling_loop_test.cc │ ├── async_read_stream_impl.h │ ├── async_read_write_stream_auth.h │ ├── async_read_write_stream_auth_test.cc │ ├── async_read_write_stream_impl.h │ ├── async_read_write_stream_impl_test.cc │ ├── async_read_write_stream_logging.h │ ├── async_read_write_stream_logging_test.cc │ ├── async_read_write_stream_timeout.h │ ├── async_read_write_stream_timeout_test.cc │ ├── async_read_write_stream_tracing.h │ ├── async_read_write_stream_tracing_test.cc │ ├── async_rest_long_running_operation.h │ ├── async_rest_long_running_operation_custom.h │ ├── async_rest_long_running_operation_custom_test.cc │ ├── async_rest_long_running_operation_test.cc │ ├── async_rest_polling_loop.cc │ ├── async_rest_polling_loop.h │ ├── async_rest_polling_loop_custom.h │ ├── async_rest_polling_loop_custom_test.cc │ ├── async_rest_polling_loop_impl.h │ ├── async_rest_polling_loop_test.cc │ ├── async_rest_retry_loop.h │ ├── async_rest_retry_loop_test.cc │ ├── async_retry_loop.h │ ├── async_retry_loop_test.cc │ ├── async_retry_unary_rpc.h │ ├── async_retry_unary_rpc_test.cc │ ├── async_rpc_details.h │ ├── async_streaming_read_rpc.h │ ├── async_streaming_read_rpc_auth.h │ ├── async_streaming_read_rpc_auth_test.cc │ ├── async_streaming_read_rpc_impl.h │ ├── async_streaming_read_rpc_impl_test.cc │ ├── async_streaming_read_rpc_logging.h │ ├── async_streaming_read_rpc_logging_test.cc │ ├── async_streaming_read_rpc_timeout.h │ ├── async_streaming_read_rpc_timeout_test.cc │ ├── async_streaming_read_rpc_tracing.h │ ├── async_streaming_read_rpc_tracing_test.cc │ ├── async_streaming_write_rpc.h │ ├── async_streaming_write_rpc_auth.h │ ├── async_streaming_write_rpc_auth_test.cc │ ├── async_streaming_write_rpc_impl.h │ ├── async_streaming_write_rpc_impl_test.cc │ ├── async_streaming_write_rpc_logging.h │ ├── async_streaming_write_rpc_logging_test.cc │ ├── async_streaming_write_rpc_timeout.h │ ├── async_streaming_write_rpc_timeout_test.cc │ ├── async_streaming_write_rpc_tracing.h │ ├── async_streaming_write_rpc_tracing_test.cc │ ├── attributes.h │ ├── auth_header_error.cc │ ├── auth_header_error.h │ ├── background_threads_impl.cc │ ├── background_threads_impl.h │ ├── background_threads_impl_test.cc │ ├── backoff_policy.cc │ ├── backoff_policy.h │ ├── backoff_policy_test.cc │ ├── base64_transforms.cc │ ├── base64_transforms.h │ ├── base64_transforms_test.cc │ ├── big_endian.h │ ├── big_endian_test.cc │ ├── binary_data_as_debug_string.cc │ ├── binary_data_as_debug_string.h │ ├── binary_data_as_debug_string_test.cc │ ├── build_info.cc.in │ ├── build_info.h │ ├── call_context.h │ ├── call_context_test.cc │ ├── ci │ │ ├── run_integration_tests_emulator_bazel.sh │ │ └── run_integration_tests_emulator_cmake.sh │ ├── clock.h │ ├── clock_test.cc │ ├── compiler_info.cc │ ├── compiler_info.h │ ├── compiler_info_test.cc │ ├── completion_queue_impl.h │ ├── compute_engine_util.cc │ ├── compute_engine_util.h │ ├── compute_engine_util_test.cc │ ├── credentials_impl.cc │ ├── credentials_impl.h │ ├── credentials_impl_test.cc │ ├── curl_handle.cc │ ├── curl_handle.h │ ├── curl_handle_factory.cc │ ├── curl_handle_factory.h │ ├── curl_handle_factory_benchmark.cc │ ├── curl_handle_factory_test.cc │ ├── curl_handle_test.cc │ ├── curl_http_payload.cc │ ├── curl_http_payload.h │ ├── curl_http_payload_test.cc │ ├── curl_impl.cc │ ├── curl_impl.h │ ├── curl_impl_test.cc │ ├── curl_options.h │ ├── curl_rest_client.cc │ ├── curl_rest_client.h │ ├── curl_rest_client_integration_test.cc │ ├── curl_rest_client_test.cc │ ├── curl_rest_response.cc │ ├── curl_rest_response.h │ ├── curl_wrappers.cc │ ├── curl_wrappers.h │ ├── curl_wrappers_disable_sigpipe_handler_test.cc │ ├── curl_wrappers_enable_sigpipe_handler_test.cc │ ├── curl_wrappers_locking_already_present_test.cc │ ├── curl_wrappers_locking_disabled_test.cc │ ├── curl_wrappers_locking_enabled_test.cc │ ├── curl_wrappers_test.cc │ ├── curl_writev.cc │ ├── curl_writev.h │ ├── curl_writev_test.cc │ ├── debug_future_status.cc │ ├── debug_future_status.h │ ├── debug_future_status_test.cc │ ├── debug_string.cc │ ├── debug_string.h │ ├── debug_string_protobuf.cc │ ├── debug_string_protobuf.h │ ├── debug_string_protobuf_test.cc │ ├── debug_string_status.cc │ ├── debug_string_status.h │ ├── debug_string_status_test.cc │ ├── debug_string_test.cc │ ├── default_completion_queue_impl.cc │ ├── default_completion_queue_impl.h │ ├── detect_gcp.h │ ├── detect_gcp_impl.cc │ ├── detect_gcp_impl.h │ ├── detect_gcp_test.cc │ ├── diagnostics_pop.inc │ ├── diagnostics_push.inc │ ├── disable_deprecation_warnings.inc │ ├── disable_msvc_crt_secure_warnings.inc │ ├── error_context.cc │ ├── error_context.h │ ├── error_context_test.cc │ ├── external_account_integration_test.cc │ ├── external_account_source_format.cc │ ├── external_account_source_format.h │ ├── external_account_source_format_test.cc │ ├── external_account_token_source_aws.cc │ ├── external_account_token_source_aws.h │ ├── external_account_token_source_aws_test.cc │ ├── external_account_token_source_file.cc │ ├── external_account_token_source_file.h │ ├── external_account_token_source_file_test.cc │ ├── external_account_token_source_url.cc │ ├── external_account_token_source_url.h │ ├── external_account_token_source_url_test.cc │ ├── extract_long_running_result.cc │ ├── extract_long_running_result.h │ ├── extract_long_running_result_test.cc │ ├── filesystem.cc │ ├── filesystem.h │ ├── filesystem_test.cc │ ├── format_time_point.cc │ ├── format_time_point.h │ ├── format_time_point_test.cc │ ├── future_base.h │ ├── future_coroutines.h │ ├── future_fwd.h │ ├── future_impl.cc │ ├── future_impl.h │ ├── future_impl_test.cc │ ├── future_then_impl.cc │ ├── future_then_impl.h │ ├── future_then_impl_test.cc │ ├── getenv.cc │ ├── getenv.h │ ├── group_options.h │ ├── group_options_test.cc │ ├── grpc_access_token_authentication.cc │ ├── grpc_access_token_authentication.h │ ├── grpc_access_token_authentication_test.cc │ ├── grpc_api_key_authentication.cc │ ├── grpc_api_key_authentication.h │ ├── grpc_api_key_authentication_test.cc │ ├── grpc_async_access_token_cache.cc │ ├── grpc_async_access_token_cache.h │ ├── grpc_async_access_token_cache_test.cc │ ├── grpc_channel_credentials_authentication.cc │ ├── grpc_channel_credentials_authentication.h │ ├── grpc_channel_credentials_authentication_test.cc │ ├── grpc_compute_engine_authentication.cc │ ├── grpc_compute_engine_authentication.h │ ├── grpc_compute_engine_authentication_test.cc │ ├── grpc_impersonate_service_account.cc │ ├── grpc_impersonate_service_account.h │ ├── grpc_impersonate_service_account_integration_test.cc │ ├── grpc_metadata_view.h │ ├── grpc_opentelemetry.cc │ ├── grpc_opentelemetry.h │ ├── grpc_opentelemetry_test.cc │ ├── grpc_request_metadata.cc │ ├── grpc_request_metadata.h │ ├── grpc_request_metadata_test.cc │ ├── grpc_service_account_authentication.cc │ ├── grpc_service_account_authentication.h │ ├── grpc_service_account_authentication_test.cc │ ├── http_header.cc │ ├── http_header.h │ ├── http_header_test.cc │ ├── http_payload.h │ ├── invocation_id_generator.cc │ ├── invocation_id_generator.h │ ├── invocation_id_generator_test.cc │ ├── invoke_result.h │ ├── invoke_result_test.cc │ ├── ios_flags_saver.h │ ├── json_parsing.cc │ ├── json_parsing.h │ ├── json_parsing_test.cc │ ├── log_impl.cc │ ├── log_impl.h │ ├── log_impl_test.cc │ ├── log_wrapper.cc │ ├── log_wrapper.h │ ├── log_wrapper_test.cc │ ├── make_jwt_assertion.cc │ ├── make_jwt_assertion.h │ ├── make_jwt_assertion_test.cc │ ├── make_status.cc │ ├── make_status.h │ ├── make_status_test.cc │ ├── minimal_iam_credentials_stub.cc │ ├── minimal_iam_credentials_stub.h │ ├── minimal_iam_credentials_stub_test.cc │ ├── noexcept_action.cc │ ├── noexcept_action.h │ ├── noexcept_action_test.cc │ ├── non_constructible.h │ ├── oauth2_access_token_credentials.cc │ ├── oauth2_access_token_credentials.h │ ├── oauth2_access_token_credentials_test.cc │ ├── oauth2_anonymous_credentials.cc │ ├── oauth2_anonymous_credentials.h │ ├── oauth2_anonymous_credentials_test.cc │ ├── oauth2_api_key_credentials.cc │ ├── oauth2_api_key_credentials.h │ ├── oauth2_api_key_credentials_test.cc │ ├── oauth2_authorized_user_credentials.cc │ ├── oauth2_authorized_user_credentials.h │ ├── oauth2_authorized_user_credentials_test.cc │ ├── oauth2_cached_credentials.cc │ ├── oauth2_cached_credentials.h │ ├── oauth2_cached_credentials_test.cc │ ├── oauth2_compute_engine_credentials.cc │ ├── oauth2_compute_engine_credentials.h │ ├── oauth2_compute_engine_credentials_test.cc │ ├── oauth2_credential_constants.h │ ├── oauth2_credentials.cc │ ├── oauth2_credentials.h │ ├── oauth2_credentials_test.cc │ ├── oauth2_decorate_credentials.cc │ ├── oauth2_decorate_credentials.h │ ├── oauth2_error_credentials.cc │ ├── oauth2_error_credentials.h │ ├── oauth2_external_account_credentials.cc │ ├── oauth2_external_account_credentials.h │ ├── oauth2_external_account_credentials_test.cc │ ├── oauth2_external_account_token_source.h │ ├── oauth2_google_application_default_credentials_file.cc │ ├── oauth2_google_application_default_credentials_file.h │ ├── oauth2_google_application_default_credentials_file_test.cc │ ├── oauth2_google_credentials.cc │ ├── oauth2_google_credentials.h │ ├── oauth2_google_credentials_test.cc │ ├── oauth2_http_client_factory.h │ ├── oauth2_impersonate_service_account_credentials.cc │ ├── oauth2_impersonate_service_account_credentials.h │ ├── oauth2_impersonate_service_account_credentials_test.cc │ ├── oauth2_logging_credentials.cc │ ├── oauth2_logging_credentials.h │ ├── oauth2_logging_credentials_test.cc │ ├── oauth2_minimal_iam_credentials_rest.cc │ ├── oauth2_minimal_iam_credentials_rest.h │ ├── oauth2_minimal_iam_credentials_rest_test.cc │ ├── oauth2_refreshing_credentials_wrapper.cc │ ├── oauth2_refreshing_credentials_wrapper.h │ ├── oauth2_refreshing_credentials_wrapper_test.cc │ ├── oauth2_service_account_credentials.cc │ ├── oauth2_service_account_credentials.h │ ├── oauth2_service_account_credentials_test.cc │ ├── oauth2_universe_domain.cc │ ├── oauth2_universe_domain.h │ ├── oauth2_universe_domain_test.cc │ ├── openssl │ │ ├── parse_service_account_p12_file.cc │ │ └── sign_using_sha256.cc │ ├── opentelemetry.cc │ ├── opentelemetry.h │ ├── opentelemetry_context.cc │ ├── opentelemetry_context.h │ ├── opentelemetry_context_test.cc │ ├── opentelemetry_test.cc │ ├── pagination_range.h │ ├── pagination_range_test.cc │ ├── parse_rfc3339.cc │ ├── parse_rfc3339.h │ ├── parse_rfc3339_test.cc │ ├── parse_service_account_p12_file.h │ ├── populate_common_options.cc │ ├── populate_common_options.h │ ├── populate_common_options_test.cc │ ├── populate_grpc_options.cc │ ├── populate_grpc_options.h │ ├── populate_grpc_options_test.cc │ ├── populate_rest_options.cc │ ├── populate_rest_options.h │ ├── populate_rest_options_test.cc │ ├── port_platform.h │ ├── random.cc │ ├── random.h │ ├── random_test.cc │ ├── rest_background_threads_impl.cc │ ├── rest_background_threads_impl.h │ ├── rest_background_threads_impl_test.cc │ ├── rest_carrier.cc │ ├── rest_carrier.h │ ├── rest_carrier_test.cc │ ├── rest_client.h │ ├── rest_completion_queue_impl.cc │ ├── rest_completion_queue_impl.h │ ├── rest_completion_queue_impl_test.cc │ ├── rest_context.cc │ ├── rest_context.h │ ├── rest_context_test.cc │ ├── rest_log_wrapper_test.cc │ ├── rest_lro_helpers.cc │ ├── rest_lro_helpers.h │ ├── rest_lro_helpers_test.cc │ ├── rest_opentelemetry.cc │ ├── rest_opentelemetry.h │ ├── rest_opentelemetry_test.cc │ ├── rest_options.h │ ├── rest_parse_json_error.cc │ ├── rest_parse_json_error.h │ ├── rest_parse_json_error_test.cc │ ├── rest_request.cc │ ├── rest_request.h │ ├── rest_request_test.cc │ ├── rest_response.cc │ ├── rest_response.h │ ├── rest_response_test.cc │ ├── rest_retry_loop.h │ ├── rest_retry_loop_test.cc │ ├── rest_set_metadata.cc │ ├── rest_set_metadata.h │ ├── rest_set_metadata_test.cc │ ├── rest_stub_helpers.cc │ ├── rest_stub_helpers.h │ ├── rest_stub_helpers_test.cc │ ├── resumable_streaming_read_rpc.h │ ├── resumable_streaming_read_rpc_test.cc │ ├── retry_info.h │ ├── retry_loop.h │ ├── retry_loop_helpers.cc │ ├── retry_loop_helpers.h │ ├── retry_loop_helpers_test.cc │ ├── retry_loop_test.cc │ ├── retry_policy_impl.cc │ ├── retry_policy_impl.h │ ├── retry_policy_impl_test.cc │ ├── routing_matcher.h │ ├── routing_matcher_test.cc │ ├── service_endpoint.cc │ ├── service_endpoint.h │ ├── service_endpoint_test.cc │ ├── setup_context.h │ ├── sha256_hash.cc │ ├── sha256_hash.h │ ├── sha256_hash_test.cc │ ├── sha256_hmac.cc │ ├── sha256_hmac.h │ ├── sha256_hmac_test.cc │ ├── sha256_type.h │ ├── sign_using_sha256.h │ ├── status_payload_keys.cc │ ├── status_payload_keys.h │ ├── status_payload_keys_test.cc │ ├── status_utils.cc │ ├── status_utils.h │ ├── status_utils_test.cc │ ├── streaming_read_rpc.cc │ ├── streaming_read_rpc.h │ ├── streaming_read_rpc_logging.h │ ├── streaming_read_rpc_logging_test.cc │ ├── streaming_read_rpc_test.cc │ ├── streaming_read_rpc_tracing.h │ ├── streaming_read_rpc_tracing_test.cc │ ├── streaming_write_rpc.h │ ├── streaming_write_rpc_impl.cc │ ├── streaming_write_rpc_impl.h │ ├── streaming_write_rpc_logging.h │ ├── streaming_write_rpc_logging_test.cc │ ├── streaming_write_rpc_test.cc │ ├── streaming_write_rpc_tracing.h │ ├── streaming_write_rpc_tracing_test.cc │ ├── strerror.cc │ ├── strerror.h │ ├── strerror_test.cc │ ├── subject_token.cc │ ├── subject_token.h │ ├── subject_token_test.cc │ ├── throw_delegate.cc │ ├── throw_delegate.h │ ├── throw_delegate_test.cc │ ├── time_utils.cc │ ├── time_utils.h │ ├── time_utils_test.cc │ ├── timer_queue.cc │ ├── timer_queue.h │ ├── timer_queue_test.cc │ ├── trace_propagator.cc │ ├── trace_propagator.h │ ├── trace_propagator_test.cc │ ├── traced_stream_range.h │ ├── traced_stream_range_test.cc │ ├── tracing_http_payload.cc │ ├── tracing_http_payload.h │ ├── tracing_http_payload_test.cc │ ├── tracing_rest_client.cc │ ├── tracing_rest_client.h │ ├── tracing_rest_client_test.cc │ ├── tracing_rest_response.cc │ ├── tracing_rest_response.h │ ├── tracing_rest_response_test.cc │ ├── tuple.h │ ├── tuple_test.cc │ ├── type_list.h │ ├── type_list_test.cc │ ├── type_traits.h │ ├── unified_grpc_credentials.cc │ ├── unified_grpc_credentials.h │ ├── unified_grpc_credentials_test.cc │ ├── unified_rest_credentials.cc │ ├── unified_rest_credentials.h │ ├── unified_rest_credentials_integration_test.cc │ ├── unified_rest_credentials_test.cc │ ├── url_encode.cc │ ├── url_encode.h │ ├── url_encode_test.cc │ ├── user_agent_prefix.cc │ ├── user_agent_prefix.h │ ├── user_agent_prefix_test.cc │ ├── utility.h │ ├── utility_test.cc │ ├── version_info.h │ ├── version_info.h.in │ └── win32 │ │ ├── parse_service_account_p12_file.cc │ │ ├── sign_using_sha256.cc │ │ ├── win32_helpers.cc │ │ └── win32_helpers.h │ ├── kms │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── ekm_client.h │ ├── ekm_connection.h │ ├── ekm_connection_idempotency_policy.h │ ├── ekm_options.h │ ├── inventory │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── key_dashboard_auth_decorator.cc │ │ │ ├── key_dashboard_auth_decorator.h │ │ │ ├── key_dashboard_connection_impl.cc │ │ │ ├── key_dashboard_connection_impl.h │ │ │ ├── key_dashboard_logging_decorator.cc │ │ │ ├── key_dashboard_logging_decorator.h │ │ │ ├── key_dashboard_metadata_decorator.cc │ │ │ ├── key_dashboard_metadata_decorator.h │ │ │ ├── key_dashboard_option_defaults.cc │ │ │ ├── key_dashboard_option_defaults.h │ │ │ ├── key_dashboard_retry_traits.h │ │ │ ├── key_dashboard_sources.cc │ │ │ ├── key_dashboard_stub.cc │ │ │ ├── key_dashboard_stub.h │ │ │ ├── key_dashboard_stub_factory.cc │ │ │ ├── key_dashboard_stub_factory.h │ │ │ ├── key_dashboard_tracing_connection.cc │ │ │ ├── key_dashboard_tracing_connection.h │ │ │ ├── key_dashboard_tracing_stub.cc │ │ │ ├── key_dashboard_tracing_stub.h │ │ │ ├── key_tracking_auth_decorator.cc │ │ │ ├── key_tracking_auth_decorator.h │ │ │ ├── key_tracking_connection_impl.cc │ │ │ ├── key_tracking_connection_impl.h │ │ │ ├── key_tracking_logging_decorator.cc │ │ │ ├── key_tracking_logging_decorator.h │ │ │ ├── key_tracking_metadata_decorator.cc │ │ │ ├── key_tracking_metadata_decorator.h │ │ │ ├── key_tracking_option_defaults.cc │ │ │ ├── key_tracking_option_defaults.h │ │ │ ├── key_tracking_retry_traits.h │ │ │ ├── key_tracking_sources.cc │ │ │ ├── key_tracking_stub.cc │ │ │ ├── key_tracking_stub.h │ │ │ ├── key_tracking_stub_factory.cc │ │ │ ├── key_tracking_stub_factory.h │ │ │ ├── key_tracking_tracing_connection.cc │ │ │ ├── key_tracking_tracing_connection.h │ │ │ ├── key_tracking_tracing_stub.cc │ │ │ └── key_tracking_tracing_stub.h │ │ │ ├── key_dashboard_client.cc │ │ │ ├── key_dashboard_client.h │ │ │ ├── key_dashboard_connection.cc │ │ │ ├── key_dashboard_connection.h │ │ │ ├── key_dashboard_connection_idempotency_policy.cc │ │ │ ├── key_dashboard_connection_idempotency_policy.h │ │ │ ├── key_dashboard_options.h │ │ │ ├── key_tracking_client.cc │ │ │ ├── key_tracking_client.h │ │ │ ├── key_tracking_connection.cc │ │ │ ├── key_tracking_connection.h │ │ │ ├── key_tracking_connection_idempotency_policy.cc │ │ │ ├── key_tracking_connection_idempotency_policy.h │ │ │ ├── key_tracking_options.h │ │ │ ├── mocks │ │ │ ├── mock_key_dashboard_connection.h │ │ │ └── mock_key_tracking_connection.h │ │ │ └── samples │ │ │ ├── key_dashboard_client_samples.cc │ │ │ └── key_tracking_client_samples.cc │ ├── key_management_client.h │ ├── key_management_connection.h │ ├── key_management_connection_idempotency_policy.h │ ├── key_management_options.h │ ├── mocks │ │ ├── mock_ekm_connection.h │ │ └── mock_key_management_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── autokey_admin_client.cc │ │ ├── autokey_admin_client.h │ │ ├── autokey_admin_connection.cc │ │ ├── autokey_admin_connection.h │ │ ├── autokey_admin_connection_idempotency_policy.cc │ │ ├── autokey_admin_connection_idempotency_policy.h │ │ ├── autokey_admin_options.h │ │ ├── autokey_client.cc │ │ ├── autokey_client.h │ │ ├── autokey_connection.cc │ │ ├── autokey_connection.h │ │ ├── autokey_connection_idempotency_policy.cc │ │ ├── autokey_connection_idempotency_policy.h │ │ ├── autokey_options.h │ │ ├── ekm_client.cc │ │ ├── ekm_client.h │ │ ├── ekm_connection.cc │ │ ├── ekm_connection.h │ │ ├── ekm_connection_idempotency_policy.cc │ │ ├── ekm_connection_idempotency_policy.h │ │ ├── ekm_options.h │ │ ├── internal │ │ ├── autokey_admin_auth_decorator.cc │ │ ├── autokey_admin_auth_decorator.h │ │ ├── autokey_admin_connection_impl.cc │ │ ├── autokey_admin_connection_impl.h │ │ ├── autokey_admin_logging_decorator.cc │ │ ├── autokey_admin_logging_decorator.h │ │ ├── autokey_admin_metadata_decorator.cc │ │ ├── autokey_admin_metadata_decorator.h │ │ ├── autokey_admin_option_defaults.cc │ │ ├── autokey_admin_option_defaults.h │ │ ├── autokey_admin_retry_traits.h │ │ ├── autokey_admin_sources.cc │ │ ├── autokey_admin_stub.cc │ │ ├── autokey_admin_stub.h │ │ ├── autokey_admin_stub_factory.cc │ │ ├── autokey_admin_stub_factory.h │ │ ├── autokey_admin_tracing_connection.cc │ │ ├── autokey_admin_tracing_connection.h │ │ ├── autokey_admin_tracing_stub.cc │ │ ├── autokey_admin_tracing_stub.h │ │ ├── autokey_auth_decorator.cc │ │ ├── autokey_auth_decorator.h │ │ ├── autokey_connection_impl.cc │ │ ├── autokey_connection_impl.h │ │ ├── autokey_logging_decorator.cc │ │ ├── autokey_logging_decorator.h │ │ ├── autokey_metadata_decorator.cc │ │ ├── autokey_metadata_decorator.h │ │ ├── autokey_option_defaults.cc │ │ ├── autokey_option_defaults.h │ │ ├── autokey_retry_traits.h │ │ ├── autokey_sources.cc │ │ ├── autokey_stub.cc │ │ ├── autokey_stub.h │ │ ├── autokey_stub_factory.cc │ │ ├── autokey_stub_factory.h │ │ ├── autokey_tracing_connection.cc │ │ ├── autokey_tracing_connection.h │ │ ├── autokey_tracing_stub.cc │ │ ├── autokey_tracing_stub.h │ │ ├── ekm_auth_decorator.cc │ │ ├── ekm_auth_decorator.h │ │ ├── ekm_connection_impl.cc │ │ ├── ekm_connection_impl.h │ │ ├── ekm_logging_decorator.cc │ │ ├── ekm_logging_decorator.h │ │ ├── ekm_metadata_decorator.cc │ │ ├── ekm_metadata_decorator.h │ │ ├── ekm_option_defaults.cc │ │ ├── ekm_option_defaults.h │ │ ├── ekm_retry_traits.h │ │ ├── ekm_sources.cc │ │ ├── ekm_stub.cc │ │ ├── ekm_stub.h │ │ ├── ekm_stub_factory.cc │ │ ├── ekm_stub_factory.h │ │ ├── ekm_tracing_connection.cc │ │ ├── ekm_tracing_connection.h │ │ ├── ekm_tracing_stub.cc │ │ ├── ekm_tracing_stub.h │ │ ├── key_management_auth_decorator.cc │ │ ├── key_management_auth_decorator.h │ │ ├── key_management_connection_impl.cc │ │ ├── key_management_connection_impl.h │ │ ├── key_management_logging_decorator.cc │ │ ├── key_management_logging_decorator.h │ │ ├── key_management_metadata_decorator.cc │ │ ├── key_management_metadata_decorator.h │ │ ├── key_management_option_defaults.cc │ │ ├── key_management_option_defaults.h │ │ ├── key_management_retry_traits.h │ │ ├── key_management_sources.cc │ │ ├── key_management_stub.cc │ │ ├── key_management_stub.h │ │ ├── key_management_stub_factory.cc │ │ ├── key_management_stub_factory.h │ │ ├── key_management_tracing_connection.cc │ │ ├── key_management_tracing_connection.h │ │ ├── key_management_tracing_stub.cc │ │ └── key_management_tracing_stub.h │ │ ├── key_management_client.cc │ │ ├── key_management_client.h │ │ ├── key_management_connection.cc │ │ ├── key_management_connection.h │ │ ├── key_management_connection_idempotency_policy.cc │ │ ├── key_management_connection_idempotency_policy.h │ │ ├── key_management_options.h │ │ ├── mocks │ │ ├── mock_autokey_admin_connection.h │ │ ├── mock_autokey_connection.h │ │ ├── mock_ekm_connection.h │ │ └── mock_key_management_connection.h │ │ └── samples │ │ ├── autokey_admin_client_samples.cc │ │ ├── autokey_client_samples.cc │ │ ├── ekm_client_samples.cc │ │ └── key_management_client_samples.cc │ ├── kms_key_name.cc │ ├── kms_key_name.h │ ├── kms_key_name_test.cc │ ├── language │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── language_client.h │ ├── language_connection.h │ ├── language_connection_idempotency_policy.h │ ├── language_options.h │ ├── mocks │ │ └── mock_language_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── language_auth_decorator.cc │ │ │ ├── language_auth_decorator.h │ │ │ ├── language_connection_impl.cc │ │ │ ├── language_connection_impl.h │ │ │ ├── language_logging_decorator.cc │ │ │ ├── language_logging_decorator.h │ │ │ ├── language_metadata_decorator.cc │ │ │ ├── language_metadata_decorator.h │ │ │ ├── language_option_defaults.cc │ │ │ ├── language_option_defaults.h │ │ │ ├── language_retry_traits.h │ │ │ ├── language_sources.cc │ │ │ ├── language_stub.cc │ │ │ ├── language_stub.h │ │ │ ├── language_stub_factory.cc │ │ │ ├── language_stub_factory.h │ │ │ ├── language_tracing_connection.cc │ │ │ ├── language_tracing_connection.h │ │ │ ├── language_tracing_stub.cc │ │ │ └── language_tracing_stub.h │ │ ├── language_client.cc │ │ ├── language_client.h │ │ ├── language_connection.cc │ │ ├── language_connection.h │ │ ├── language_connection_idempotency_policy.cc │ │ ├── language_connection_idempotency_policy.h │ │ ├── language_options.h │ │ ├── mocks │ │ │ └── mock_language_connection.h │ │ └── samples │ │ │ └── language_client_samples.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── language_auth_decorator.cc │ │ ├── language_auth_decorator.h │ │ ├── language_connection_impl.cc │ │ ├── language_connection_impl.h │ │ ├── language_logging_decorator.cc │ │ ├── language_logging_decorator.h │ │ ├── language_metadata_decorator.cc │ │ ├── language_metadata_decorator.h │ │ ├── language_option_defaults.cc │ │ ├── language_option_defaults.h │ │ ├── language_retry_traits.h │ │ ├── language_sources.cc │ │ ├── language_stub.cc │ │ ├── language_stub.h │ │ ├── language_stub_factory.cc │ │ ├── language_stub_factory.h │ │ ├── language_tracing_connection.cc │ │ ├── language_tracing_connection.h │ │ ├── language_tracing_stub.cc │ │ └── language_tracing_stub.h │ │ ├── language_client.cc │ │ ├── language_client.h │ │ ├── language_connection.cc │ │ ├── language_connection.h │ │ ├── language_connection_idempotency_policy.cc │ │ ├── language_connection_idempotency_policy.h │ │ ├── language_options.h │ │ ├── mocks │ │ └── mock_language_connection.h │ │ └── samples │ │ └── language_client_samples.cc │ ├── licensemanager │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── license_manager_auth_decorator.cc │ │ ├── license_manager_auth_decorator.h │ │ ├── license_manager_connection_impl.cc │ │ ├── license_manager_connection_impl.h │ │ ├── license_manager_logging_decorator.cc │ │ ├── license_manager_logging_decorator.h │ │ ├── license_manager_metadata_decorator.cc │ │ ├── license_manager_metadata_decorator.h │ │ ├── license_manager_option_defaults.cc │ │ ├── license_manager_option_defaults.h │ │ ├── license_manager_retry_traits.h │ │ ├── license_manager_sources.cc │ │ ├── license_manager_stub.cc │ │ ├── license_manager_stub.h │ │ ├── license_manager_stub_factory.cc │ │ ├── license_manager_stub_factory.h │ │ ├── license_manager_tracing_connection.cc │ │ ├── license_manager_tracing_connection.h │ │ ├── license_manager_tracing_stub.cc │ │ └── license_manager_tracing_stub.h │ │ ├── license_manager_client.cc │ │ ├── license_manager_client.h │ │ ├── license_manager_connection.cc │ │ ├── license_manager_connection.h │ │ ├── license_manager_connection_idempotency_policy.cc │ │ ├── license_manager_connection_idempotency_policy.h │ │ ├── license_manager_options.h │ │ ├── mocks │ │ └── mock_license_manager_connection.h │ │ └── samples │ │ └── license_manager_client_samples.cc │ ├── location.cc │ ├── location.h │ ├── location_test.cc │ ├── log.cc │ ├── log.h │ ├── log_test.cc │ ├── logging │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── integration_tests │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── logging_client_integration_tests.bzl │ │ └── logging_integration_test.cc │ ├── logging_service_v2_client.h │ ├── logging_service_v2_connection.h │ ├── logging_service_v2_connection_idempotency_policy.h │ ├── logging_service_v2_options.h │ ├── mocks │ │ └── mock_logging_service_v2_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── config_service_v2_client.cc │ │ ├── config_service_v2_client.h │ │ ├── config_service_v2_connection.cc │ │ ├── config_service_v2_connection.h │ │ ├── config_service_v2_connection_idempotency_policy.cc │ │ ├── config_service_v2_connection_idempotency_policy.h │ │ ├── config_service_v2_options.h │ │ ├── internal │ │ ├── config_service_v2_auth_decorator.cc │ │ ├── config_service_v2_auth_decorator.h │ │ ├── config_service_v2_connection_impl.cc │ │ ├── config_service_v2_connection_impl.h │ │ ├── config_service_v2_logging_decorator.cc │ │ ├── config_service_v2_logging_decorator.h │ │ ├── config_service_v2_metadata_decorator.cc │ │ ├── config_service_v2_metadata_decorator.h │ │ ├── config_service_v2_option_defaults.cc │ │ ├── config_service_v2_option_defaults.h │ │ ├── config_service_v2_retry_traits.h │ │ ├── config_service_v2_sources.cc │ │ ├── config_service_v2_stub.cc │ │ ├── config_service_v2_stub.h │ │ ├── config_service_v2_stub_factory.cc │ │ ├── config_service_v2_stub_factory.h │ │ ├── config_service_v2_tracing_connection.cc │ │ ├── config_service_v2_tracing_connection.h │ │ ├── config_service_v2_tracing_stub.cc │ │ ├── config_service_v2_tracing_stub.h │ │ ├── logging_service_v2_auth_decorator.cc │ │ ├── logging_service_v2_auth_decorator.h │ │ ├── logging_service_v2_connection_impl.cc │ │ ├── logging_service_v2_connection_impl.h │ │ ├── logging_service_v2_logging_decorator.cc │ │ ├── logging_service_v2_logging_decorator.h │ │ ├── logging_service_v2_metadata_decorator.cc │ │ ├── logging_service_v2_metadata_decorator.h │ │ ├── logging_service_v2_option_defaults.cc │ │ ├── logging_service_v2_option_defaults.h │ │ ├── logging_service_v2_retry_traits.h │ │ ├── logging_service_v2_sources.cc │ │ ├── logging_service_v2_stub.cc │ │ ├── logging_service_v2_stub.h │ │ ├── logging_service_v2_stub_factory.cc │ │ ├── logging_service_v2_stub_factory.h │ │ ├── logging_service_v2_tracing_connection.cc │ │ ├── logging_service_v2_tracing_connection.h │ │ ├── logging_service_v2_tracing_stub.cc │ │ ├── logging_service_v2_tracing_stub.h │ │ ├── metrics_service_v2_auth_decorator.cc │ │ ├── metrics_service_v2_auth_decorator.h │ │ ├── metrics_service_v2_connection_impl.cc │ │ ├── metrics_service_v2_connection_impl.h │ │ ├── metrics_service_v2_logging_decorator.cc │ │ ├── metrics_service_v2_logging_decorator.h │ │ ├── metrics_service_v2_metadata_decorator.cc │ │ ├── metrics_service_v2_metadata_decorator.h │ │ ├── metrics_service_v2_option_defaults.cc │ │ ├── metrics_service_v2_option_defaults.h │ │ ├── metrics_service_v2_retry_traits.h │ │ ├── metrics_service_v2_sources.cc │ │ ├── metrics_service_v2_stub.cc │ │ ├── metrics_service_v2_stub.h │ │ ├── metrics_service_v2_stub_factory.cc │ │ ├── metrics_service_v2_stub_factory.h │ │ ├── metrics_service_v2_tracing_connection.cc │ │ ├── metrics_service_v2_tracing_connection.h │ │ ├── metrics_service_v2_tracing_stub.cc │ │ └── metrics_service_v2_tracing_stub.h │ │ ├── logging_service_v2_client.cc │ │ ├── logging_service_v2_client.h │ │ ├── logging_service_v2_connection.cc │ │ ├── logging_service_v2_connection.h │ │ ├── logging_service_v2_connection_idempotency_policy.cc │ │ ├── logging_service_v2_connection_idempotency_policy.h │ │ ├── logging_service_v2_options.h │ │ ├── metrics_service_v2_client.cc │ │ ├── metrics_service_v2_client.h │ │ ├── metrics_service_v2_connection.cc │ │ ├── metrics_service_v2_connection.h │ │ ├── metrics_service_v2_connection_idempotency_policy.cc │ │ ├── metrics_service_v2_connection_idempotency_policy.h │ │ ├── metrics_service_v2_options.h │ │ ├── mocks │ │ ├── mock_config_service_v2_connection.h │ │ ├── mock_logging_service_v2_connection.h │ │ └── mock_metrics_service_v2_connection.h │ │ └── samples │ │ ├── config_service_v2_client_samples.cc │ │ ├── logging_service_v2_client_samples.cc │ │ └── metrics_service_v2_client_samples.cc │ ├── lustre │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── lustre_auth_decorator.cc │ │ ├── lustre_auth_decorator.h │ │ ├── lustre_connection_impl.cc │ │ ├── lustre_connection_impl.h │ │ ├── lustre_logging_decorator.cc │ │ ├── lustre_logging_decorator.h │ │ ├── lustre_metadata_decorator.cc │ │ ├── lustre_metadata_decorator.h │ │ ├── lustre_option_defaults.cc │ │ ├── lustre_option_defaults.h │ │ ├── lustre_retry_traits.h │ │ ├── lustre_sources.cc │ │ ├── lustre_stub.cc │ │ ├── lustre_stub.h │ │ ├── lustre_stub_factory.cc │ │ ├── lustre_stub_factory.h │ │ ├── lustre_tracing_connection.cc │ │ ├── lustre_tracing_connection.h │ │ ├── lustre_tracing_stub.cc │ │ └── lustre_tracing_stub.h │ │ ├── lustre_client.cc │ │ ├── lustre_client.h │ │ ├── lustre_connection.cc │ │ ├── lustre_connection.h │ │ ├── lustre_connection_idempotency_policy.cc │ │ ├── lustre_connection_idempotency_policy.h │ │ ├── lustre_options.h │ │ ├── mocks │ │ └── mock_lustre_connection.h │ │ └── samples │ │ └── lustre_client_samples.cc │ ├── managedidentities │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── managed_identities_client.h │ ├── managed_identities_connection.h │ ├── managed_identities_connection_idempotency_policy.h │ ├── managed_identities_options.h │ ├── mocks │ │ └── mock_managed_identities_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── managed_identities_auth_decorator.cc │ │ ├── managed_identities_auth_decorator.h │ │ ├── managed_identities_connection_impl.cc │ │ ├── managed_identities_connection_impl.h │ │ ├── managed_identities_logging_decorator.cc │ │ ├── managed_identities_logging_decorator.h │ │ ├── managed_identities_metadata_decorator.cc │ │ ├── managed_identities_metadata_decorator.h │ │ ├── managed_identities_option_defaults.cc │ │ ├── managed_identities_option_defaults.h │ │ ├── managed_identities_retry_traits.h │ │ ├── managed_identities_sources.cc │ │ ├── managed_identities_stub.cc │ │ ├── managed_identities_stub.h │ │ ├── managed_identities_stub_factory.cc │ │ ├── managed_identities_stub_factory.h │ │ ├── managed_identities_tracing_connection.cc │ │ ├── managed_identities_tracing_connection.h │ │ ├── managed_identities_tracing_stub.cc │ │ └── managed_identities_tracing_stub.h │ │ ├── managed_identities_client.cc │ │ ├── managed_identities_client.h │ │ ├── managed_identities_connection.cc │ │ ├── managed_identities_connection.h │ │ ├── managed_identities_connection_idempotency_policy.cc │ │ ├── managed_identities_connection_idempotency_policy.h │ │ ├── managed_identities_options.h │ │ ├── mocks │ │ └── mock_managed_identities_connection.h │ │ └── samples │ │ └── managed_identities_client_samples.cc │ ├── managedkafka │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── schemaregistry │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── managed_schema_registry_auth_decorator.cc │ │ │ ├── managed_schema_registry_auth_decorator.h │ │ │ ├── managed_schema_registry_connection_impl.cc │ │ │ ├── managed_schema_registry_connection_impl.h │ │ │ ├── managed_schema_registry_logging_decorator.cc │ │ │ ├── managed_schema_registry_logging_decorator.h │ │ │ ├── managed_schema_registry_metadata_decorator.cc │ │ │ ├── managed_schema_registry_metadata_decorator.h │ │ │ ├── managed_schema_registry_option_defaults.cc │ │ │ ├── managed_schema_registry_option_defaults.h │ │ │ ├── managed_schema_registry_retry_traits.h │ │ │ ├── managed_schema_registry_sources.cc │ │ │ ├── managed_schema_registry_stub.cc │ │ │ ├── managed_schema_registry_stub.h │ │ │ ├── managed_schema_registry_stub_factory.cc │ │ │ ├── managed_schema_registry_stub_factory.h │ │ │ ├── managed_schema_registry_tracing_connection.cc │ │ │ ├── managed_schema_registry_tracing_connection.h │ │ │ ├── managed_schema_registry_tracing_stub.cc │ │ │ └── managed_schema_registry_tracing_stub.h │ │ │ ├── managed_schema_registry_client.cc │ │ │ ├── managed_schema_registry_client.h │ │ │ ├── managed_schema_registry_connection.cc │ │ │ ├── managed_schema_registry_connection.h │ │ │ ├── managed_schema_registry_connection_idempotency_policy.cc │ │ │ ├── managed_schema_registry_connection_idempotency_policy.h │ │ │ ├── managed_schema_registry_options.h │ │ │ ├── mocks │ │ │ └── mock_managed_schema_registry_connection.h │ │ │ └── samples │ │ │ └── managed_schema_registry_client_samples.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── managed_kafka_auth_decorator.cc │ │ ├── managed_kafka_auth_decorator.h │ │ ├── managed_kafka_connection_impl.cc │ │ ├── managed_kafka_connection_impl.h │ │ ├── managed_kafka_logging_decorator.cc │ │ ├── managed_kafka_logging_decorator.h │ │ ├── managed_kafka_metadata_decorator.cc │ │ ├── managed_kafka_metadata_decorator.h │ │ ├── managed_kafka_option_defaults.cc │ │ ├── managed_kafka_option_defaults.h │ │ ├── managed_kafka_retry_traits.h │ │ ├── managed_kafka_sources.cc │ │ ├── managed_kafka_stub.cc │ │ ├── managed_kafka_stub.h │ │ ├── managed_kafka_stub_factory.cc │ │ ├── managed_kafka_stub_factory.h │ │ ├── managed_kafka_tracing_connection.cc │ │ ├── managed_kafka_tracing_connection.h │ │ ├── managed_kafka_tracing_stub.cc │ │ └── managed_kafka_tracing_stub.h │ │ ├── managed_kafka_client.cc │ │ ├── managed_kafka_client.h │ │ ├── managed_kafka_connection.cc │ │ ├── managed_kafka_connection.h │ │ ├── managed_kafka_connection_idempotency_policy.cc │ │ ├── managed_kafka_connection_idempotency_policy.h │ │ ├── managed_kafka_options.h │ │ ├── mocks │ │ └── mock_managed_kafka_connection.h │ │ └── samples │ │ └── managed_kafka_client_samples.cc │ ├── memcache │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── cloud_memcache_client.h │ ├── cloud_memcache_connection.h │ ├── cloud_memcache_connection_idempotency_policy.h │ ├── cloud_memcache_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_cloud_memcache_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_memcache_client.cc │ │ ├── cloud_memcache_client.h │ │ ├── cloud_memcache_connection.cc │ │ ├── cloud_memcache_connection.h │ │ ├── cloud_memcache_connection_idempotency_policy.cc │ │ ├── cloud_memcache_connection_idempotency_policy.h │ │ ├── cloud_memcache_options.h │ │ ├── internal │ │ ├── cloud_memcache_auth_decorator.cc │ │ ├── cloud_memcache_auth_decorator.h │ │ ├── cloud_memcache_connection_impl.cc │ │ ├── cloud_memcache_connection_impl.h │ │ ├── cloud_memcache_logging_decorator.cc │ │ ├── cloud_memcache_logging_decorator.h │ │ ├── cloud_memcache_metadata_decorator.cc │ │ ├── cloud_memcache_metadata_decorator.h │ │ ├── cloud_memcache_option_defaults.cc │ │ ├── cloud_memcache_option_defaults.h │ │ ├── cloud_memcache_retry_traits.h │ │ ├── cloud_memcache_sources.cc │ │ ├── cloud_memcache_stub.cc │ │ ├── cloud_memcache_stub.h │ │ ├── cloud_memcache_stub_factory.cc │ │ ├── cloud_memcache_stub_factory.h │ │ ├── cloud_memcache_tracing_connection.cc │ │ ├── cloud_memcache_tracing_connection.h │ │ ├── cloud_memcache_tracing_stub.cc │ │ └── cloud_memcache_tracing_stub.h │ │ ├── mocks │ │ └── mock_cloud_memcache_connection.h │ │ └── samples │ │ └── cloud_memcache_client_samples.cc │ ├── memorystore │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── memorystore_auth_decorator.cc │ │ ├── memorystore_auth_decorator.h │ │ ├── memorystore_connection_impl.cc │ │ ├── memorystore_connection_impl.h │ │ ├── memorystore_logging_decorator.cc │ │ ├── memorystore_logging_decorator.h │ │ ├── memorystore_metadata_decorator.cc │ │ ├── memorystore_metadata_decorator.h │ │ ├── memorystore_option_defaults.cc │ │ ├── memorystore_option_defaults.h │ │ ├── memorystore_retry_traits.h │ │ ├── memorystore_sources.cc │ │ ├── memorystore_stub.cc │ │ ├── memorystore_stub.h │ │ ├── memorystore_stub_factory.cc │ │ ├── memorystore_stub_factory.h │ │ ├── memorystore_tracing_connection.cc │ │ ├── memorystore_tracing_connection.h │ │ ├── memorystore_tracing_stub.cc │ │ └── memorystore_tracing_stub.h │ │ ├── memorystore_client.cc │ │ ├── memorystore_client.h │ │ ├── memorystore_connection.cc │ │ ├── memorystore_connection.h │ │ ├── memorystore_connection_idempotency_policy.cc │ │ ├── memorystore_connection_idempotency_policy.h │ │ ├── memorystore_options.h │ │ ├── mocks │ │ └── mock_memorystore_connection.h │ │ └── samples │ │ └── memorystore_client_samples.cc │ ├── metastore │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── dataproc_metastore_client.cc │ │ ├── dataproc_metastore_client.h │ │ ├── dataproc_metastore_connection.cc │ │ ├── dataproc_metastore_connection.h │ │ ├── dataproc_metastore_connection_idempotency_policy.cc │ │ ├── dataproc_metastore_connection_idempotency_policy.h │ │ ├── dataproc_metastore_federation_client.cc │ │ ├── dataproc_metastore_federation_client.h │ │ ├── dataproc_metastore_federation_connection.cc │ │ ├── dataproc_metastore_federation_connection.h │ │ ├── dataproc_metastore_federation_connection_idempotency_policy.cc │ │ ├── dataproc_metastore_federation_connection_idempotency_policy.h │ │ ├── dataproc_metastore_federation_options.h │ │ ├── dataproc_metastore_options.h │ │ ├── internal │ │ ├── dataproc_metastore_auth_decorator.cc │ │ ├── dataproc_metastore_auth_decorator.h │ │ ├── dataproc_metastore_connection_impl.cc │ │ ├── dataproc_metastore_connection_impl.h │ │ ├── dataproc_metastore_federation_auth_decorator.cc │ │ ├── dataproc_metastore_federation_auth_decorator.h │ │ ├── dataproc_metastore_federation_connection_impl.cc │ │ ├── dataproc_metastore_federation_connection_impl.h │ │ ├── dataproc_metastore_federation_logging_decorator.cc │ │ ├── dataproc_metastore_federation_logging_decorator.h │ │ ├── dataproc_metastore_federation_metadata_decorator.cc │ │ ├── dataproc_metastore_federation_metadata_decorator.h │ │ ├── dataproc_metastore_federation_option_defaults.cc │ │ ├── dataproc_metastore_federation_option_defaults.h │ │ ├── dataproc_metastore_federation_retry_traits.h │ │ ├── dataproc_metastore_federation_sources.cc │ │ ├── dataproc_metastore_federation_stub.cc │ │ ├── dataproc_metastore_federation_stub.h │ │ ├── dataproc_metastore_federation_stub_factory.cc │ │ ├── dataproc_metastore_federation_stub_factory.h │ │ ├── dataproc_metastore_federation_tracing_connection.cc │ │ ├── dataproc_metastore_federation_tracing_connection.h │ │ ├── dataproc_metastore_federation_tracing_stub.cc │ │ ├── dataproc_metastore_federation_tracing_stub.h │ │ ├── dataproc_metastore_logging_decorator.cc │ │ ├── dataproc_metastore_logging_decorator.h │ │ ├── dataproc_metastore_metadata_decorator.cc │ │ ├── dataproc_metastore_metadata_decorator.h │ │ ├── dataproc_metastore_option_defaults.cc │ │ ├── dataproc_metastore_option_defaults.h │ │ ├── dataproc_metastore_retry_traits.h │ │ ├── dataproc_metastore_sources.cc │ │ ├── dataproc_metastore_stub.cc │ │ ├── dataproc_metastore_stub.h │ │ ├── dataproc_metastore_stub_factory.cc │ │ ├── dataproc_metastore_stub_factory.h │ │ ├── dataproc_metastore_tracing_connection.cc │ │ ├── dataproc_metastore_tracing_connection.h │ │ ├── dataproc_metastore_tracing_stub.cc │ │ └── dataproc_metastore_tracing_stub.h │ │ ├── mocks │ │ ├── mock_dataproc_metastore_connection.h │ │ └── mock_dataproc_metastore_federation_connection.h │ │ └── samples │ │ ├── dataproc_metastore_client_samples.cc │ │ └── dataproc_metastore_federation_client_samples.cc │ ├── migrationcenter │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── migration_center_auth_decorator.cc │ │ ├── migration_center_auth_decorator.h │ │ ├── migration_center_connection_impl.cc │ │ ├── migration_center_connection_impl.h │ │ ├── migration_center_logging_decorator.cc │ │ ├── migration_center_logging_decorator.h │ │ ├── migration_center_metadata_decorator.cc │ │ ├── migration_center_metadata_decorator.h │ │ ├── migration_center_option_defaults.cc │ │ ├── migration_center_option_defaults.h │ │ ├── migration_center_retry_traits.h │ │ ├── migration_center_sources.cc │ │ ├── migration_center_stub.cc │ │ ├── migration_center_stub.h │ │ ├── migration_center_stub_factory.cc │ │ ├── migration_center_stub_factory.h │ │ ├── migration_center_tracing_connection.cc │ │ ├── migration_center_tracing_connection.h │ │ ├── migration_center_tracing_stub.cc │ │ └── migration_center_tracing_stub.h │ │ ├── migration_center_client.cc │ │ ├── migration_center_client.h │ │ ├── migration_center_connection.cc │ │ ├── migration_center_connection.h │ │ ├── migration_center_connection_idempotency_policy.cc │ │ ├── migration_center_connection_idempotency_policy.h │ │ ├── migration_center_options.h │ │ ├── mocks │ │ └── mock_migration_center_connection.h │ │ └── samples │ │ └── migration_center_client_samples.cc │ ├── mocks-config.cmake.in │ ├── mocks │ ├── current_options.h │ ├── current_options_test.cc │ ├── mock_async_streaming_read_write_rpc.h │ ├── mock_stream_range.h │ └── mock_stream_range_test.cc │ ├── monitoring │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── alert_policy_client.h │ ├── alert_policy_connection.h │ ├── alert_policy_connection_idempotency_policy.h │ ├── alert_policy_options.h │ ├── dashboard │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── dashboards_client.cc │ │ │ ├── dashboards_client.h │ │ │ ├── dashboards_connection.cc │ │ │ ├── dashboards_connection.h │ │ │ ├── dashboards_connection_idempotency_policy.cc │ │ │ ├── dashboards_connection_idempotency_policy.h │ │ │ ├── dashboards_options.h │ │ │ ├── internal │ │ │ ├── dashboards_auth_decorator.cc │ │ │ ├── dashboards_auth_decorator.h │ │ │ ├── dashboards_connection_impl.cc │ │ │ ├── dashboards_connection_impl.h │ │ │ ├── dashboards_logging_decorator.cc │ │ │ ├── dashboards_logging_decorator.h │ │ │ ├── dashboards_metadata_decorator.cc │ │ │ ├── dashboards_metadata_decorator.h │ │ │ ├── dashboards_option_defaults.cc │ │ │ ├── dashboards_option_defaults.h │ │ │ ├── dashboards_retry_traits.h │ │ │ ├── dashboards_sources.cc │ │ │ ├── dashboards_stub.cc │ │ │ ├── dashboards_stub.h │ │ │ ├── dashboards_stub_factory.cc │ │ │ ├── dashboards_stub_factory.h │ │ │ ├── dashboards_tracing_connection.cc │ │ │ ├── dashboards_tracing_connection.h │ │ │ ├── dashboards_tracing_stub.cc │ │ │ └── dashboards_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_dashboards_connection.h │ │ │ └── samples │ │ │ └── dashboards_client_samples.cc │ ├── dashboards_client.h │ ├── dashboards_connection.h │ ├── dashboards_connection_idempotency_policy.h │ ├── dashboards_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── group_client.h │ ├── group_connection.h │ ├── group_connection_idempotency_policy.h │ ├── group_options.h │ ├── metric_client.h │ ├── metric_connection.h │ ├── metric_connection_idempotency_policy.h │ ├── metric_options.h │ ├── metrics_scopes_client.h │ ├── metrics_scopes_connection.h │ ├── metrics_scopes_connection_idempotency_policy.h │ ├── metrics_scopes_options.h │ ├── metricsscope │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── metrics_scopes_auth_decorator.cc │ │ │ ├── metrics_scopes_auth_decorator.h │ │ │ ├── metrics_scopes_connection_impl.cc │ │ │ ├── metrics_scopes_connection_impl.h │ │ │ ├── metrics_scopes_logging_decorator.cc │ │ │ ├── metrics_scopes_logging_decorator.h │ │ │ ├── metrics_scopes_metadata_decorator.cc │ │ │ ├── metrics_scopes_metadata_decorator.h │ │ │ ├── metrics_scopes_option_defaults.cc │ │ │ ├── metrics_scopes_option_defaults.h │ │ │ ├── metrics_scopes_retry_traits.h │ │ │ ├── metrics_scopes_sources.cc │ │ │ ├── metrics_scopes_stub.cc │ │ │ ├── metrics_scopes_stub.h │ │ │ ├── metrics_scopes_stub_factory.cc │ │ │ ├── metrics_scopes_stub_factory.h │ │ │ ├── metrics_scopes_tracing_connection.cc │ │ │ ├── metrics_scopes_tracing_connection.h │ │ │ ├── metrics_scopes_tracing_stub.cc │ │ │ └── metrics_scopes_tracing_stub.h │ │ │ ├── metrics_scopes_client.cc │ │ │ ├── metrics_scopes_client.h │ │ │ ├── metrics_scopes_connection.cc │ │ │ ├── metrics_scopes_connection.h │ │ │ ├── metrics_scopes_connection_idempotency_policy.cc │ │ │ ├── metrics_scopes_connection_idempotency_policy.h │ │ │ ├── metrics_scopes_options.h │ │ │ ├── mocks │ │ │ └── mock_metrics_scopes_connection.h │ │ │ └── samples │ │ │ └── metrics_scopes_client_samples.cc │ ├── mocks │ │ ├── mock_alert_policy_connection.h │ │ ├── mock_dashboards_connection.h │ │ ├── mock_group_connection.h │ │ ├── mock_metric_connection.h │ │ ├── mock_metrics_scopes_connection.h │ │ ├── mock_notification_channel_connection.h │ │ ├── mock_query_connection.h │ │ ├── mock_service_monitoring_connection.h │ │ └── mock_uptime_check_connection.h │ ├── notification_channel_client.h │ ├── notification_channel_connection.h │ ├── notification_channel_connection_idempotency_policy.h │ ├── notification_channel_options.h │ ├── query_client.h │ ├── query_connection.h │ ├── query_connection_idempotency_policy.h │ ├── query_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── service_monitoring_client.h │ ├── service_monitoring_connection.h │ ├── service_monitoring_connection_idempotency_policy.h │ ├── service_monitoring_options.h │ ├── uptime_check_client.h │ ├── uptime_check_connection.h │ ├── uptime_check_connection_idempotency_policy.h │ ├── uptime_check_options.h │ └── v3 │ │ ├── .repo-metadata.json │ │ ├── alert_policy_client.cc │ │ ├── alert_policy_client.h │ │ ├── alert_policy_connection.cc │ │ ├── alert_policy_connection.h │ │ ├── alert_policy_connection_idempotency_policy.cc │ │ ├── alert_policy_connection_idempotency_policy.h │ │ ├── alert_policy_options.h │ │ ├── group_client.cc │ │ ├── group_client.h │ │ ├── group_connection.cc │ │ ├── group_connection.h │ │ ├── group_connection_idempotency_policy.cc │ │ ├── group_connection_idempotency_policy.h │ │ ├── group_options.h │ │ ├── internal │ │ ├── alert_policy_auth_decorator.cc │ │ ├── alert_policy_auth_decorator.h │ │ ├── alert_policy_connection_impl.cc │ │ ├── alert_policy_connection_impl.h │ │ ├── alert_policy_logging_decorator.cc │ │ ├── alert_policy_logging_decorator.h │ │ ├── alert_policy_metadata_decorator.cc │ │ ├── alert_policy_metadata_decorator.h │ │ ├── alert_policy_option_defaults.cc │ │ ├── alert_policy_option_defaults.h │ │ ├── alert_policy_retry_traits.h │ │ ├── alert_policy_sources.cc │ │ ├── alert_policy_stub.cc │ │ ├── alert_policy_stub.h │ │ ├── alert_policy_stub_factory.cc │ │ ├── alert_policy_stub_factory.h │ │ ├── alert_policy_tracing_connection.cc │ │ ├── alert_policy_tracing_connection.h │ │ ├── alert_policy_tracing_stub.cc │ │ ├── alert_policy_tracing_stub.h │ │ ├── group_auth_decorator.cc │ │ ├── group_auth_decorator.h │ │ ├── group_connection_impl.cc │ │ ├── group_connection_impl.h │ │ ├── group_logging_decorator.cc │ │ ├── group_logging_decorator.h │ │ ├── group_metadata_decorator.cc │ │ ├── group_metadata_decorator.h │ │ ├── group_option_defaults.cc │ │ ├── group_option_defaults.h │ │ ├── group_retry_traits.h │ │ ├── group_sources.cc │ │ ├── group_stub.cc │ │ ├── group_stub.h │ │ ├── group_stub_factory.cc │ │ ├── group_stub_factory.h │ │ ├── group_tracing_connection.cc │ │ ├── group_tracing_connection.h │ │ ├── group_tracing_stub.cc │ │ ├── group_tracing_stub.h │ │ ├── metric_auth_decorator.cc │ │ ├── metric_auth_decorator.h │ │ ├── metric_connection_impl.cc │ │ ├── metric_connection_impl.h │ │ ├── metric_logging_decorator.cc │ │ ├── metric_logging_decorator.h │ │ ├── metric_metadata_decorator.cc │ │ ├── metric_metadata_decorator.h │ │ ├── metric_option_defaults.cc │ │ ├── metric_option_defaults.h │ │ ├── metric_retry_traits.h │ │ ├── metric_sources.cc │ │ ├── metric_stub.cc │ │ ├── metric_stub.h │ │ ├── metric_stub_factory.cc │ │ ├── metric_stub_factory.h │ │ ├── metric_tracing_connection.cc │ │ ├── metric_tracing_connection.h │ │ ├── metric_tracing_stub.cc │ │ ├── metric_tracing_stub.h │ │ ├── notification_channel_auth_decorator.cc │ │ ├── notification_channel_auth_decorator.h │ │ ├── notification_channel_connection_impl.cc │ │ ├── notification_channel_connection_impl.h │ │ ├── notification_channel_logging_decorator.cc │ │ ├── notification_channel_logging_decorator.h │ │ ├── notification_channel_metadata_decorator.cc │ │ ├── notification_channel_metadata_decorator.h │ │ ├── notification_channel_option_defaults.cc │ │ ├── notification_channel_option_defaults.h │ │ ├── notification_channel_retry_traits.h │ │ ├── notification_channel_sources.cc │ │ ├── notification_channel_stub.cc │ │ ├── notification_channel_stub.h │ │ ├── notification_channel_stub_factory.cc │ │ ├── notification_channel_stub_factory.h │ │ ├── notification_channel_tracing_connection.cc │ │ ├── notification_channel_tracing_connection.h │ │ ├── notification_channel_tracing_stub.cc │ │ ├── notification_channel_tracing_stub.h │ │ ├── query_auth_decorator.cc │ │ ├── query_auth_decorator.h │ │ ├── query_connection_impl.cc │ │ ├── query_connection_impl.h │ │ ├── query_logging_decorator.cc │ │ ├── query_logging_decorator.h │ │ ├── query_metadata_decorator.cc │ │ ├── query_metadata_decorator.h │ │ ├── query_option_defaults.cc │ │ ├── query_option_defaults.h │ │ ├── query_retry_traits.h │ │ ├── query_sources.cc │ │ ├── query_stub.cc │ │ ├── query_stub.h │ │ ├── query_stub_factory.cc │ │ ├── query_stub_factory.h │ │ ├── query_tracing_connection.cc │ │ ├── query_tracing_connection.h │ │ ├── query_tracing_stub.cc │ │ ├── query_tracing_stub.h │ │ ├── service_monitoring_auth_decorator.cc │ │ ├── service_monitoring_auth_decorator.h │ │ ├── service_monitoring_connection_impl.cc │ │ ├── service_monitoring_connection_impl.h │ │ ├── service_monitoring_logging_decorator.cc │ │ ├── service_monitoring_logging_decorator.h │ │ ├── service_monitoring_metadata_decorator.cc │ │ ├── service_monitoring_metadata_decorator.h │ │ ├── service_monitoring_option_defaults.cc │ │ ├── service_monitoring_option_defaults.h │ │ ├── service_monitoring_retry_traits.h │ │ ├── service_monitoring_sources.cc │ │ ├── service_monitoring_stub.cc │ │ ├── service_monitoring_stub.h │ │ ├── service_monitoring_stub_factory.cc │ │ ├── service_monitoring_stub_factory.h │ │ ├── service_monitoring_tracing_connection.cc │ │ ├── service_monitoring_tracing_connection.h │ │ ├── service_monitoring_tracing_stub.cc │ │ ├── service_monitoring_tracing_stub.h │ │ ├── snooze_auth_decorator.cc │ │ ├── snooze_auth_decorator.h │ │ ├── snooze_connection_impl.cc │ │ ├── snooze_connection_impl.h │ │ ├── snooze_logging_decorator.cc │ │ ├── snooze_logging_decorator.h │ │ ├── snooze_metadata_decorator.cc │ │ ├── snooze_metadata_decorator.h │ │ ├── snooze_option_defaults.cc │ │ ├── snooze_option_defaults.h │ │ ├── snooze_retry_traits.h │ │ ├── snooze_sources.cc │ │ ├── snooze_stub.cc │ │ ├── snooze_stub.h │ │ ├── snooze_stub_factory.cc │ │ ├── snooze_stub_factory.h │ │ ├── snooze_tracing_connection.cc │ │ ├── snooze_tracing_connection.h │ │ ├── snooze_tracing_stub.cc │ │ ├── snooze_tracing_stub.h │ │ ├── uptime_check_auth_decorator.cc │ │ ├── uptime_check_auth_decorator.h │ │ ├── uptime_check_connection_impl.cc │ │ ├── uptime_check_connection_impl.h │ │ ├── uptime_check_logging_decorator.cc │ │ ├── uptime_check_logging_decorator.h │ │ ├── uptime_check_metadata_decorator.cc │ │ ├── uptime_check_metadata_decorator.h │ │ ├── uptime_check_option_defaults.cc │ │ ├── uptime_check_option_defaults.h │ │ ├── uptime_check_retry_traits.h │ │ ├── uptime_check_sources.cc │ │ ├── uptime_check_stub.cc │ │ ├── uptime_check_stub.h │ │ ├── uptime_check_stub_factory.cc │ │ ├── uptime_check_stub_factory.h │ │ ├── uptime_check_tracing_connection.cc │ │ ├── uptime_check_tracing_connection.h │ │ ├── uptime_check_tracing_stub.cc │ │ └── uptime_check_tracing_stub.h │ │ ├── metric_client.cc │ │ ├── metric_client.h │ │ ├── metric_connection.cc │ │ ├── metric_connection.h │ │ ├── metric_connection_idempotency_policy.cc │ │ ├── metric_connection_idempotency_policy.h │ │ ├── metric_options.h │ │ ├── mocks │ │ ├── mock_alert_policy_connection.h │ │ ├── mock_group_connection.h │ │ ├── mock_metric_connection.h │ │ ├── mock_notification_channel_connection.h │ │ ├── mock_query_connection.h │ │ ├── mock_service_monitoring_connection.h │ │ ├── mock_snooze_connection.h │ │ └── mock_uptime_check_connection.h │ │ ├── notification_channel_client.cc │ │ ├── notification_channel_client.h │ │ ├── notification_channel_connection.cc │ │ ├── notification_channel_connection.h │ │ ├── notification_channel_connection_idempotency_policy.cc │ │ ├── notification_channel_connection_idempotency_policy.h │ │ ├── notification_channel_options.h │ │ ├── query_client.cc │ │ ├── query_client.h │ │ ├── query_connection.cc │ │ ├── query_connection.h │ │ ├── query_connection_idempotency_policy.cc │ │ ├── query_connection_idempotency_policy.h │ │ ├── query_options.h │ │ ├── samples │ │ ├── alert_policy_client_samples.cc │ │ ├── group_client_samples.cc │ │ ├── metric_client_samples.cc │ │ ├── notification_channel_client_samples.cc │ │ ├── query_client_samples.cc │ │ ├── service_monitoring_client_samples.cc │ │ ├── snooze_client_samples.cc │ │ └── uptime_check_client_samples.cc │ │ ├── service_monitoring_client.cc │ │ ├── service_monitoring_client.h │ │ ├── service_monitoring_connection.cc │ │ ├── service_monitoring_connection.h │ │ ├── service_monitoring_connection_idempotency_policy.cc │ │ ├── service_monitoring_connection_idempotency_policy.h │ │ ├── service_monitoring_options.h │ │ ├── snooze_client.cc │ │ ├── snooze_client.h │ │ ├── snooze_connection.cc │ │ ├── snooze_connection.h │ │ ├── snooze_connection_idempotency_policy.cc │ │ ├── snooze_connection_idempotency_policy.h │ │ ├── snooze_options.h │ │ ├── uptime_check_client.cc │ │ ├── uptime_check_client.h │ │ ├── uptime_check_connection.cc │ │ ├── uptime_check_connection.h │ │ ├── uptime_check_connection_idempotency_policy.cc │ │ ├── uptime_check_connection_idempotency_policy.h │ │ └── uptime_check_options.h │ ├── netapp │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── net_app_auth_decorator.cc │ │ ├── net_app_auth_decorator.h │ │ ├── net_app_connection_impl.cc │ │ ├── net_app_connection_impl.h │ │ ├── net_app_logging_decorator.cc │ │ ├── net_app_logging_decorator.h │ │ ├── net_app_metadata_decorator.cc │ │ ├── net_app_metadata_decorator.h │ │ ├── net_app_option_defaults.cc │ │ ├── net_app_option_defaults.h │ │ ├── net_app_retry_traits.h │ │ ├── net_app_sources.cc │ │ ├── net_app_stub.cc │ │ ├── net_app_stub.h │ │ ├── net_app_stub_factory.cc │ │ ├── net_app_stub_factory.h │ │ ├── net_app_tracing_connection.cc │ │ ├── net_app_tracing_connection.h │ │ ├── net_app_tracing_stub.cc │ │ └── net_app_tracing_stub.h │ │ ├── mocks │ │ └── mock_net_app_connection.h │ │ ├── net_app_client.cc │ │ ├── net_app_client.h │ │ ├── net_app_connection.cc │ │ ├── net_app_connection.h │ │ ├── net_app_connection_idempotency_policy.cc │ │ ├── net_app_connection_idempotency_policy.h │ │ ├── net_app_options.h │ │ └── samples │ │ └── net_app_client_samples.cc │ ├── networkconnectivity │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── hub_client.h │ ├── hub_connection.h │ ├── hub_connection_idempotency_policy.h │ ├── hub_options.h │ ├── mocks │ │ └── mock_hub_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── data_transfer_client.cc │ │ ├── data_transfer_client.h │ │ ├── data_transfer_connection.cc │ │ ├── data_transfer_connection.h │ │ ├── data_transfer_connection_idempotency_policy.cc │ │ ├── data_transfer_connection_idempotency_policy.h │ │ ├── data_transfer_options.h │ │ ├── hub_client.cc │ │ ├── hub_client.h │ │ ├── hub_connection.cc │ │ ├── hub_connection.h │ │ ├── hub_connection_idempotency_policy.cc │ │ ├── hub_connection_idempotency_policy.h │ │ ├── hub_options.h │ │ ├── internal │ │ ├── data_transfer_auth_decorator.cc │ │ ├── data_transfer_auth_decorator.h │ │ ├── data_transfer_connection_impl.cc │ │ ├── data_transfer_connection_impl.h │ │ ├── data_transfer_logging_decorator.cc │ │ ├── data_transfer_logging_decorator.h │ │ ├── data_transfer_metadata_decorator.cc │ │ ├── data_transfer_metadata_decorator.h │ │ ├── data_transfer_option_defaults.cc │ │ ├── data_transfer_option_defaults.h │ │ ├── data_transfer_retry_traits.h │ │ ├── data_transfer_sources.cc │ │ ├── data_transfer_stub.cc │ │ ├── data_transfer_stub.h │ │ ├── data_transfer_stub_factory.cc │ │ ├── data_transfer_stub_factory.h │ │ ├── data_transfer_tracing_connection.cc │ │ ├── data_transfer_tracing_connection.h │ │ ├── data_transfer_tracing_stub.cc │ │ ├── data_transfer_tracing_stub.h │ │ ├── hub_auth_decorator.cc │ │ ├── hub_auth_decorator.h │ │ ├── hub_connection_impl.cc │ │ ├── hub_connection_impl.h │ │ ├── hub_logging_decorator.cc │ │ ├── hub_logging_decorator.h │ │ ├── hub_metadata_decorator.cc │ │ ├── hub_metadata_decorator.h │ │ ├── hub_option_defaults.cc │ │ ├── hub_option_defaults.h │ │ ├── hub_retry_traits.h │ │ ├── hub_sources.cc │ │ ├── hub_stub.cc │ │ ├── hub_stub.h │ │ ├── hub_stub_factory.cc │ │ ├── hub_stub_factory.h │ │ ├── hub_tracing_connection.cc │ │ ├── hub_tracing_connection.h │ │ ├── hub_tracing_stub.cc │ │ ├── hub_tracing_stub.h │ │ ├── policy_based_routing_auth_decorator.cc │ │ ├── policy_based_routing_auth_decorator.h │ │ ├── policy_based_routing_connection_impl.cc │ │ ├── policy_based_routing_connection_impl.h │ │ ├── policy_based_routing_logging_decorator.cc │ │ ├── policy_based_routing_logging_decorator.h │ │ ├── policy_based_routing_metadata_decorator.cc │ │ ├── policy_based_routing_metadata_decorator.h │ │ ├── policy_based_routing_option_defaults.cc │ │ ├── policy_based_routing_option_defaults.h │ │ ├── policy_based_routing_retry_traits.h │ │ ├── policy_based_routing_sources.cc │ │ ├── policy_based_routing_stub.cc │ │ ├── policy_based_routing_stub.h │ │ ├── policy_based_routing_stub_factory.cc │ │ ├── policy_based_routing_stub_factory.h │ │ ├── policy_based_routing_tracing_connection.cc │ │ ├── policy_based_routing_tracing_connection.h │ │ ├── policy_based_routing_tracing_stub.cc │ │ └── policy_based_routing_tracing_stub.h │ │ ├── mocks │ │ ├── mock_data_transfer_connection.h │ │ ├── mock_hub_connection.h │ │ └── mock_policy_based_routing_connection.h │ │ ├── policy_based_routing_client.cc │ │ ├── policy_based_routing_client.h │ │ ├── policy_based_routing_connection.cc │ │ ├── policy_based_routing_connection.h │ │ ├── policy_based_routing_connection_idempotency_policy.cc │ │ ├── policy_based_routing_connection_idempotency_policy.h │ │ ├── policy_based_routing_options.h │ │ └── samples │ │ ├── data_transfer_client_samples.cc │ │ ├── hub_client_samples.cc │ │ └── policy_based_routing_client_samples.cc │ ├── networkmanagement │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_reachability_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── reachability_client.h │ ├── reachability_connection.h │ ├── reachability_connection_idempotency_policy.h │ ├── reachability_options.h │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── reachability_auth_decorator.cc │ │ ├── reachability_auth_decorator.h │ │ ├── reachability_connection_impl.cc │ │ ├── reachability_connection_impl.h │ │ ├── reachability_logging_decorator.cc │ │ ├── reachability_logging_decorator.h │ │ ├── reachability_metadata_decorator.cc │ │ ├── reachability_metadata_decorator.h │ │ ├── reachability_option_defaults.cc │ │ ├── reachability_option_defaults.h │ │ ├── reachability_retry_traits.h │ │ ├── reachability_sources.cc │ │ ├── reachability_stub.cc │ │ ├── reachability_stub.h │ │ ├── reachability_stub_factory.cc │ │ ├── reachability_stub_factory.h │ │ ├── reachability_tracing_connection.cc │ │ ├── reachability_tracing_connection.h │ │ ├── reachability_tracing_stub.cc │ │ └── reachability_tracing_stub.h │ │ ├── mocks │ │ └── mock_reachability_connection.h │ │ ├── reachability_client.cc │ │ ├── reachability_client.h │ │ ├── reachability_connection.cc │ │ ├── reachability_connection.h │ │ ├── reachability_connection_idempotency_policy.cc │ │ ├── reachability_connection_idempotency_policy.h │ │ ├── reachability_options.h │ │ └── samples │ │ └── reachability_client_samples.cc │ ├── networksecurity │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── network_security_auth_decorator.cc │ │ ├── network_security_auth_decorator.h │ │ ├── network_security_connection_impl.cc │ │ ├── network_security_connection_impl.h │ │ ├── network_security_logging_decorator.cc │ │ ├── network_security_logging_decorator.h │ │ ├── network_security_metadata_decorator.cc │ │ ├── network_security_metadata_decorator.h │ │ ├── network_security_option_defaults.cc │ │ ├── network_security_option_defaults.h │ │ ├── network_security_retry_traits.h │ │ ├── network_security_sources.cc │ │ ├── network_security_stub.cc │ │ ├── network_security_stub.h │ │ ├── network_security_stub_factory.cc │ │ ├── network_security_stub_factory.h │ │ ├── network_security_tracing_connection.cc │ │ ├── network_security_tracing_connection.h │ │ ├── network_security_tracing_stub.cc │ │ └── network_security_tracing_stub.h │ │ ├── mocks │ │ └── mock_network_security_connection.h │ │ ├── network_security_client.cc │ │ ├── network_security_client.h │ │ ├── network_security_connection.cc │ │ ├── network_security_connection.h │ │ ├── network_security_connection_idempotency_policy.cc │ │ ├── network_security_connection_idempotency_policy.h │ │ ├── network_security_options.h │ │ └── samples │ │ └── network_security_client_samples.cc │ ├── networkservices │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── dep_client.cc │ │ ├── dep_client.h │ │ ├── dep_connection.cc │ │ ├── dep_connection.h │ │ ├── dep_connection_idempotency_policy.cc │ │ ├── dep_connection_idempotency_policy.h │ │ ├── dep_options.h │ │ ├── internal │ │ ├── dep_auth_decorator.cc │ │ ├── dep_auth_decorator.h │ │ ├── dep_connection_impl.cc │ │ ├── dep_connection_impl.h │ │ ├── dep_logging_decorator.cc │ │ ├── dep_logging_decorator.h │ │ ├── dep_metadata_decorator.cc │ │ ├── dep_metadata_decorator.h │ │ ├── dep_option_defaults.cc │ │ ├── dep_option_defaults.h │ │ ├── dep_retry_traits.h │ │ ├── dep_sources.cc │ │ ├── dep_stub.cc │ │ ├── dep_stub.h │ │ ├── dep_stub_factory.cc │ │ ├── dep_stub_factory.h │ │ ├── dep_tracing_connection.cc │ │ ├── dep_tracing_connection.h │ │ ├── dep_tracing_stub.cc │ │ ├── dep_tracing_stub.h │ │ ├── network_services_auth_decorator.cc │ │ ├── network_services_auth_decorator.h │ │ ├── network_services_connection_impl.cc │ │ ├── network_services_connection_impl.h │ │ ├── network_services_logging_decorator.cc │ │ ├── network_services_logging_decorator.h │ │ ├── network_services_metadata_decorator.cc │ │ ├── network_services_metadata_decorator.h │ │ ├── network_services_option_defaults.cc │ │ ├── network_services_option_defaults.h │ │ ├── network_services_retry_traits.h │ │ ├── network_services_sources.cc │ │ ├── network_services_stub.cc │ │ ├── network_services_stub.h │ │ ├── network_services_stub_factory.cc │ │ ├── network_services_stub_factory.h │ │ ├── network_services_tracing_connection.cc │ │ ├── network_services_tracing_connection.h │ │ ├── network_services_tracing_stub.cc │ │ └── network_services_tracing_stub.h │ │ ├── mocks │ │ ├── mock_dep_connection.h │ │ └── mock_network_services_connection.h │ │ ├── network_services_client.cc │ │ ├── network_services_client.h │ │ ├── network_services_connection.cc │ │ ├── network_services_connection.h │ │ ├── network_services_connection_idempotency_policy.cc │ │ ├── network_services_connection_idempotency_policy.h │ │ ├── network_services_options.h │ │ └── samples │ │ ├── dep_client_samples.cc │ │ └── network_services_client_samples.cc │ ├── no_await_tag.h │ ├── notebooks │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── managed_notebook_client.h │ ├── managed_notebook_connection.h │ ├── managed_notebook_connection_idempotency_policy.h │ ├── managed_notebook_options.h │ ├── mocks │ │ ├── mock_managed_notebook_connection.h │ │ └── mock_notebook_connection.h │ ├── notebook_client.h │ ├── notebook_connection.h │ ├── notebook_connection_idempotency_policy.h │ ├── notebook_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── managed_notebook_auth_decorator.cc │ │ │ ├── managed_notebook_auth_decorator.h │ │ │ ├── managed_notebook_connection_impl.cc │ │ │ ├── managed_notebook_connection_impl.h │ │ │ ├── managed_notebook_logging_decorator.cc │ │ │ ├── managed_notebook_logging_decorator.h │ │ │ ├── managed_notebook_metadata_decorator.cc │ │ │ ├── managed_notebook_metadata_decorator.h │ │ │ ├── managed_notebook_option_defaults.cc │ │ │ ├── managed_notebook_option_defaults.h │ │ │ ├── managed_notebook_retry_traits.h │ │ │ ├── managed_notebook_sources.cc │ │ │ ├── managed_notebook_stub.cc │ │ │ ├── managed_notebook_stub.h │ │ │ ├── managed_notebook_stub_factory.cc │ │ │ ├── managed_notebook_stub_factory.h │ │ │ ├── managed_notebook_tracing_connection.cc │ │ │ ├── managed_notebook_tracing_connection.h │ │ │ ├── managed_notebook_tracing_stub.cc │ │ │ ├── managed_notebook_tracing_stub.h │ │ │ ├── notebook_auth_decorator.cc │ │ │ ├── notebook_auth_decorator.h │ │ │ ├── notebook_connection_impl.cc │ │ │ ├── notebook_connection_impl.h │ │ │ ├── notebook_logging_decorator.cc │ │ │ ├── notebook_logging_decorator.h │ │ │ ├── notebook_metadata_decorator.cc │ │ │ ├── notebook_metadata_decorator.h │ │ │ ├── notebook_option_defaults.cc │ │ │ ├── notebook_option_defaults.h │ │ │ ├── notebook_retry_traits.h │ │ │ ├── notebook_sources.cc │ │ │ ├── notebook_stub.cc │ │ │ ├── notebook_stub.h │ │ │ ├── notebook_stub_factory.cc │ │ │ ├── notebook_stub_factory.h │ │ │ ├── notebook_tracing_connection.cc │ │ │ ├── notebook_tracing_connection.h │ │ │ ├── notebook_tracing_stub.cc │ │ │ └── notebook_tracing_stub.h │ │ ├── managed_notebook_client.cc │ │ ├── managed_notebook_client.h │ │ ├── managed_notebook_connection.cc │ │ ├── managed_notebook_connection.h │ │ ├── managed_notebook_connection_idempotency_policy.cc │ │ ├── managed_notebook_connection_idempotency_policy.h │ │ ├── managed_notebook_options.h │ │ ├── mocks │ │ │ ├── mock_managed_notebook_connection.h │ │ │ └── mock_notebook_connection.h │ │ ├── notebook_client.cc │ │ ├── notebook_client.h │ │ ├── notebook_connection.cc │ │ ├── notebook_connection.h │ │ ├── notebook_connection_idempotency_policy.cc │ │ ├── notebook_connection_idempotency_policy.h │ │ ├── notebook_options.h │ │ └── samples │ │ │ ├── managed_notebook_client_samples.cc │ │ │ └── notebook_client_samples.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── notebook_auth_decorator.cc │ │ ├── notebook_auth_decorator.h │ │ ├── notebook_connection_impl.cc │ │ ├── notebook_connection_impl.h │ │ ├── notebook_logging_decorator.cc │ │ ├── notebook_logging_decorator.h │ │ ├── notebook_metadata_decorator.cc │ │ ├── notebook_metadata_decorator.h │ │ ├── notebook_option_defaults.cc │ │ ├── notebook_option_defaults.h │ │ ├── notebook_retry_traits.h │ │ ├── notebook_sources.cc │ │ ├── notebook_stub.cc │ │ ├── notebook_stub.h │ │ ├── notebook_stub_factory.cc │ │ ├── notebook_stub_factory.h │ │ ├── notebook_tracing_connection.cc │ │ ├── notebook_tracing_connection.h │ │ ├── notebook_tracing_stub.cc │ │ └── notebook_tracing_stub.h │ │ ├── mocks │ │ └── mock_notebook_connection.h │ │ ├── notebook_client.cc │ │ ├── notebook_client.h │ │ ├── notebook_connection.cc │ │ ├── notebook_connection.h │ │ ├── notebook_connection_idempotency_policy.cc │ │ ├── notebook_connection_idempotency_policy.h │ │ ├── notebook_options.h │ │ └── samples │ │ └── notebook_client_samples.cc │ ├── oauth2 │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── access_token_generator.cc │ ├── access_token_generator.h │ ├── access_token_generator_test.cc │ ├── config.cmake.in │ ├── doc │ │ └── oauth2-main.dox │ ├── google_cloud_cpp_oauth2.bzl │ ├── google_cloud_cpp_oauth2_unit_tests.bzl │ └── quickstart │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── opentelemetry │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── config.cmake.in │ ├── configure_basic_tracing.cc │ ├── configure_basic_tracing.h │ ├── doc │ │ └── main.dox │ ├── google_cloud_cpp_opentelemetry.bzl │ ├── integration_tests │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── configure_basic_tracing_integration_test.cc │ │ ├── monitoring_exporter_integration_test.cc │ │ ├── tests.bzl │ │ └── trace_exporter_integration_test.cc │ ├── internal │ │ ├── monitored_resource.cc │ │ ├── monitored_resource.h │ │ ├── monitored_resource_test.cc │ │ ├── monitoring_exporter.cc │ │ ├── monitoring_exporter.h │ │ ├── monitoring_exporter_test.cc │ │ ├── recordable.cc │ │ ├── recordable.h │ │ ├── recordable_test.cc │ │ ├── resource_detector_impl.cc │ │ ├── resource_detector_impl.h │ │ ├── resource_detector_impl_test.cc │ │ ├── time_series.cc │ │ ├── time_series.h │ │ └── time_series_test.cc │ ├── monitoring_exporter.cc │ ├── monitoring_exporter.h │ ├── monitoring_exporter_test.cc │ ├── opentelemetry_unit_tests.bzl │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ ├── assets │ │ │ └── cloud_trace_ui.png │ │ └── quickstart.cc │ ├── resource_detector.cc │ ├── resource_detector.h │ ├── samples │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ └── samples.cc │ ├── trace_exporter.cc │ ├── trace_exporter.h │ └── trace_exporter_test.cc │ ├── opentelemetry_options.h │ ├── optimization │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── fleet_routing_client.h │ ├── fleet_routing_connection.h │ ├── fleet_routing_connection_idempotency_policy.h │ ├── fleet_routing_options.h │ ├── mocks │ │ └── mock_fleet_routing_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── fleet_routing_client.cc │ │ ├── fleet_routing_client.h │ │ ├── fleet_routing_connection.cc │ │ ├── fleet_routing_connection.h │ │ ├── fleet_routing_connection_idempotency_policy.cc │ │ ├── fleet_routing_connection_idempotency_policy.h │ │ ├── fleet_routing_options.h │ │ ├── internal │ │ ├── fleet_routing_auth_decorator.cc │ │ ├── fleet_routing_auth_decorator.h │ │ ├── fleet_routing_connection_impl.cc │ │ ├── fleet_routing_connection_impl.h │ │ ├── fleet_routing_logging_decorator.cc │ │ ├── fleet_routing_logging_decorator.h │ │ ├── fleet_routing_metadata_decorator.cc │ │ ├── fleet_routing_metadata_decorator.h │ │ ├── fleet_routing_option_defaults.cc │ │ ├── fleet_routing_option_defaults.h │ │ ├── fleet_routing_retry_traits.h │ │ ├── fleet_routing_sources.cc │ │ ├── fleet_routing_stub.cc │ │ ├── fleet_routing_stub.h │ │ ├── fleet_routing_stub_factory.cc │ │ ├── fleet_routing_stub_factory.h │ │ ├── fleet_routing_tracing_connection.cc │ │ ├── fleet_routing_tracing_connection.h │ │ ├── fleet_routing_tracing_stub.cc │ │ └── fleet_routing_tracing_stub.h │ │ ├── mocks │ │ └── mock_fleet_routing_connection.h │ │ └── samples │ │ └── fleet_routing_client_samples.cc │ ├── optional.h │ ├── options.cc │ ├── options.h │ ├── options_benchmark.cc │ ├── options_test.cc │ ├── oracledatabase │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── oracle_database_auth_decorator.cc │ │ ├── oracle_database_auth_decorator.h │ │ ├── oracle_database_connection_impl.cc │ │ ├── oracle_database_connection_impl.h │ │ ├── oracle_database_logging_decorator.cc │ │ ├── oracle_database_logging_decorator.h │ │ ├── oracle_database_metadata_decorator.cc │ │ ├── oracle_database_metadata_decorator.h │ │ ├── oracle_database_option_defaults.cc │ │ ├── oracle_database_option_defaults.h │ │ ├── oracle_database_retry_traits.h │ │ ├── oracle_database_sources.cc │ │ ├── oracle_database_stub.cc │ │ ├── oracle_database_stub.h │ │ ├── oracle_database_stub_factory.cc │ │ ├── oracle_database_stub_factory.h │ │ ├── oracle_database_tracing_connection.cc │ │ ├── oracle_database_tracing_connection.h │ │ ├── oracle_database_tracing_stub.cc │ │ └── oracle_database_tracing_stub.h │ │ ├── mocks │ │ └── mock_oracle_database_connection.h │ │ ├── oracle_database_client.cc │ │ ├── oracle_database_client.h │ │ ├── oracle_database_connection.cc │ │ ├── oracle_database_connection.h │ │ ├── oracle_database_connection_idempotency_policy.cc │ │ ├── oracle_database_connection_idempotency_policy.h │ │ ├── oracle_database_options.h │ │ └── samples │ │ └── oracle_database_client_samples.cc │ ├── orgpolicy │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_org_policy_connection.h │ ├── org_policy_client.h │ ├── org_policy_connection.h │ ├── org_policy_connection_idempotency_policy.h │ ├── org_policy_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── org_policy_auth_decorator.cc │ │ ├── org_policy_auth_decorator.h │ │ ├── org_policy_connection_impl.cc │ │ ├── org_policy_connection_impl.h │ │ ├── org_policy_logging_decorator.cc │ │ ├── org_policy_logging_decorator.h │ │ ├── org_policy_metadata_decorator.cc │ │ ├── org_policy_metadata_decorator.h │ │ ├── org_policy_option_defaults.cc │ │ ├── org_policy_option_defaults.h │ │ ├── org_policy_retry_traits.h │ │ ├── org_policy_sources.cc │ │ ├── org_policy_stub.cc │ │ ├── org_policy_stub.h │ │ ├── org_policy_stub_factory.cc │ │ ├── org_policy_stub_factory.h │ │ ├── org_policy_tracing_connection.cc │ │ ├── org_policy_tracing_connection.h │ │ ├── org_policy_tracing_stub.cc │ │ └── org_policy_tracing_stub.h │ │ ├── mocks │ │ └── mock_org_policy_connection.h │ │ ├── org_policy_client.cc │ │ ├── org_policy_client.h │ │ ├── org_policy_connection.cc │ │ ├── org_policy_connection.h │ │ ├── org_policy_connection_idempotency_policy.cc │ │ ├── org_policy_connection_idempotency_policy.h │ │ ├── org_policy_options.h │ │ └── samples │ │ └── org_policy_client_samples.cc │ ├── osconfig │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── agent_endpoint_client.h │ ├── agent_endpoint_connection.h │ ├── agent_endpoint_connection_idempotency_policy.h │ ├── agent_endpoint_options.h │ ├── agentendpoint │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── agent_endpoint_client.cc │ │ │ ├── agent_endpoint_client.h │ │ │ ├── agent_endpoint_connection.cc │ │ │ ├── agent_endpoint_connection.h │ │ │ ├── agent_endpoint_connection_idempotency_policy.cc │ │ │ ├── agent_endpoint_connection_idempotency_policy.h │ │ │ ├── agent_endpoint_options.h │ │ │ ├── internal │ │ │ ├── agent_endpoint_auth_decorator.cc │ │ │ ├── agent_endpoint_auth_decorator.h │ │ │ ├── agent_endpoint_connection_impl.cc │ │ │ ├── agent_endpoint_connection_impl.h │ │ │ ├── agent_endpoint_logging_decorator.cc │ │ │ ├── agent_endpoint_logging_decorator.h │ │ │ ├── agent_endpoint_metadata_decorator.cc │ │ │ ├── agent_endpoint_metadata_decorator.h │ │ │ ├── agent_endpoint_option_defaults.cc │ │ │ ├── agent_endpoint_option_defaults.h │ │ │ ├── agent_endpoint_retry_traits.h │ │ │ ├── agent_endpoint_sources.cc │ │ │ ├── agent_endpoint_stub.cc │ │ │ ├── agent_endpoint_stub.h │ │ │ ├── agent_endpoint_stub_factory.cc │ │ │ ├── agent_endpoint_stub_factory.h │ │ │ ├── agent_endpoint_tracing_connection.cc │ │ │ ├── agent_endpoint_tracing_connection.h │ │ │ ├── agent_endpoint_tracing_stub.cc │ │ │ └── agent_endpoint_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_agent_endpoint_connection.h │ │ │ └── samples │ │ │ └── agent_endpoint_client_samples.cc │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ ├── mock_agent_endpoint_connection.h │ │ └── mock_os_config_connection.h │ ├── os_config_client.h │ ├── os_config_connection.h │ ├── os_config_connection_idempotency_policy.h │ ├── os_config_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── os_config_auth_decorator.cc │ │ ├── os_config_auth_decorator.h │ │ ├── os_config_connection_impl.cc │ │ ├── os_config_connection_impl.h │ │ ├── os_config_logging_decorator.cc │ │ ├── os_config_logging_decorator.h │ │ ├── os_config_metadata_decorator.cc │ │ ├── os_config_metadata_decorator.h │ │ ├── os_config_option_defaults.cc │ │ ├── os_config_option_defaults.h │ │ ├── os_config_retry_traits.h │ │ ├── os_config_sources.cc │ │ ├── os_config_stub.cc │ │ ├── os_config_stub.h │ │ ├── os_config_stub_factory.cc │ │ ├── os_config_stub_factory.h │ │ ├── os_config_tracing_connection.cc │ │ ├── os_config_tracing_connection.h │ │ ├── os_config_tracing_stub.cc │ │ ├── os_config_tracing_stub.h │ │ ├── os_config_zonal_auth_decorator.cc │ │ ├── os_config_zonal_auth_decorator.h │ │ ├── os_config_zonal_connection_impl.cc │ │ ├── os_config_zonal_connection_impl.h │ │ ├── os_config_zonal_logging_decorator.cc │ │ ├── os_config_zonal_logging_decorator.h │ │ ├── os_config_zonal_metadata_decorator.cc │ │ ├── os_config_zonal_metadata_decorator.h │ │ ├── os_config_zonal_option_defaults.cc │ │ ├── os_config_zonal_option_defaults.h │ │ ├── os_config_zonal_retry_traits.h │ │ ├── os_config_zonal_sources.cc │ │ ├── os_config_zonal_stub.cc │ │ ├── os_config_zonal_stub.h │ │ ├── os_config_zonal_stub_factory.cc │ │ ├── os_config_zonal_stub_factory.h │ │ ├── os_config_zonal_tracing_connection.cc │ │ ├── os_config_zonal_tracing_connection.h │ │ ├── os_config_zonal_tracing_stub.cc │ │ └── os_config_zonal_tracing_stub.h │ │ ├── mocks │ │ ├── mock_os_config_connection.h │ │ └── mock_os_config_zonal_connection.h │ │ ├── os_config_client.cc │ │ ├── os_config_client.h │ │ ├── os_config_connection.cc │ │ ├── os_config_connection.h │ │ ├── os_config_connection_idempotency_policy.cc │ │ ├── os_config_connection_idempotency_policy.h │ │ ├── os_config_options.h │ │ ├── os_config_zonal_client.cc │ │ ├── os_config_zonal_client.h │ │ ├── os_config_zonal_connection.cc │ │ ├── os_config_zonal_connection.h │ │ ├── os_config_zonal_connection_idempotency_policy.cc │ │ ├── os_config_zonal_connection_idempotency_policy.h │ │ ├── os_config_zonal_options.h │ │ └── samples │ │ ├── os_config_client_samples.cc │ │ └── os_config_zonal_client_samples.cc │ ├── oslogin │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_os_login_connection.h │ ├── os_login_client.h │ ├── os_login_connection.h │ ├── os_login_connection_idempotency_policy.h │ ├── os_login_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── os_login_auth_decorator.cc │ │ ├── os_login_auth_decorator.h │ │ ├── os_login_connection_impl.cc │ │ ├── os_login_connection_impl.h │ │ ├── os_login_logging_decorator.cc │ │ ├── os_login_logging_decorator.h │ │ ├── os_login_metadata_decorator.cc │ │ ├── os_login_metadata_decorator.h │ │ ├── os_login_option_defaults.cc │ │ ├── os_login_option_defaults.h │ │ ├── os_login_retry_traits.h │ │ ├── os_login_sources.cc │ │ ├── os_login_stub.cc │ │ ├── os_login_stub.h │ │ ├── os_login_stub_factory.cc │ │ ├── os_login_stub_factory.h │ │ ├── os_login_tracing_connection.cc │ │ ├── os_login_tracing_connection.h │ │ ├── os_login_tracing_stub.cc │ │ └── os_login_tracing_stub.h │ │ ├── mocks │ │ └── mock_os_login_connection.h │ │ ├── os_login_client.cc │ │ ├── os_login_client.h │ │ ├── os_login_connection.cc │ │ ├── os_login_connection.h │ │ ├── os_login_connection_idempotency_policy.cc │ │ ├── os_login_connection_idempotency_policy.h │ │ ├── os_login_options.h │ │ └── samples │ │ └── os_login_client_samples.cc │ ├── parallelstore │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── parallelstore_auth_decorator.cc │ │ ├── parallelstore_auth_decorator.h │ │ ├── parallelstore_connection_impl.cc │ │ ├── parallelstore_connection_impl.h │ │ ├── parallelstore_logging_decorator.cc │ │ ├── parallelstore_logging_decorator.h │ │ ├── parallelstore_metadata_decorator.cc │ │ ├── parallelstore_metadata_decorator.h │ │ ├── parallelstore_option_defaults.cc │ │ ├── parallelstore_option_defaults.h │ │ ├── parallelstore_retry_traits.h │ │ ├── parallelstore_sources.cc │ │ ├── parallelstore_stub.cc │ │ ├── parallelstore_stub.h │ │ ├── parallelstore_stub_factory.cc │ │ ├── parallelstore_stub_factory.h │ │ ├── parallelstore_tracing_connection.cc │ │ ├── parallelstore_tracing_connection.h │ │ ├── parallelstore_tracing_stub.cc │ │ └── parallelstore_tracing_stub.h │ │ ├── mocks │ │ └── mock_parallelstore_connection.h │ │ ├── parallelstore_client.cc │ │ ├── parallelstore_client.h │ │ ├── parallelstore_connection.cc │ │ ├── parallelstore_connection.h │ │ ├── parallelstore_connection_idempotency_policy.cc │ │ ├── parallelstore_connection_idempotency_policy.h │ │ ├── parallelstore_options.h │ │ └── samples │ │ └── parallelstore_client_samples.cc │ ├── parametermanager │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── internal │ │ ├── parameter_manager_auth_decorator.cc │ │ ├── parameter_manager_auth_decorator.h │ │ ├── parameter_manager_connection_impl.cc │ │ ├── parameter_manager_connection_impl.h │ │ ├── parameter_manager_logging_decorator.cc │ │ ├── parameter_manager_logging_decorator.h │ │ ├── parameter_manager_metadata_decorator.cc │ │ ├── parameter_manager_metadata_decorator.h │ │ ├── parameter_manager_option_defaults.cc │ │ ├── parameter_manager_option_defaults.h │ │ ├── parameter_manager_retry_traits.h │ │ ├── parameter_manager_sources.cc │ │ ├── parameter_manager_stub.cc │ │ ├── parameter_manager_stub.h │ │ ├── parameter_manager_stub_factory.cc │ │ ├── parameter_manager_stub_factory.h │ │ ├── parameter_manager_tracing_connection.cc │ │ ├── parameter_manager_tracing_connection.h │ │ ├── parameter_manager_tracing_stub.cc │ │ └── parameter_manager_tracing_stub.h │ │ ├── mocks │ │ └── mock_parameter_manager_connection.h │ │ ├── parameter_manager_client.cc │ │ ├── parameter_manager_client.h │ │ ├── parameter_manager_connection.cc │ │ ├── parameter_manager_connection.h │ │ ├── parameter_manager_connection_idempotency_policy.cc │ │ ├── parameter_manager_connection_idempotency_policy.h │ │ ├── parameter_manager_options.h │ │ └── samples │ │ └── parameter_manager_client_samples.cc │ ├── policysimulator │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── simulator_auth_decorator.cc │ │ ├── simulator_auth_decorator.h │ │ ├── simulator_connection_impl.cc │ │ ├── simulator_connection_impl.h │ │ ├── simulator_logging_decorator.cc │ │ ├── simulator_logging_decorator.h │ │ ├── simulator_metadata_decorator.cc │ │ ├── simulator_metadata_decorator.h │ │ ├── simulator_option_defaults.cc │ │ ├── simulator_option_defaults.h │ │ ├── simulator_retry_traits.h │ │ ├── simulator_sources.cc │ │ ├── simulator_stub.cc │ │ ├── simulator_stub.h │ │ ├── simulator_stub_factory.cc │ │ ├── simulator_stub_factory.h │ │ ├── simulator_tracing_connection.cc │ │ ├── simulator_tracing_connection.h │ │ ├── simulator_tracing_stub.cc │ │ └── simulator_tracing_stub.h │ │ ├── mocks │ │ └── mock_simulator_connection.h │ │ ├── samples │ │ └── simulator_client_samples.cc │ │ ├── simulator_client.cc │ │ ├── simulator_client.h │ │ ├── simulator_connection.cc │ │ ├── simulator_connection.h │ │ ├── simulator_connection_idempotency_policy.cc │ │ ├── simulator_connection_idempotency_policy.h │ │ └── simulator_options.h │ ├── policytroubleshooter │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── iam │ │ └── v3 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── policy_troubleshooter_auth_decorator.cc │ │ │ ├── policy_troubleshooter_auth_decorator.h │ │ │ ├── policy_troubleshooter_connection_impl.cc │ │ │ ├── policy_troubleshooter_connection_impl.h │ │ │ ├── policy_troubleshooter_logging_decorator.cc │ │ │ ├── policy_troubleshooter_logging_decorator.h │ │ │ ├── policy_troubleshooter_metadata_decorator.cc │ │ │ ├── policy_troubleshooter_metadata_decorator.h │ │ │ ├── policy_troubleshooter_option_defaults.cc │ │ │ ├── policy_troubleshooter_option_defaults.h │ │ │ ├── policy_troubleshooter_retry_traits.h │ │ │ ├── policy_troubleshooter_sources.cc │ │ │ ├── policy_troubleshooter_stub.cc │ │ │ ├── policy_troubleshooter_stub.h │ │ │ ├── policy_troubleshooter_stub_factory.cc │ │ │ ├── policy_troubleshooter_stub_factory.h │ │ │ ├── policy_troubleshooter_tracing_connection.cc │ │ │ ├── policy_troubleshooter_tracing_connection.h │ │ │ ├── policy_troubleshooter_tracing_stub.cc │ │ │ └── policy_troubleshooter_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_policy_troubleshooter_connection.h │ │ │ ├── policy_troubleshooter_client.cc │ │ │ ├── policy_troubleshooter_client.h │ │ │ ├── policy_troubleshooter_connection.cc │ │ │ ├── policy_troubleshooter_connection.h │ │ │ ├── policy_troubleshooter_connection_idempotency_policy.cc │ │ │ ├── policy_troubleshooter_connection_idempotency_policy.h │ │ │ ├── policy_troubleshooter_options.h │ │ │ └── samples │ │ │ └── policy_troubleshooter_client_samples.cc │ ├── iam_checker_client.h │ ├── iam_checker_connection.h │ ├── iam_checker_connection_idempotency_policy.h │ ├── iam_checker_options.h │ ├── mocks │ │ └── mock_iam_checker_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── iam_checker_client.cc │ │ ├── iam_checker_client.h │ │ ├── iam_checker_connection.cc │ │ ├── iam_checker_connection.h │ │ ├── iam_checker_connection_idempotency_policy.cc │ │ ├── iam_checker_connection_idempotency_policy.h │ │ ├── iam_checker_options.h │ │ ├── internal │ │ ├── iam_checker_auth_decorator.cc │ │ ├── iam_checker_auth_decorator.h │ │ ├── iam_checker_connection_impl.cc │ │ ├── iam_checker_connection_impl.h │ │ ├── iam_checker_logging_decorator.cc │ │ ├── iam_checker_logging_decorator.h │ │ ├── iam_checker_metadata_decorator.cc │ │ ├── iam_checker_metadata_decorator.h │ │ ├── iam_checker_option_defaults.cc │ │ ├── iam_checker_option_defaults.h │ │ ├── iam_checker_retry_traits.h │ │ ├── iam_checker_sources.cc │ │ ├── iam_checker_stub.cc │ │ ├── iam_checker_stub.h │ │ ├── iam_checker_stub_factory.cc │ │ ├── iam_checker_stub_factory.h │ │ ├── iam_checker_tracing_connection.cc │ │ ├── iam_checker_tracing_connection.h │ │ ├── iam_checker_tracing_stub.cc │ │ └── iam_checker_tracing_stub.h │ │ ├── mocks │ │ └── mock_iam_checker_connection.h │ │ └── samples │ │ └── iam_checker_client_samples.cc │ ├── polling_policy.h │ ├── polling_policy_test.cc │ ├── privateca │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── certificate_authority_client.h │ ├── certificate_authority_connection.h │ ├── certificate_authority_connection_idempotency_policy.h │ ├── certificate_authority_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_certificate_authority_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── certificate_authority_client.cc │ │ ├── certificate_authority_client.h │ │ ├── certificate_authority_connection.cc │ │ ├── certificate_authority_connection.h │ │ ├── certificate_authority_connection_idempotency_policy.cc │ │ ├── certificate_authority_connection_idempotency_policy.h │ │ ├── certificate_authority_options.h │ │ ├── internal │ │ ├── certificate_authority_auth_decorator.cc │ │ ├── certificate_authority_auth_decorator.h │ │ ├── certificate_authority_connection_impl.cc │ │ ├── certificate_authority_connection_impl.h │ │ ├── certificate_authority_logging_decorator.cc │ │ ├── certificate_authority_logging_decorator.h │ │ ├── certificate_authority_metadata_decorator.cc │ │ ├── certificate_authority_metadata_decorator.h │ │ ├── certificate_authority_option_defaults.cc │ │ ├── certificate_authority_option_defaults.h │ │ ├── certificate_authority_retry_traits.h │ │ ├── certificate_authority_sources.cc │ │ ├── certificate_authority_stub.cc │ │ ├── certificate_authority_stub.h │ │ ├── certificate_authority_stub_factory.cc │ │ ├── certificate_authority_stub_factory.h │ │ ├── certificate_authority_tracing_connection.cc │ │ ├── certificate_authority_tracing_connection.h │ │ ├── certificate_authority_tracing_stub.cc │ │ └── certificate_authority_tracing_stub.h │ │ ├── mocks │ │ └── mock_certificate_authority_connection.h │ │ └── samples │ │ └── certificate_authority_client_samples.cc │ ├── privilegedaccessmanager │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── privileged_access_manager_auth_decorator.cc │ │ ├── privileged_access_manager_auth_decorator.h │ │ ├── privileged_access_manager_connection_impl.cc │ │ ├── privileged_access_manager_connection_impl.h │ │ ├── privileged_access_manager_logging_decorator.cc │ │ ├── privileged_access_manager_logging_decorator.h │ │ ├── privileged_access_manager_metadata_decorator.cc │ │ ├── privileged_access_manager_metadata_decorator.h │ │ ├── privileged_access_manager_option_defaults.cc │ │ ├── privileged_access_manager_option_defaults.h │ │ ├── privileged_access_manager_retry_traits.h │ │ ├── privileged_access_manager_sources.cc │ │ ├── privileged_access_manager_stub.cc │ │ ├── privileged_access_manager_stub.h │ │ ├── privileged_access_manager_stub_factory.cc │ │ ├── privileged_access_manager_stub_factory.h │ │ ├── privileged_access_manager_tracing_connection.cc │ │ ├── privileged_access_manager_tracing_connection.h │ │ ├── privileged_access_manager_tracing_stub.cc │ │ └── privileged_access_manager_tracing_stub.h │ │ ├── mocks │ │ └── mock_privileged_access_manager_connection.h │ │ ├── privileged_access_manager_client.cc │ │ ├── privileged_access_manager_client.h │ │ ├── privileged_access_manager_connection.cc │ │ ├── privileged_access_manager_connection.h │ │ ├── privileged_access_manager_connection_idempotency_policy.cc │ │ ├── privileged_access_manager_connection_idempotency_policy.h │ │ ├── privileged_access_manager_options.h │ │ └── samples │ │ └── privileged_access_manager_client_samples.cc │ ├── profiler │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_profiler_connection.h │ ├── profiler_client.h │ ├── profiler_connection.h │ ├── profiler_connection_idempotency_policy.h │ ├── profiler_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── export_client.cc │ │ ├── export_client.h │ │ ├── export_connection.cc │ │ ├── export_connection.h │ │ ├── export_connection_idempotency_policy.cc │ │ ├── export_connection_idempotency_policy.h │ │ ├── export_options.h │ │ ├── internal │ │ ├── export_auth_decorator.cc │ │ ├── export_auth_decorator.h │ │ ├── export_connection_impl.cc │ │ ├── export_connection_impl.h │ │ ├── export_logging_decorator.cc │ │ ├── export_logging_decorator.h │ │ ├── export_metadata_decorator.cc │ │ ├── export_metadata_decorator.h │ │ ├── export_option_defaults.cc │ │ ├── export_option_defaults.h │ │ ├── export_retry_traits.h │ │ ├── export_sources.cc │ │ ├── export_stub.cc │ │ ├── export_stub.h │ │ ├── export_stub_factory.cc │ │ ├── export_stub_factory.h │ │ ├── export_tracing_connection.cc │ │ ├── export_tracing_connection.h │ │ ├── export_tracing_stub.cc │ │ ├── export_tracing_stub.h │ │ ├── profiler_auth_decorator.cc │ │ ├── profiler_auth_decorator.h │ │ ├── profiler_connection_impl.cc │ │ ├── profiler_connection_impl.h │ │ ├── profiler_logging_decorator.cc │ │ ├── profiler_logging_decorator.h │ │ ├── profiler_metadata_decorator.cc │ │ ├── profiler_metadata_decorator.h │ │ ├── profiler_option_defaults.cc │ │ ├── profiler_option_defaults.h │ │ ├── profiler_retry_traits.h │ │ ├── profiler_sources.cc │ │ ├── profiler_stub.cc │ │ ├── profiler_stub.h │ │ ├── profiler_stub_factory.cc │ │ ├── profiler_stub_factory.h │ │ ├── profiler_tracing_connection.cc │ │ ├── profiler_tracing_connection.h │ │ ├── profiler_tracing_stub.cc │ │ └── profiler_tracing_stub.h │ │ ├── mocks │ │ ├── mock_export_connection.h │ │ └── mock_profiler_connection.h │ │ ├── profiler_client.cc │ │ ├── profiler_client.h │ │ ├── profiler_connection.cc │ │ ├── profiler_connection.h │ │ ├── profiler_connection_idempotency_policy.cc │ │ ├── profiler_connection_idempotency_policy.h │ │ ├── profiler_options.h │ │ └── samples │ │ ├── export_client_samples.cc │ │ └── profiler_client_samples.cc │ ├── project.cc │ ├── project.h │ ├── project_test.cc │ ├── publicca │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── public_certificate_authority_auth_decorator.cc │ │ ├── public_certificate_authority_auth_decorator.h │ │ ├── public_certificate_authority_connection_impl.cc │ │ ├── public_certificate_authority_connection_impl.h │ │ ├── public_certificate_authority_logging_decorator.cc │ │ ├── public_certificate_authority_logging_decorator.h │ │ ├── public_certificate_authority_metadata_decorator.cc │ │ ├── public_certificate_authority_metadata_decorator.h │ │ ├── public_certificate_authority_option_defaults.cc │ │ ├── public_certificate_authority_option_defaults.h │ │ ├── public_certificate_authority_retry_traits.h │ │ ├── public_certificate_authority_sources.cc │ │ ├── public_certificate_authority_stub.cc │ │ ├── public_certificate_authority_stub.h │ │ ├── public_certificate_authority_stub_factory.cc │ │ ├── public_certificate_authority_stub_factory.h │ │ ├── public_certificate_authority_tracing_connection.cc │ │ ├── public_certificate_authority_tracing_connection.h │ │ ├── public_certificate_authority_tracing_stub.cc │ │ └── public_certificate_authority_tracing_stub.h │ │ ├── mocks │ │ └── mock_public_certificate_authority_connection.h │ │ ├── public_certificate_authority_client.cc │ │ ├── public_certificate_authority_client.h │ │ ├── public_certificate_authority_connection.cc │ │ ├── public_certificate_authority_connection.h │ │ ├── public_certificate_authority_connection_idempotency_policy.cc │ │ ├── public_certificate_authority_connection_idempotency_policy.h │ │ ├── public_certificate_authority_options.h │ │ └── samples │ │ └── public_certificate_authority_client_samples.cc │ ├── pubsub │ ├── .clang-tidy │ ├── .repo-metadata.json │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── ack_handler.cc │ ├── ack_handler.h │ ├── ack_handler_test.cc │ ├── admin │ │ ├── internal │ │ │ ├── subscription_admin_auth_decorator.cc │ │ │ ├── subscription_admin_auth_decorator.h │ │ │ ├── subscription_admin_connection_impl.cc │ │ │ ├── subscription_admin_connection_impl.h │ │ │ ├── subscription_admin_logging_decorator.cc │ │ │ ├── subscription_admin_logging_decorator.h │ │ │ ├── subscription_admin_metadata_decorator.cc │ │ │ ├── subscription_admin_metadata_decorator.h │ │ │ ├── subscription_admin_option_defaults.cc │ │ │ ├── subscription_admin_option_defaults.h │ │ │ ├── subscription_admin_retry_traits.h │ │ │ ├── subscription_admin_sources.cc │ │ │ ├── subscription_admin_stub.cc │ │ │ ├── subscription_admin_stub.h │ │ │ ├── subscription_admin_stub_factory.cc │ │ │ ├── subscription_admin_stub_factory.h │ │ │ ├── subscription_admin_tracing_connection.cc │ │ │ ├── subscription_admin_tracing_connection.h │ │ │ ├── subscription_admin_tracing_stub.cc │ │ │ ├── subscription_admin_tracing_stub.h │ │ │ ├── topic_admin_auth_decorator.cc │ │ │ ├── topic_admin_auth_decorator.h │ │ │ ├── topic_admin_connection_impl.cc │ │ │ ├── topic_admin_connection_impl.h │ │ │ ├── topic_admin_logging_decorator.cc │ │ │ ├── topic_admin_logging_decorator.h │ │ │ ├── topic_admin_metadata_decorator.cc │ │ │ ├── topic_admin_metadata_decorator.h │ │ │ ├── topic_admin_option_defaults.cc │ │ │ ├── topic_admin_option_defaults.h │ │ │ ├── topic_admin_retry_traits.h │ │ │ ├── topic_admin_sources.cc │ │ │ ├── topic_admin_stub.cc │ │ │ ├── topic_admin_stub.h │ │ │ ├── topic_admin_stub_factory.cc │ │ │ ├── topic_admin_stub_factory.h │ │ │ ├── topic_admin_tracing_connection.cc │ │ │ ├── topic_admin_tracing_connection.h │ │ │ ├── topic_admin_tracing_stub.cc │ │ │ └── topic_admin_tracing_stub.h │ │ ├── mocks │ │ │ ├── mock_subscription_admin_connection.h │ │ │ └── mock_topic_admin_connection.h │ │ ├── samples │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── subscription_admin_client_samples.cc │ │ │ └── topic_admin_client_samples.cc │ │ ├── subscription_admin_client.cc │ │ ├── subscription_admin_client.h │ │ ├── subscription_admin_connection.cc │ │ ├── subscription_admin_connection.h │ │ ├── subscription_admin_connection_idempotency_policy.cc │ │ ├── subscription_admin_connection_idempotency_policy.h │ │ ├── subscription_admin_options.h │ │ ├── topic_admin_client.cc │ │ ├── topic_admin_client.h │ │ ├── topic_admin_connection.cc │ │ ├── topic_admin_connection.h │ │ ├── topic_admin_connection_idempotency_policy.cc │ │ ├── topic_admin_connection_idempotency_policy.h │ │ └── topic_admin_options.h │ ├── application_callback.h │ ├── backoff_policy.h │ ├── benchmarks │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── endurance.cc │ │ ├── pubsub_client_benchmark_programs.bzl │ │ └── throughput.cc │ ├── blocking_publisher.cc │ ├── blocking_publisher.h │ ├── blocking_publisher_connection.cc │ ├── blocking_publisher_connection.h │ ├── blocking_publisher_connection_test.cc │ ├── blocking_publisher_test.cc │ ├── ci │ │ ├── lib │ │ │ └── pubsub_emulator.sh │ │ ├── run_integration_tests_emulator_bazel.sh │ │ └── run_integration_tests_emulator_cmake.sh │ ├── connection_options.cc │ ├── connection_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── error-handling.dox │ │ ├── override-retry-policies.dox │ │ ├── publisher-mock.dox │ │ ├── pubsub-main.dox │ │ ├── pubsub-options.dox │ │ └── subscriber-mock.dox │ ├── exactly_once_ack_handler.cc │ ├── exactly_once_ack_handler.h │ ├── exactly_once_ack_handler_test.cc │ ├── google_cloud_cpp_pubsub.bzl │ ├── google_cloud_cpp_pubsub_mocks.bzl │ ├── integration_tests │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── blocking_publisher_integration_test.cc │ │ ├── generated_subscription_admin_integration_test.cc │ │ ├── publisher_integration_test.cc │ │ ├── pubsub_client_integration_tests.bzl │ │ ├── subscriber_integration_test.cc │ │ ├── subscription_admin_integration_test.cc │ │ └── topic_admin_integration_test.cc │ ├── internal │ │ ├── ack_handler_wrapper.cc │ │ ├── ack_handler_wrapper.h │ │ ├── ack_handler_wrapper_test.cc │ │ ├── batch_callback.h │ │ ├── batch_callback_wrapper.h │ │ ├── batch_sink.h │ │ ├── batching_publisher_connection.cc │ │ ├── batching_publisher_connection.h │ │ ├── batching_publisher_connection_test.cc │ │ ├── batching_publisher_tracing_connection.cc │ │ ├── batching_publisher_tracing_connection.h │ │ ├── batching_publisher_tracing_connection_test.cc │ │ ├── blocking_publisher_connection_impl.cc │ │ ├── blocking_publisher_connection_impl.h │ │ ├── blocking_publisher_tracing_connection.cc │ │ ├── blocking_publisher_tracing_connection.h │ │ ├── blocking_publisher_tracing_connection_test.cc │ │ ├── containing_publisher_connection.h │ │ ├── create_channel.cc │ │ ├── create_channel.h │ │ ├── default_batch_callback.h │ │ ├── default_batch_sink.cc │ │ ├── default_batch_sink.h │ │ ├── default_batch_sink_test.cc │ │ ├── default_message_callback.h │ │ ├── default_pull_ack_handler.cc │ │ ├── default_pull_ack_handler.h │ │ ├── default_pull_ack_handler_test.cc │ │ ├── default_pull_lease_manager.cc │ │ ├── default_pull_lease_manager.h │ │ ├── default_pull_lease_manager_test.cc │ │ ├── defaults.cc │ │ ├── defaults.h │ │ ├── defaults_test.cc │ │ ├── exactly_once_policies.cc │ │ ├── exactly_once_policies.h │ │ ├── exactly_once_policies_test.cc │ │ ├── extend_leases_with_retry.cc │ │ ├── extend_leases_with_retry.h │ │ ├── extend_leases_with_retry_test.cc │ │ ├── flow_controlled_publisher_connection.cc │ │ ├── flow_controlled_publisher_connection.h │ │ ├── flow_controlled_publisher_connection_test.cc │ │ ├── flow_controlled_publisher_tracing_connection.cc │ │ ├── flow_controlled_publisher_tracing_connection.h │ │ ├── flow_controlled_publisher_tracing_connection_test.cc │ │ ├── message_callback.h │ │ ├── message_carrier.cc │ │ ├── message_carrier.h │ │ ├── message_carrier_test.cc │ │ ├── message_propagator.cc │ │ ├── message_propagator.h │ │ ├── message_propagator_test.cc │ │ ├── noop_message_callback.h │ │ ├── ordering_key_publisher_connection.cc │ │ ├── ordering_key_publisher_connection.h │ │ ├── ordering_key_publisher_connection_test.cc │ │ ├── publisher_auth_decorator.cc │ │ ├── publisher_auth_decorator.h │ │ ├── publisher_logging_decorator.cc │ │ ├── publisher_logging_decorator.h │ │ ├── publisher_metadata_decorator.cc │ │ ├── publisher_metadata_decorator.h │ │ ├── publisher_round_robin_decorator.cc │ │ ├── publisher_round_robin_decorator.h │ │ ├── publisher_stub.cc │ │ ├── publisher_stub.h │ │ ├── publisher_stub_factory.cc │ │ ├── publisher_stub_factory.h │ │ ├── publisher_stub_factory_test.cc │ │ ├── publisher_tracing_connection.cc │ │ ├── publisher_tracing_connection.h │ │ ├── publisher_tracing_connection_test.cc │ │ ├── publisher_tracing_stub.cc │ │ ├── publisher_tracing_stub.h │ │ ├── pull_ack_handler_factory.cc │ │ ├── pull_ack_handler_factory.h │ │ ├── pull_ack_handler_factory_test.cc │ │ ├── pull_lease_manager.h │ │ ├── pull_lease_manager_factory.cc │ │ ├── pull_lease_manager_factory.h │ │ ├── pull_lease_manager_factory_test.cc │ │ ├── rejects_with_ordering_key.cc │ │ ├── rejects_with_ordering_key.h │ │ ├── rejects_with_ordering_key_test.cc │ │ ├── schema_auth_decorator.cc │ │ ├── schema_auth_decorator.h │ │ ├── schema_connection_impl.cc │ │ ├── schema_connection_impl.h │ │ ├── schema_logging_decorator.cc │ │ ├── schema_logging_decorator.h │ │ ├── schema_metadata_decorator.cc │ │ ├── schema_metadata_decorator.h │ │ ├── schema_option_defaults.cc │ │ ├── schema_option_defaults.h │ │ ├── schema_retry_traits.h │ │ ├── schema_sources.cc │ │ ├── schema_stub.cc │ │ ├── schema_stub.h │ │ ├── schema_stub_factory.cc │ │ ├── schema_stub_factory.h │ │ ├── schema_tracing_connection.cc │ │ ├── schema_tracing_connection.h │ │ ├── schema_tracing_stub.cc │ │ ├── schema_tracing_stub.h │ │ ├── sequential_batch_sink.cc │ │ ├── sequential_batch_sink.h │ │ ├── sequential_batch_sink_test.cc │ │ ├── session_shutdown_manager.cc │ │ ├── session_shutdown_manager.h │ │ ├── session_shutdown_manager_test.cc │ │ ├── span.h │ │ ├── streaming_subscription_batch_source.cc │ │ ├── streaming_subscription_batch_source.h │ │ ├── streaming_subscription_batch_source_test.cc │ │ ├── subscriber_auth_decorator.cc │ │ ├── subscriber_auth_decorator.h │ │ ├── subscriber_connection_impl.cc │ │ ├── subscriber_connection_impl.h │ │ ├── subscriber_connection_impl_test.cc │ │ ├── subscriber_logging_decorator.cc │ │ ├── subscriber_logging_decorator.h │ │ ├── subscriber_metadata_decorator.cc │ │ ├── subscriber_metadata_decorator.h │ │ ├── subscriber_round_robin_decorator.cc │ │ ├── subscriber_round_robin_decorator.h │ │ ├── subscriber_stub.cc │ │ ├── subscriber_stub.h │ │ ├── subscriber_stub_factory.cc │ │ ├── subscriber_stub_factory.h │ │ ├── subscriber_stub_factory_test.cc │ │ ├── subscriber_tracing_connection.cc │ │ ├── subscriber_tracing_connection.h │ │ ├── subscriber_tracing_connection_test.cc │ │ ├── subscriber_tracing_stub.cc │ │ ├── subscriber_tracing_stub.h │ │ ├── subscription_batch_source.h │ │ ├── subscription_concurrency_control.cc │ │ ├── subscription_concurrency_control.h │ │ ├── subscription_concurrency_control_test.cc │ │ ├── subscription_lease_management.cc │ │ ├── subscription_lease_management.h │ │ ├── subscription_lease_management_test.cc │ │ ├── subscription_message_queue.cc │ │ ├── subscription_message_queue.h │ │ ├── subscription_message_queue_test.cc │ │ ├── subscription_message_source.h │ │ ├── subscription_session.cc │ │ ├── subscription_session.h │ │ ├── subscription_session_test.cc │ │ ├── tracing_batch_callback.cc │ │ ├── tracing_batch_callback.h │ │ ├── tracing_batch_callback_test.cc │ │ ├── tracing_batch_sink.cc │ │ ├── tracing_batch_sink.h │ │ ├── tracing_batch_sink_test.cc │ │ ├── tracing_exactly_once_ack_handler.cc │ │ ├── tracing_exactly_once_ack_handler.h │ │ ├── tracing_exactly_once_ack_handler_test.cc │ │ ├── tracing_helpers.cc │ │ ├── tracing_helpers.h │ │ ├── tracing_helpers_test.cc │ │ ├── tracing_message_callback.cc │ │ ├── tracing_message_callback.h │ │ ├── tracing_message_callback_test.cc │ │ ├── tracing_pull_ack_handler.cc │ │ ├── tracing_pull_ack_handler.h │ │ ├── tracing_pull_ack_handler_test.cc │ │ ├── tracing_pull_lease_manager.cc │ │ ├── tracing_pull_lease_manager.h │ │ └── tracing_pull_lease_manager_test.cc │ ├── message.cc │ ├── message.h │ ├── message_test.cc │ ├── mocks-config.cmake.in │ ├── mocks │ │ ├── mock_ack_handler.h │ │ ├── mock_blocking_publisher_connection.h │ │ ├── mock_exactly_once_ack_handler.h │ │ ├── mock_publisher_connection.h │ │ ├── mock_pull_ack_handler.h │ │ ├── mock_schema_connection.h │ │ ├── mock_subscriber_connection.h │ │ ├── mock_subscription_admin_connection.h │ │ └── mock_topic_admin_connection.h │ ├── options.cc │ ├── options.h │ ├── options_test.cc │ ├── publisher.h │ ├── publisher_connection.cc │ ├── publisher_connection.h │ ├── publisher_connection_test.cc │ ├── publisher_options.cc │ ├── publisher_options.h │ ├── publisher_options_test.cc │ ├── publisher_test.cc │ ├── pubsub_client_testing.bzl │ ├── pubsub_client_unit_tests.bzl │ ├── pull_ack_handler.cc │ ├── pull_ack_handler.h │ ├── pull_ack_handler_test.cc │ ├── pull_response.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ ├── quickstart.cc │ │ └── subscriber_quickstart.cc │ ├── retry_policy.h │ ├── samples │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── blocking_samples.cc │ │ ├── client_samples.cc │ │ ├── iam_samples.cc │ │ ├── mock_publisher.cc │ │ ├── mock_subscriber.cc │ │ ├── pubsub_client_integration_samples.bzl │ │ ├── pubsub_client_unit_samples.bzl │ │ ├── pubsub_samples_common.bzl │ │ ├── pubsub_samples_common.cc │ │ ├── pubsub_samples_common.h │ │ ├── pubsub_samples_common_test.cc │ │ ├── pubsub_samples_unit_tests.bzl │ │ ├── samples.cc │ │ ├── schema_client_samples.cc │ │ ├── schema_samples.cc │ │ ├── subscription_admin_samples.cc │ │ ├── testdata │ │ │ ├── revised_schema.avsc │ │ │ ├── revised_schema.proto │ │ │ ├── schema.avsc │ │ │ ├── schema.proto │ │ │ ├── valid_message.avsc │ │ │ ├── valid_message.pb │ │ │ └── valid_message.textproto │ │ └── topic_admin_samples.cc │ ├── schema.cc │ ├── schema.h │ ├── schema_client.cc │ ├── schema_client.h │ ├── schema_connection.cc │ ├── schema_connection.h │ ├── schema_connection_idempotency_policy.cc │ ├── schema_connection_idempotency_policy.h │ ├── schema_options.h │ ├── schema_test.cc │ ├── snapshot.cc │ ├── snapshot.h │ ├── snapshot_builder.cc │ ├── snapshot_builder.h │ ├── snapshot_builder_test.cc │ ├── snapshot_test.cc │ ├── subscriber.cc │ ├── subscriber.h │ ├── subscriber_connection.cc │ ├── subscriber_connection.h │ ├── subscriber_connection_test.cc │ ├── subscriber_options.cc │ ├── subscriber_options.h │ ├── subscriber_options_test.cc │ ├── subscriber_test.cc │ ├── subscription.cc │ ├── subscription.h │ ├── subscription_admin_client.cc │ ├── subscription_admin_client.h │ ├── subscription_admin_client_test.cc │ ├── subscription_admin_connection.cc │ ├── subscription_admin_connection.h │ ├── subscription_admin_connection_test.cc │ ├── subscription_builder.cc │ ├── subscription_builder.h │ ├── subscription_builder_test.cc │ ├── subscription_test.cc │ ├── testing │ │ ├── README.md │ │ ├── fake_streaming_pull.cc │ │ ├── fake_streaming_pull.h │ │ ├── mock_batch_callback.h │ │ ├── mock_batch_sink.h │ │ ├── mock_exactly_once_ack_handler_impl.h │ │ ├── mock_message_callback.h │ │ ├── mock_publisher_stub.h │ │ ├── mock_pull_lease_manager.h │ │ ├── mock_subscriber_stub.h │ │ ├── mock_subscription_batch_source.h │ │ ├── mock_subscription_message_source.h │ │ ├── random_names.cc │ │ ├── random_names.h │ │ ├── test_retry_policies.cc │ │ └── test_retry_policies.h │ ├── topic.cc │ ├── topic.h │ ├── topic_admin_client.cc │ ├── topic_admin_client.h │ ├── topic_admin_client_test.cc │ ├── topic_admin_connection.cc │ ├── topic_admin_connection.h │ ├── topic_admin_connection_test.cc │ ├── topic_builder.cc │ ├── topic_builder.h │ ├── topic_builder_test.cc │ ├── topic_test.cc │ ├── version.h │ └── version_info.h │ ├── pubsublite │ ├── .repo-metadata.json │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── admin_client.cc │ ├── admin_client.h │ ├── admin_connection.cc │ ├── admin_connection.h │ ├── admin_connection_idempotency_policy.cc │ ├── admin_connection_idempotency_policy.h │ ├── admin_options.h │ ├── config.cmake.in │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── endpoint.cc │ ├── endpoint.h │ ├── endpoint_test.cc │ ├── google_cloud_cpp_pubsublite.bzl │ ├── google_cloud_cpp_pubsublite_mocks.bzl │ ├── integration_tests │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── publisher_integration_test.cc │ │ └── pubsublite_client_integration_tests.bzl │ ├── internal │ │ ├── admin_auth_decorator.cc │ │ ├── admin_auth_decorator.h │ │ ├── admin_connection_impl.cc │ │ ├── admin_connection_impl.h │ │ ├── admin_logging_decorator.cc │ │ ├── admin_logging_decorator.h │ │ ├── admin_metadata_decorator.cc │ │ ├── admin_metadata_decorator.h │ │ ├── admin_option_defaults.cc │ │ ├── admin_option_defaults.h │ │ ├── admin_retry_traits.h │ │ ├── admin_sources.cc │ │ ├── admin_stub.cc │ │ ├── admin_stub.h │ │ ├── admin_stub_factory.cc │ │ ├── admin_stub_factory.h │ │ ├── admin_tracing_connection.cc │ │ ├── admin_tracing_connection.h │ │ ├── admin_tracing_stub.cc │ │ ├── admin_tracing_stub.h │ │ ├── alarm_registry.h │ │ ├── alarm_registry_impl.cc │ │ ├── alarm_registry_impl.h │ │ ├── alarm_registry_impl_test.cc │ │ ├── batching_options.h │ │ ├── cloud_region.cc │ │ ├── cloud_region.h │ │ ├── cloud_zone.cc │ │ ├── cloud_zone.h │ │ ├── cursor_auth_decorator.cc │ │ ├── cursor_auth_decorator.h │ │ ├── cursor_logging_decorator.cc │ │ ├── cursor_logging_decorator.h │ │ ├── cursor_metadata_decorator.cc │ │ ├── cursor_metadata_decorator.h │ │ ├── cursor_stub.cc │ │ ├── cursor_stub.h │ │ ├── cursor_stub_factory.cc │ │ ├── cursor_stub_factory.h │ │ ├── cursor_tracing_stub.cc │ │ ├── cursor_tracing_stub.h │ │ ├── default_publish_message_transformer.cc │ │ ├── default_publish_message_transformer.h │ │ ├── default_publish_message_transformer_test.cc │ │ ├── default_routing_policy.cc │ │ ├── default_routing_policy.h │ │ ├── default_routing_policy_test.cc │ │ ├── futures.h │ │ ├── location.cc │ │ ├── location.h │ │ ├── location_test.cc │ │ ├── multipartition_publisher.cc │ │ ├── multipartition_publisher.h │ │ ├── multipartition_publisher_test.cc │ │ ├── partition_assignment_auth_decorator.cc │ │ ├── partition_assignment_auth_decorator.h │ │ ├── partition_assignment_logging_decorator.cc │ │ ├── partition_assignment_logging_decorator.h │ │ ├── partition_assignment_metadata_decorator.cc │ │ ├── partition_assignment_metadata_decorator.h │ │ ├── partition_assignment_stub.cc │ │ ├── partition_assignment_stub.h │ │ ├── partition_assignment_stub_factory.cc │ │ ├── partition_assignment_stub_factory.h │ │ ├── partition_assignment_tracing_stub.cc │ │ ├── partition_assignment_tracing_stub.h │ │ ├── partition_publisher.cc │ │ ├── partition_publisher.h │ │ ├── partition_publisher_test.cc │ │ ├── publisher.h │ │ ├── publisher_auth_decorator.cc │ │ ├── publisher_auth_decorator.h │ │ ├── publisher_connection_impl.cc │ │ ├── publisher_connection_impl.h │ │ ├── publisher_connection_impl_test.cc │ │ ├── publisher_logging_decorator.cc │ │ ├── publisher_logging_decorator.h │ │ ├── publisher_metadata_decorator.cc │ │ ├── publisher_metadata_decorator.h │ │ ├── publisher_stub.cc │ │ ├── publisher_stub.h │ │ ├── publisher_stub_factory.cc │ │ ├── publisher_stub_factory.h │ │ ├── publisher_tracing_stub.cc │ │ ├── publisher_tracing_stub.h │ │ ├── resumable_async_streaming_read_write_rpc.h │ │ ├── resumable_async_streaming_read_write_rpc_test.cc │ │ ├── routing_policy.h │ │ ├── service.h │ │ ├── service_composite.h │ │ ├── service_composite_test.cc │ │ ├── stream_factory.h │ │ ├── stream_factory_test.cc │ │ ├── stream_retry_policy.h │ │ ├── stream_retry_policy_test.cc │ │ ├── subscriber_auth_decorator.cc │ │ ├── subscriber_auth_decorator.h │ │ ├── subscriber_logging_decorator.cc │ │ ├── subscriber_logging_decorator.h │ │ ├── subscriber_metadata_decorator.cc │ │ ├── subscriber_metadata_decorator.h │ │ ├── subscriber_stub.cc │ │ ├── subscriber_stub.h │ │ ├── subscriber_stub_factory.cc │ │ ├── subscriber_stub_factory.h │ │ ├── subscriber_tracing_stub.cc │ │ ├── subscriber_tracing_stub.h │ │ ├── topic_stats_auth_decorator.cc │ │ ├── topic_stats_auth_decorator.h │ │ ├── topic_stats_connection_impl.cc │ │ ├── topic_stats_connection_impl.h │ │ ├── topic_stats_logging_decorator.cc │ │ ├── topic_stats_logging_decorator.h │ │ ├── topic_stats_metadata_decorator.cc │ │ ├── topic_stats_metadata_decorator.h │ │ ├── topic_stats_option_defaults.cc │ │ ├── topic_stats_option_defaults.h │ │ ├── topic_stats_retry_traits.h │ │ ├── topic_stats_sources.cc │ │ ├── topic_stats_stub.cc │ │ ├── topic_stats_stub.h │ │ ├── topic_stats_stub_factory.cc │ │ ├── topic_stats_stub_factory.h │ │ ├── topic_stats_tracing_connection.cc │ │ ├── topic_stats_tracing_connection.h │ │ ├── topic_stats_tracing_stub.cc │ │ └── topic_stats_tracing_stub.h │ ├── message_metadata.cc │ ├── message_metadata.h │ ├── message_metadata_test.cc │ ├── mocks │ │ ├── mock_admin_connection.h │ │ └── mock_topic_stats_connection.h │ ├── options.h │ ├── publisher_connection.cc │ ├── publisher_connection.h │ ├── pubsublite_testing.bzl │ ├── pubsublite_unit_tests.bzl │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── samples │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── admin_client_samples.cc │ │ └── topic_stats_client_samples.cc │ ├── testing │ │ ├── mock_alarm_registry.h │ │ ├── mock_publisher.h │ │ ├── mock_resumable_async_reader_writer_stream.h │ │ ├── mock_retry_policy.h │ │ ├── mock_routing_policy.h │ │ └── mock_service.h │ ├── topic.h │ ├── topic_stats_client.cc │ ├── topic_stats_client.h │ ├── topic_stats_connection.cc │ ├── topic_stats_connection.h │ ├── topic_stats_connection_idempotency_policy.cc │ ├── topic_stats_connection_idempotency_policy.h │ ├── topic_stats_options.h │ └── topic_test.cc │ ├── rapidmigrationassessment │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── rapid_migration_assessment_auth_decorator.cc │ │ ├── rapid_migration_assessment_auth_decorator.h │ │ ├── rapid_migration_assessment_connection_impl.cc │ │ ├── rapid_migration_assessment_connection_impl.h │ │ ├── rapid_migration_assessment_logging_decorator.cc │ │ ├── rapid_migration_assessment_logging_decorator.h │ │ ├── rapid_migration_assessment_metadata_decorator.cc │ │ ├── rapid_migration_assessment_metadata_decorator.h │ │ ├── rapid_migration_assessment_option_defaults.cc │ │ ├── rapid_migration_assessment_option_defaults.h │ │ ├── rapid_migration_assessment_retry_traits.h │ │ ├── rapid_migration_assessment_sources.cc │ │ ├── rapid_migration_assessment_stub.cc │ │ ├── rapid_migration_assessment_stub.h │ │ ├── rapid_migration_assessment_stub_factory.cc │ │ ├── rapid_migration_assessment_stub_factory.h │ │ ├── rapid_migration_assessment_tracing_connection.cc │ │ ├── rapid_migration_assessment_tracing_connection.h │ │ ├── rapid_migration_assessment_tracing_stub.cc │ │ └── rapid_migration_assessment_tracing_stub.h │ │ ├── mocks │ │ └── mock_rapid_migration_assessment_connection.h │ │ ├── rapid_migration_assessment_client.cc │ │ ├── rapid_migration_assessment_client.h │ │ ├── rapid_migration_assessment_connection.cc │ │ ├── rapid_migration_assessment_connection.h │ │ ├── rapid_migration_assessment_connection_idempotency_policy.cc │ │ ├── rapid_migration_assessment_connection_idempotency_policy.h │ │ ├── rapid_migration_assessment_options.h │ │ └── samples │ │ └── rapid_migration_assessment_client_samples.cc │ ├── recaptchaenterprise │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── recaptcha_enterprise_auth_decorator.cc │ │ ├── recaptcha_enterprise_auth_decorator.h │ │ ├── recaptcha_enterprise_connection_impl.cc │ │ ├── recaptcha_enterprise_connection_impl.h │ │ ├── recaptcha_enterprise_logging_decorator.cc │ │ ├── recaptcha_enterprise_logging_decorator.h │ │ ├── recaptcha_enterprise_metadata_decorator.cc │ │ ├── recaptcha_enterprise_metadata_decorator.h │ │ ├── recaptcha_enterprise_option_defaults.cc │ │ ├── recaptcha_enterprise_option_defaults.h │ │ ├── recaptcha_enterprise_retry_traits.h │ │ ├── recaptcha_enterprise_sources.cc │ │ ├── recaptcha_enterprise_stub.cc │ │ ├── recaptcha_enterprise_stub.h │ │ ├── recaptcha_enterprise_stub_factory.cc │ │ ├── recaptcha_enterprise_stub_factory.h │ │ ├── recaptcha_enterprise_tracing_connection.cc │ │ ├── recaptcha_enterprise_tracing_connection.h │ │ ├── recaptcha_enterprise_tracing_stub.cc │ │ └── recaptcha_enterprise_tracing_stub.h │ │ ├── mocks │ │ └── mock_recaptcha_enterprise_connection.h │ │ ├── recaptcha_enterprise_client.cc │ │ ├── recaptcha_enterprise_client.h │ │ ├── recaptcha_enterprise_connection.cc │ │ ├── recaptcha_enterprise_connection.h │ │ ├── recaptcha_enterprise_connection_idempotency_policy.cc │ │ ├── recaptcha_enterprise_connection_idempotency_policy.h │ │ ├── recaptcha_enterprise_options.h │ │ └── samples │ │ └── recaptcha_enterprise_client_samples.cc │ ├── recommender │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_recommender_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── recommender_client.h │ ├── recommender_connection.h │ ├── recommender_connection_idempotency_policy.h │ ├── recommender_options.h │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── recommender_auth_decorator.cc │ │ ├── recommender_auth_decorator.h │ │ ├── recommender_connection_impl.cc │ │ ├── recommender_connection_impl.h │ │ ├── recommender_logging_decorator.cc │ │ ├── recommender_logging_decorator.h │ │ ├── recommender_metadata_decorator.cc │ │ ├── recommender_metadata_decorator.h │ │ ├── recommender_option_defaults.cc │ │ ├── recommender_option_defaults.h │ │ ├── recommender_retry_traits.h │ │ ├── recommender_sources.cc │ │ ├── recommender_stub.cc │ │ ├── recommender_stub.h │ │ ├── recommender_stub_factory.cc │ │ ├── recommender_stub_factory.h │ │ ├── recommender_tracing_connection.cc │ │ ├── recommender_tracing_connection.h │ │ ├── recommender_tracing_stub.cc │ │ └── recommender_tracing_stub.h │ │ ├── mocks │ │ └── mock_recommender_connection.h │ │ ├── recommender_client.cc │ │ ├── recommender_client.h │ │ ├── recommender_connection.cc │ │ ├── recommender_connection.h │ │ ├── recommender_connection_idempotency_policy.cc │ │ ├── recommender_connection_idempotency_policy.h │ │ ├── recommender_options.h │ │ └── samples │ │ └── recommender_client_samples.cc │ ├── redis │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── cloud_redis_client.h │ ├── cloud_redis_connection.h │ ├── cloud_redis_connection_idempotency_policy.h │ ├── cloud_redis_options.h │ ├── cluster │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── cloud_redis_cluster_client.cc │ │ │ ├── cloud_redis_cluster_client.h │ │ │ ├── cloud_redis_cluster_connection.cc │ │ │ ├── cloud_redis_cluster_connection.h │ │ │ ├── cloud_redis_cluster_connection_idempotency_policy.cc │ │ │ ├── cloud_redis_cluster_connection_idempotency_policy.h │ │ │ ├── cloud_redis_cluster_options.h │ │ │ ├── internal │ │ │ ├── cloud_redis_cluster_auth_decorator.cc │ │ │ ├── cloud_redis_cluster_auth_decorator.h │ │ │ ├── cloud_redis_cluster_connection_impl.cc │ │ │ ├── cloud_redis_cluster_connection_impl.h │ │ │ ├── cloud_redis_cluster_logging_decorator.cc │ │ │ ├── cloud_redis_cluster_logging_decorator.h │ │ │ ├── cloud_redis_cluster_metadata_decorator.cc │ │ │ ├── cloud_redis_cluster_metadata_decorator.h │ │ │ ├── cloud_redis_cluster_option_defaults.cc │ │ │ ├── cloud_redis_cluster_option_defaults.h │ │ │ ├── cloud_redis_cluster_retry_traits.h │ │ │ ├── cloud_redis_cluster_sources.cc │ │ │ ├── cloud_redis_cluster_stub.cc │ │ │ ├── cloud_redis_cluster_stub.h │ │ │ ├── cloud_redis_cluster_stub_factory.cc │ │ │ ├── cloud_redis_cluster_stub_factory.h │ │ │ ├── cloud_redis_cluster_tracing_connection.cc │ │ │ ├── cloud_redis_cluster_tracing_connection.h │ │ │ ├── cloud_redis_cluster_tracing_stub.cc │ │ │ └── cloud_redis_cluster_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_cloud_redis_cluster_connection.h │ │ │ └── samples │ │ │ └── cloud_redis_cluster_client_samples.cc │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_cloud_redis_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_redis_client.cc │ │ ├── cloud_redis_client.h │ │ ├── cloud_redis_connection.cc │ │ ├── cloud_redis_connection.h │ │ ├── cloud_redis_connection_idempotency_policy.cc │ │ ├── cloud_redis_connection_idempotency_policy.h │ │ ├── cloud_redis_options.h │ │ ├── internal │ │ ├── cloud_redis_auth_decorator.cc │ │ ├── cloud_redis_auth_decorator.h │ │ ├── cloud_redis_connection_impl.cc │ │ ├── cloud_redis_connection_impl.h │ │ ├── cloud_redis_logging_decorator.cc │ │ ├── cloud_redis_logging_decorator.h │ │ ├── cloud_redis_metadata_decorator.cc │ │ ├── cloud_redis_metadata_decorator.h │ │ ├── cloud_redis_option_defaults.cc │ │ ├── cloud_redis_option_defaults.h │ │ ├── cloud_redis_retry_traits.h │ │ ├── cloud_redis_sources.cc │ │ ├── cloud_redis_stub.cc │ │ ├── cloud_redis_stub.h │ │ ├── cloud_redis_stub_factory.cc │ │ ├── cloud_redis_stub_factory.h │ │ ├── cloud_redis_tracing_connection.cc │ │ ├── cloud_redis_tracing_connection.h │ │ ├── cloud_redis_tracing_stub.cc │ │ └── cloud_redis_tracing_stub.h │ │ ├── mocks │ │ └── mock_cloud_redis_connection.h │ │ └── samples │ │ └── cloud_redis_client_samples.cc │ ├── resourcemanager │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── folders_client.h │ ├── folders_connection.h │ ├── folders_connection_idempotency_policy.h │ ├── folders_options.h │ ├── mocks │ │ ├── mock_folders_connection.h │ │ ├── mock_organizations_connection.h │ │ └── mock_projects_connection.h │ ├── organizations_client.h │ ├── organizations_connection.h │ ├── organizations_connection_idempotency_policy.h │ ├── organizations_options.h │ ├── projects_client.h │ ├── projects_connection.h │ ├── projects_connection_idempotency_policy.h │ ├── projects_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v3 │ │ ├── .repo-metadata.json │ │ ├── folders_client.cc │ │ ├── folders_client.h │ │ ├── folders_connection.cc │ │ ├── folders_connection.h │ │ ├── folders_connection_idempotency_policy.cc │ │ ├── folders_connection_idempotency_policy.h │ │ ├── folders_options.h │ │ ├── internal │ │ ├── folders_auth_decorator.cc │ │ ├── folders_auth_decorator.h │ │ ├── folders_connection_impl.cc │ │ ├── folders_connection_impl.h │ │ ├── folders_logging_decorator.cc │ │ ├── folders_logging_decorator.h │ │ ├── folders_metadata_decorator.cc │ │ ├── folders_metadata_decorator.h │ │ ├── folders_option_defaults.cc │ │ ├── folders_option_defaults.h │ │ ├── folders_retry_traits.h │ │ ├── folders_sources.cc │ │ ├── folders_stub.cc │ │ ├── folders_stub.h │ │ ├── folders_stub_factory.cc │ │ ├── folders_stub_factory.h │ │ ├── folders_tracing_connection.cc │ │ ├── folders_tracing_connection.h │ │ ├── folders_tracing_stub.cc │ │ ├── folders_tracing_stub.h │ │ ├── organizations_auth_decorator.cc │ │ ├── organizations_auth_decorator.h │ │ ├── organizations_connection_impl.cc │ │ ├── organizations_connection_impl.h │ │ ├── organizations_logging_decorator.cc │ │ ├── organizations_logging_decorator.h │ │ ├── organizations_metadata_decorator.cc │ │ ├── organizations_metadata_decorator.h │ │ ├── organizations_option_defaults.cc │ │ ├── organizations_option_defaults.h │ │ ├── organizations_retry_traits.h │ │ ├── organizations_sources.cc │ │ ├── organizations_stub.cc │ │ ├── organizations_stub.h │ │ ├── organizations_stub_factory.cc │ │ ├── organizations_stub_factory.h │ │ ├── organizations_tracing_connection.cc │ │ ├── organizations_tracing_connection.h │ │ ├── organizations_tracing_stub.cc │ │ ├── organizations_tracing_stub.h │ │ ├── projects_auth_decorator.cc │ │ ├── projects_auth_decorator.h │ │ ├── projects_connection_impl.cc │ │ ├── projects_connection_impl.h │ │ ├── projects_logging_decorator.cc │ │ ├── projects_logging_decorator.h │ │ ├── projects_metadata_decorator.cc │ │ ├── projects_metadata_decorator.h │ │ ├── projects_option_defaults.cc │ │ ├── projects_option_defaults.h │ │ ├── projects_retry_traits.h │ │ ├── projects_sources.cc │ │ ├── projects_stub.cc │ │ ├── projects_stub.h │ │ ├── projects_stub_factory.cc │ │ ├── projects_stub_factory.h │ │ ├── projects_tracing_connection.cc │ │ ├── projects_tracing_connection.h │ │ ├── projects_tracing_stub.cc │ │ ├── projects_tracing_stub.h │ │ ├── tag_bindings_auth_decorator.cc │ │ ├── tag_bindings_auth_decorator.h │ │ ├── tag_bindings_connection_impl.cc │ │ ├── tag_bindings_connection_impl.h │ │ ├── tag_bindings_logging_decorator.cc │ │ ├── tag_bindings_logging_decorator.h │ │ ├── tag_bindings_metadata_decorator.cc │ │ ├── tag_bindings_metadata_decorator.h │ │ ├── tag_bindings_option_defaults.cc │ │ ├── tag_bindings_option_defaults.h │ │ ├── tag_bindings_retry_traits.h │ │ ├── tag_bindings_sources.cc │ │ ├── tag_bindings_stub.cc │ │ ├── tag_bindings_stub.h │ │ ├── tag_bindings_stub_factory.cc │ │ ├── tag_bindings_stub_factory.h │ │ ├── tag_bindings_tracing_connection.cc │ │ ├── tag_bindings_tracing_connection.h │ │ ├── tag_bindings_tracing_stub.cc │ │ ├── tag_bindings_tracing_stub.h │ │ ├── tag_holds_auth_decorator.cc │ │ ├── tag_holds_auth_decorator.h │ │ ├── tag_holds_connection_impl.cc │ │ ├── tag_holds_connection_impl.h │ │ ├── tag_holds_logging_decorator.cc │ │ ├── tag_holds_logging_decorator.h │ │ ├── tag_holds_metadata_decorator.cc │ │ ├── tag_holds_metadata_decorator.h │ │ ├── tag_holds_option_defaults.cc │ │ ├── tag_holds_option_defaults.h │ │ ├── tag_holds_retry_traits.h │ │ ├── tag_holds_sources.cc │ │ ├── tag_holds_stub.cc │ │ ├── tag_holds_stub.h │ │ ├── tag_holds_stub_factory.cc │ │ ├── tag_holds_stub_factory.h │ │ ├── tag_holds_tracing_connection.cc │ │ ├── tag_holds_tracing_connection.h │ │ ├── tag_holds_tracing_stub.cc │ │ ├── tag_holds_tracing_stub.h │ │ ├── tag_keys_auth_decorator.cc │ │ ├── tag_keys_auth_decorator.h │ │ ├── tag_keys_connection_impl.cc │ │ ├── tag_keys_connection_impl.h │ │ ├── tag_keys_logging_decorator.cc │ │ ├── tag_keys_logging_decorator.h │ │ ├── tag_keys_metadata_decorator.cc │ │ ├── tag_keys_metadata_decorator.h │ │ ├── tag_keys_option_defaults.cc │ │ ├── tag_keys_option_defaults.h │ │ ├── tag_keys_retry_traits.h │ │ ├── tag_keys_sources.cc │ │ ├── tag_keys_stub.cc │ │ ├── tag_keys_stub.h │ │ ├── tag_keys_stub_factory.cc │ │ ├── tag_keys_stub_factory.h │ │ ├── tag_keys_tracing_connection.cc │ │ ├── tag_keys_tracing_connection.h │ │ ├── tag_keys_tracing_stub.cc │ │ ├── tag_keys_tracing_stub.h │ │ ├── tag_values_auth_decorator.cc │ │ ├── tag_values_auth_decorator.h │ │ ├── tag_values_connection_impl.cc │ │ ├── tag_values_connection_impl.h │ │ ├── tag_values_logging_decorator.cc │ │ ├── tag_values_logging_decorator.h │ │ ├── tag_values_metadata_decorator.cc │ │ ├── tag_values_metadata_decorator.h │ │ ├── tag_values_option_defaults.cc │ │ ├── tag_values_option_defaults.h │ │ ├── tag_values_retry_traits.h │ │ ├── tag_values_sources.cc │ │ ├── tag_values_stub.cc │ │ ├── tag_values_stub.h │ │ ├── tag_values_stub_factory.cc │ │ ├── tag_values_stub_factory.h │ │ ├── tag_values_tracing_connection.cc │ │ ├── tag_values_tracing_connection.h │ │ ├── tag_values_tracing_stub.cc │ │ └── tag_values_tracing_stub.h │ │ ├── mocks │ │ ├── mock_folders_connection.h │ │ ├── mock_organizations_connection.h │ │ ├── mock_projects_connection.h │ │ ├── mock_tag_bindings_connection.h │ │ ├── mock_tag_holds_connection.h │ │ ├── mock_tag_keys_connection.h │ │ └── mock_tag_values_connection.h │ │ ├── organizations_client.cc │ │ ├── organizations_client.h │ │ ├── organizations_connection.cc │ │ ├── organizations_connection.h │ │ ├── organizations_connection_idempotency_policy.cc │ │ ├── organizations_connection_idempotency_policy.h │ │ ├── organizations_options.h │ │ ├── projects_client.cc │ │ ├── projects_client.h │ │ ├── projects_connection.cc │ │ ├── projects_connection.h │ │ ├── projects_connection_idempotency_policy.cc │ │ ├── projects_connection_idempotency_policy.h │ │ ├── projects_options.h │ │ ├── samples │ │ ├── folders_client_samples.cc │ │ ├── organizations_client_samples.cc │ │ ├── projects_client_samples.cc │ │ ├── tag_bindings_client_samples.cc │ │ ├── tag_holds_client_samples.cc │ │ ├── tag_keys_client_samples.cc │ │ └── tag_values_client_samples.cc │ │ ├── tag_bindings_client.cc │ │ ├── tag_bindings_client.h │ │ ├── tag_bindings_connection.cc │ │ ├── tag_bindings_connection.h │ │ ├── tag_bindings_connection_idempotency_policy.cc │ │ ├── tag_bindings_connection_idempotency_policy.h │ │ ├── tag_bindings_options.h │ │ ├── tag_holds_client.cc │ │ ├── tag_holds_client.h │ │ ├── tag_holds_connection.cc │ │ ├── tag_holds_connection.h │ │ ├── tag_holds_connection_idempotency_policy.cc │ │ ├── tag_holds_connection_idempotency_policy.h │ │ ├── tag_holds_options.h │ │ ├── tag_keys_client.cc │ │ ├── tag_keys_client.h │ │ ├── tag_keys_connection.cc │ │ ├── tag_keys_connection.h │ │ ├── tag_keys_connection_idempotency_policy.cc │ │ ├── tag_keys_connection_idempotency_policy.h │ │ ├── tag_keys_options.h │ │ ├── tag_values_client.cc │ │ ├── tag_values_client.h │ │ ├── tag_values_connection.cc │ │ ├── tag_values_connection.h │ │ ├── tag_values_connection_idempotency_policy.cc │ │ ├── tag_values_connection_idempotency_policy.h │ │ └── tag_values_options.h │ ├── rest_options.h │ ├── retail │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── catalog_client.h │ ├── catalog_connection.h │ ├── catalog_connection_idempotency_policy.h │ ├── catalog_options.h │ ├── completion_client.h │ ├── completion_connection.h │ ├── completion_connection_idempotency_policy.h │ ├── completion_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ ├── mock_catalog_connection.h │ │ ├── mock_completion_connection.h │ │ ├── mock_prediction_connection.h │ │ ├── mock_product_connection.h │ │ ├── mock_search_connection.h │ │ └── mock_user_event_connection.h │ ├── prediction_client.h │ ├── prediction_connection.h │ ├── prediction_connection_idempotency_policy.h │ ├── prediction_options.h │ ├── product_client.h │ ├── product_connection.h │ ├── product_connection_idempotency_policy.h │ ├── product_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── search_client.h │ ├── search_connection.h │ ├── search_connection_idempotency_policy.h │ ├── search_options.h │ ├── user_event_client.h │ ├── user_event_connection.h │ ├── user_event_connection_idempotency_policy.h │ ├── user_event_options.h │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── analytics_client.cc │ │ ├── analytics_client.h │ │ ├── analytics_connection.cc │ │ ├── analytics_connection.h │ │ ├── analytics_connection_idempotency_policy.cc │ │ ├── analytics_connection_idempotency_policy.h │ │ ├── analytics_options.h │ │ ├── catalog_client.cc │ │ ├── catalog_client.h │ │ ├── catalog_connection.cc │ │ ├── catalog_connection.h │ │ ├── catalog_connection_idempotency_policy.cc │ │ ├── catalog_connection_idempotency_policy.h │ │ ├── catalog_options.h │ │ ├── completion_client.cc │ │ ├── completion_client.h │ │ ├── completion_connection.cc │ │ ├── completion_connection.h │ │ ├── completion_connection_idempotency_policy.cc │ │ ├── completion_connection_idempotency_policy.h │ │ ├── completion_options.h │ │ ├── control_client.cc │ │ ├── control_client.h │ │ ├── control_connection.cc │ │ ├── control_connection.h │ │ ├── control_connection_idempotency_policy.cc │ │ ├── control_connection_idempotency_policy.h │ │ ├── control_options.h │ │ ├── internal │ │ ├── analytics_auth_decorator.cc │ │ ├── analytics_auth_decorator.h │ │ ├── analytics_connection_impl.cc │ │ ├── analytics_connection_impl.h │ │ ├── analytics_logging_decorator.cc │ │ ├── analytics_logging_decorator.h │ │ ├── analytics_metadata_decorator.cc │ │ ├── analytics_metadata_decorator.h │ │ ├── analytics_option_defaults.cc │ │ ├── analytics_option_defaults.h │ │ ├── analytics_retry_traits.h │ │ ├── analytics_sources.cc │ │ ├── analytics_stub.cc │ │ ├── analytics_stub.h │ │ ├── analytics_stub_factory.cc │ │ ├── analytics_stub_factory.h │ │ ├── analytics_tracing_connection.cc │ │ ├── analytics_tracing_connection.h │ │ ├── analytics_tracing_stub.cc │ │ ├── analytics_tracing_stub.h │ │ ├── catalog_auth_decorator.cc │ │ ├── catalog_auth_decorator.h │ │ ├── catalog_connection_impl.cc │ │ ├── catalog_connection_impl.h │ │ ├── catalog_logging_decorator.cc │ │ ├── catalog_logging_decorator.h │ │ ├── catalog_metadata_decorator.cc │ │ ├── catalog_metadata_decorator.h │ │ ├── catalog_option_defaults.cc │ │ ├── catalog_option_defaults.h │ │ ├── catalog_retry_traits.h │ │ ├── catalog_sources.cc │ │ ├── catalog_stub.cc │ │ ├── catalog_stub.h │ │ ├── catalog_stub_factory.cc │ │ ├── catalog_stub_factory.h │ │ ├── catalog_tracing_connection.cc │ │ ├── catalog_tracing_connection.h │ │ ├── catalog_tracing_stub.cc │ │ ├── catalog_tracing_stub.h │ │ ├── completion_auth_decorator.cc │ │ ├── completion_auth_decorator.h │ │ ├── completion_connection_impl.cc │ │ ├── completion_connection_impl.h │ │ ├── completion_logging_decorator.cc │ │ ├── completion_logging_decorator.h │ │ ├── completion_metadata_decorator.cc │ │ ├── completion_metadata_decorator.h │ │ ├── completion_option_defaults.cc │ │ ├── completion_option_defaults.h │ │ ├── completion_retry_traits.h │ │ ├── completion_sources.cc │ │ ├── completion_stub.cc │ │ ├── completion_stub.h │ │ ├── completion_stub_factory.cc │ │ ├── completion_stub_factory.h │ │ ├── completion_tracing_connection.cc │ │ ├── completion_tracing_connection.h │ │ ├── completion_tracing_stub.cc │ │ ├── completion_tracing_stub.h │ │ ├── control_auth_decorator.cc │ │ ├── control_auth_decorator.h │ │ ├── control_connection_impl.cc │ │ ├── control_connection_impl.h │ │ ├── control_logging_decorator.cc │ │ ├── control_logging_decorator.h │ │ ├── control_metadata_decorator.cc │ │ ├── control_metadata_decorator.h │ │ ├── control_option_defaults.cc │ │ ├── control_option_defaults.h │ │ ├── control_retry_traits.h │ │ ├── control_sources.cc │ │ ├── control_stub.cc │ │ ├── control_stub.h │ │ ├── control_stub_factory.cc │ │ ├── control_stub_factory.h │ │ ├── control_tracing_connection.cc │ │ ├── control_tracing_connection.h │ │ ├── control_tracing_stub.cc │ │ ├── control_tracing_stub.h │ │ ├── model_auth_decorator.cc │ │ ├── model_auth_decorator.h │ │ ├── model_connection_impl.cc │ │ ├── model_connection_impl.h │ │ ├── model_logging_decorator.cc │ │ ├── model_logging_decorator.h │ │ ├── model_metadata_decorator.cc │ │ ├── model_metadata_decorator.h │ │ ├── model_option_defaults.cc │ │ ├── model_option_defaults.h │ │ ├── model_retry_traits.h │ │ ├── model_sources.cc │ │ ├── model_stub.cc │ │ ├── model_stub.h │ │ ├── model_stub_factory.cc │ │ ├── model_stub_factory.h │ │ ├── model_tracing_connection.cc │ │ ├── model_tracing_connection.h │ │ ├── model_tracing_stub.cc │ │ ├── model_tracing_stub.h │ │ ├── prediction_auth_decorator.cc │ │ ├── prediction_auth_decorator.h │ │ ├── prediction_connection_impl.cc │ │ ├── prediction_connection_impl.h │ │ ├── prediction_logging_decorator.cc │ │ ├── prediction_logging_decorator.h │ │ ├── prediction_metadata_decorator.cc │ │ ├── prediction_metadata_decorator.h │ │ ├── prediction_option_defaults.cc │ │ ├── prediction_option_defaults.h │ │ ├── prediction_retry_traits.h │ │ ├── prediction_sources.cc │ │ ├── prediction_stub.cc │ │ ├── prediction_stub.h │ │ ├── prediction_stub_factory.cc │ │ ├── prediction_stub_factory.h │ │ ├── prediction_tracing_connection.cc │ │ ├── prediction_tracing_connection.h │ │ ├── prediction_tracing_stub.cc │ │ ├── prediction_tracing_stub.h │ │ ├── product_auth_decorator.cc │ │ ├── product_auth_decorator.h │ │ ├── product_connection_impl.cc │ │ ├── product_connection_impl.h │ │ ├── product_logging_decorator.cc │ │ ├── product_logging_decorator.h │ │ ├── product_metadata_decorator.cc │ │ ├── product_metadata_decorator.h │ │ ├── product_option_defaults.cc │ │ ├── product_option_defaults.h │ │ ├── product_retry_traits.h │ │ ├── product_sources.cc │ │ ├── product_stub.cc │ │ ├── product_stub.h │ │ ├── product_stub_factory.cc │ │ ├── product_stub_factory.h │ │ ├── product_tracing_connection.cc │ │ ├── product_tracing_connection.h │ │ ├── product_tracing_stub.cc │ │ ├── product_tracing_stub.h │ │ ├── search_auth_decorator.cc │ │ ├── search_auth_decorator.h │ │ ├── search_connection_impl.cc │ │ ├── search_connection_impl.h │ │ ├── search_logging_decorator.cc │ │ ├── search_logging_decorator.h │ │ ├── search_metadata_decorator.cc │ │ ├── search_metadata_decorator.h │ │ ├── search_option_defaults.cc │ │ ├── search_option_defaults.h │ │ ├── search_retry_traits.h │ │ ├── search_sources.cc │ │ ├── search_stub.cc │ │ ├── search_stub.h │ │ ├── search_stub_factory.cc │ │ ├── search_stub_factory.h │ │ ├── search_tracing_connection.cc │ │ ├── search_tracing_connection.h │ │ ├── search_tracing_stub.cc │ │ ├── search_tracing_stub.h │ │ ├── serving_config_auth_decorator.cc │ │ ├── serving_config_auth_decorator.h │ │ ├── serving_config_connection_impl.cc │ │ ├── serving_config_connection_impl.h │ │ ├── serving_config_logging_decorator.cc │ │ ├── serving_config_logging_decorator.h │ │ ├── serving_config_metadata_decorator.cc │ │ ├── serving_config_metadata_decorator.h │ │ ├── serving_config_option_defaults.cc │ │ ├── serving_config_option_defaults.h │ │ ├── serving_config_retry_traits.h │ │ ├── serving_config_sources.cc │ │ ├── serving_config_stub.cc │ │ ├── serving_config_stub.h │ │ ├── serving_config_stub_factory.cc │ │ ├── serving_config_stub_factory.h │ │ ├── serving_config_tracing_connection.cc │ │ ├── serving_config_tracing_connection.h │ │ ├── serving_config_tracing_stub.cc │ │ ├── serving_config_tracing_stub.h │ │ ├── user_event_auth_decorator.cc │ │ ├── user_event_auth_decorator.h │ │ ├── user_event_connection_impl.cc │ │ ├── user_event_connection_impl.h │ │ ├── user_event_logging_decorator.cc │ │ ├── user_event_logging_decorator.h │ │ ├── user_event_metadata_decorator.cc │ │ ├── user_event_metadata_decorator.h │ │ ├── user_event_option_defaults.cc │ │ ├── user_event_option_defaults.h │ │ ├── user_event_retry_traits.h │ │ ├── user_event_sources.cc │ │ ├── user_event_stub.cc │ │ ├── user_event_stub.h │ │ ├── user_event_stub_factory.cc │ │ ├── user_event_stub_factory.h │ │ ├── user_event_tracing_connection.cc │ │ ├── user_event_tracing_connection.h │ │ ├── user_event_tracing_stub.cc │ │ └── user_event_tracing_stub.h │ │ ├── mocks │ │ ├── mock_analytics_connection.h │ │ ├── mock_catalog_connection.h │ │ ├── mock_completion_connection.h │ │ ├── mock_control_connection.h │ │ ├── mock_model_connection.h │ │ ├── mock_prediction_connection.h │ │ ├── mock_product_connection.h │ │ ├── mock_search_connection.h │ │ ├── mock_serving_config_connection.h │ │ └── mock_user_event_connection.h │ │ ├── model_client.cc │ │ ├── model_client.h │ │ ├── model_connection.cc │ │ ├── model_connection.h │ │ ├── model_connection_idempotency_policy.cc │ │ ├── model_connection_idempotency_policy.h │ │ ├── model_options.h │ │ ├── prediction_client.cc │ │ ├── prediction_client.h │ │ ├── prediction_connection.cc │ │ ├── prediction_connection.h │ │ ├── prediction_connection_idempotency_policy.cc │ │ ├── prediction_connection_idempotency_policy.h │ │ ├── prediction_options.h │ │ ├── product_client.cc │ │ ├── product_client.h │ │ ├── product_connection.cc │ │ ├── product_connection.h │ │ ├── product_connection_idempotency_policy.cc │ │ ├── product_connection_idempotency_policy.h │ │ ├── product_options.h │ │ ├── samples │ │ ├── analytics_client_samples.cc │ │ ├── catalog_client_samples.cc │ │ ├── completion_client_samples.cc │ │ ├── control_client_samples.cc │ │ ├── model_client_samples.cc │ │ ├── prediction_client_samples.cc │ │ ├── product_client_samples.cc │ │ ├── search_client_samples.cc │ │ ├── serving_config_client_samples.cc │ │ └── user_event_client_samples.cc │ │ ├── search_client.cc │ │ ├── search_client.h │ │ ├── search_connection.cc │ │ ├── search_connection.h │ │ ├── search_connection_idempotency_policy.cc │ │ ├── search_connection_idempotency_policy.h │ │ ├── search_options.h │ │ ├── serving_config_client.cc │ │ ├── serving_config_client.h │ │ ├── serving_config_connection.cc │ │ ├── serving_config_connection.h │ │ ├── serving_config_connection_idempotency_policy.cc │ │ ├── serving_config_connection_idempotency_policy.h │ │ ├── serving_config_options.h │ │ ├── user_event_client.cc │ │ ├── user_event_client.h │ │ ├── user_event_connection.cc │ │ ├── user_event_connection.h │ │ ├── user_event_connection_idempotency_policy.cc │ │ ├── user_event_connection_idempotency_policy.h │ │ └── user_event_options.h │ ├── retry_policy.h │ ├── rpc_metadata.h │ ├── run │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ ├── mock_revisions_connection.h │ │ └── mock_services_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── revisions_client.h │ ├── revisions_connection.h │ ├── revisions_connection_idempotency_policy.h │ ├── revisions_options.h │ ├── services_client.h │ ├── services_connection.h │ ├── services_connection_idempotency_policy.h │ ├── services_options.h │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── executions_client.cc │ │ ├── executions_client.h │ │ ├── executions_connection.cc │ │ ├── executions_connection.h │ │ ├── executions_connection_idempotency_policy.cc │ │ ├── executions_connection_idempotency_policy.h │ │ ├── executions_options.h │ │ ├── internal │ │ ├── executions_auth_decorator.cc │ │ ├── executions_auth_decorator.h │ │ ├── executions_connection_impl.cc │ │ ├── executions_connection_impl.h │ │ ├── executions_logging_decorator.cc │ │ ├── executions_logging_decorator.h │ │ ├── executions_metadata_decorator.cc │ │ ├── executions_metadata_decorator.h │ │ ├── executions_option_defaults.cc │ │ ├── executions_option_defaults.h │ │ ├── executions_retry_traits.h │ │ ├── executions_sources.cc │ │ ├── executions_stub.cc │ │ ├── executions_stub.h │ │ ├── executions_stub_factory.cc │ │ ├── executions_stub_factory.h │ │ ├── executions_tracing_connection.cc │ │ ├── executions_tracing_connection.h │ │ ├── executions_tracing_stub.cc │ │ ├── executions_tracing_stub.h │ │ ├── jobs_auth_decorator.cc │ │ ├── jobs_auth_decorator.h │ │ ├── jobs_connection_impl.cc │ │ ├── jobs_connection_impl.h │ │ ├── jobs_logging_decorator.cc │ │ ├── jobs_logging_decorator.h │ │ ├── jobs_metadata_decorator.cc │ │ ├── jobs_metadata_decorator.h │ │ ├── jobs_option_defaults.cc │ │ ├── jobs_option_defaults.h │ │ ├── jobs_retry_traits.h │ │ ├── jobs_sources.cc │ │ ├── jobs_stub.cc │ │ ├── jobs_stub.h │ │ ├── jobs_stub_factory.cc │ │ ├── jobs_stub_factory.h │ │ ├── jobs_tracing_connection.cc │ │ ├── jobs_tracing_connection.h │ │ ├── jobs_tracing_stub.cc │ │ ├── jobs_tracing_stub.h │ │ ├── revisions_auth_decorator.cc │ │ ├── revisions_auth_decorator.h │ │ ├── revisions_connection_impl.cc │ │ ├── revisions_connection_impl.h │ │ ├── revisions_logging_decorator.cc │ │ ├── revisions_logging_decorator.h │ │ ├── revisions_metadata_decorator.cc │ │ ├── revisions_metadata_decorator.h │ │ ├── revisions_option_defaults.cc │ │ ├── revisions_option_defaults.h │ │ ├── revisions_retry_traits.h │ │ ├── revisions_sources.cc │ │ ├── revisions_stub.cc │ │ ├── revisions_stub.h │ │ ├── revisions_stub_factory.cc │ │ ├── revisions_stub_factory.h │ │ ├── revisions_tracing_connection.cc │ │ ├── revisions_tracing_connection.h │ │ ├── revisions_tracing_stub.cc │ │ ├── revisions_tracing_stub.h │ │ ├── services_auth_decorator.cc │ │ ├── services_auth_decorator.h │ │ ├── services_connection_impl.cc │ │ ├── services_connection_impl.h │ │ ├── services_logging_decorator.cc │ │ ├── services_logging_decorator.h │ │ ├── services_metadata_decorator.cc │ │ ├── services_metadata_decorator.h │ │ ├── services_option_defaults.cc │ │ ├── services_option_defaults.h │ │ ├── services_retry_traits.h │ │ ├── services_sources.cc │ │ ├── services_stub.cc │ │ ├── services_stub.h │ │ ├── services_stub_factory.cc │ │ ├── services_stub_factory.h │ │ ├── services_tracing_connection.cc │ │ ├── services_tracing_connection.h │ │ ├── services_tracing_stub.cc │ │ ├── services_tracing_stub.h │ │ ├── tasks_auth_decorator.cc │ │ ├── tasks_auth_decorator.h │ │ ├── tasks_connection_impl.cc │ │ ├── tasks_connection_impl.h │ │ ├── tasks_logging_decorator.cc │ │ ├── tasks_logging_decorator.h │ │ ├── tasks_metadata_decorator.cc │ │ ├── tasks_metadata_decorator.h │ │ ├── tasks_option_defaults.cc │ │ ├── tasks_option_defaults.h │ │ ├── tasks_retry_traits.h │ │ ├── tasks_sources.cc │ │ ├── tasks_stub.cc │ │ ├── tasks_stub.h │ │ ├── tasks_stub_factory.cc │ │ ├── tasks_stub_factory.h │ │ ├── tasks_tracing_connection.cc │ │ ├── tasks_tracing_connection.h │ │ ├── tasks_tracing_stub.cc │ │ └── tasks_tracing_stub.h │ │ ├── jobs_client.cc │ │ ├── jobs_client.h │ │ ├── jobs_connection.cc │ │ ├── jobs_connection.h │ │ ├── jobs_connection_idempotency_policy.cc │ │ ├── jobs_connection_idempotency_policy.h │ │ ├── jobs_options.h │ │ ├── mocks │ │ ├── mock_executions_connection.h │ │ ├── mock_jobs_connection.h │ │ ├── mock_revisions_connection.h │ │ ├── mock_services_connection.h │ │ └── mock_tasks_connection.h │ │ ├── revisions_client.cc │ │ ├── revisions_client.h │ │ ├── revisions_connection.cc │ │ ├── revisions_connection.h │ │ ├── revisions_connection_idempotency_policy.cc │ │ ├── revisions_connection_idempotency_policy.h │ │ ├── revisions_options.h │ │ ├── samples │ │ ├── executions_client_samples.cc │ │ ├── jobs_client_samples.cc │ │ ├── revisions_client_samples.cc │ │ ├── services_client_samples.cc │ │ └── tasks_client_samples.cc │ │ ├── services_client.cc │ │ ├── services_client.h │ │ ├── services_connection.cc │ │ ├── services_connection.h │ │ ├── services_connection_idempotency_policy.cc │ │ ├── services_connection_idempotency_policy.h │ │ ├── services_options.h │ │ ├── tasks_client.cc │ │ ├── tasks_client.h │ │ ├── tasks_connection.cc │ │ ├── tasks_connection.h │ │ ├── tasks_connection_idempotency_policy.cc │ │ ├── tasks_connection_idempotency_policy.h │ │ └── tasks_options.h │ ├── samples │ └── samples.cc │ ├── scheduler │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── cloud_scheduler_client.h │ ├── cloud_scheduler_connection.h │ ├── cloud_scheduler_connection_idempotency_policy.h │ ├── cloud_scheduler_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_cloud_scheduler_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_scheduler_client.cc │ │ ├── cloud_scheduler_client.h │ │ ├── cloud_scheduler_connection.cc │ │ ├── cloud_scheduler_connection.h │ │ ├── cloud_scheduler_connection_idempotency_policy.cc │ │ ├── cloud_scheduler_connection_idempotency_policy.h │ │ ├── cloud_scheduler_options.h │ │ ├── internal │ │ ├── cloud_scheduler_auth_decorator.cc │ │ ├── cloud_scheduler_auth_decorator.h │ │ ├── cloud_scheduler_connection_impl.cc │ │ ├── cloud_scheduler_connection_impl.h │ │ ├── cloud_scheduler_logging_decorator.cc │ │ ├── cloud_scheduler_logging_decorator.h │ │ ├── cloud_scheduler_metadata_decorator.cc │ │ ├── cloud_scheduler_metadata_decorator.h │ │ ├── cloud_scheduler_option_defaults.cc │ │ ├── cloud_scheduler_option_defaults.h │ │ ├── cloud_scheduler_retry_traits.h │ │ ├── cloud_scheduler_sources.cc │ │ ├── cloud_scheduler_stub.cc │ │ ├── cloud_scheduler_stub.h │ │ ├── cloud_scheduler_stub_factory.cc │ │ ├── cloud_scheduler_stub_factory.h │ │ ├── cloud_scheduler_tracing_connection.cc │ │ ├── cloud_scheduler_tracing_connection.h │ │ ├── cloud_scheduler_tracing_stub.cc │ │ └── cloud_scheduler_tracing_stub.h │ │ ├── mocks │ │ └── mock_cloud_scheduler_connection.h │ │ └── samples │ │ └── cloud_scheduler_client_samples.cc │ ├── secretmanager │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_secret_manager_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── secret_manager_client.h │ ├── secret_manager_connection.h │ ├── secret_manager_connection_idempotency_policy.h │ ├── secret_manager_options.h │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── secret_manager_auth_decorator.cc │ │ ├── secret_manager_auth_decorator.h │ │ ├── secret_manager_connection_impl.cc │ │ ├── secret_manager_connection_impl.h │ │ ├── secret_manager_logging_decorator.cc │ │ ├── secret_manager_logging_decorator.h │ │ ├── secret_manager_metadata_decorator.cc │ │ ├── secret_manager_metadata_decorator.h │ │ ├── secret_manager_option_defaults.cc │ │ ├── secret_manager_option_defaults.h │ │ ├── secret_manager_retry_traits.h │ │ ├── secret_manager_sources.cc │ │ ├── secret_manager_stub.cc │ │ ├── secret_manager_stub.h │ │ ├── secret_manager_stub_factory.cc │ │ ├── secret_manager_stub_factory.h │ │ ├── secret_manager_tracing_connection.cc │ │ ├── secret_manager_tracing_connection.h │ │ ├── secret_manager_tracing_stub.cc │ │ └── secret_manager_tracing_stub.h │ │ ├── mocks │ │ └── mock_secret_manager_connection.h │ │ ├── samples │ │ └── secret_manager_client_samples.cc │ │ ├── secret_manager_client.cc │ │ ├── secret_manager_client.h │ │ ├── secret_manager_connection.cc │ │ ├── secret_manager_connection.h │ │ ├── secret_manager_connection_idempotency_policy.cc │ │ ├── secret_manager_connection_idempotency_policy.h │ │ └── secret_manager_options.h │ ├── securesourcemanager │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── secure_source_manager_auth_decorator.cc │ │ ├── secure_source_manager_auth_decorator.h │ │ ├── secure_source_manager_connection_impl.cc │ │ ├── secure_source_manager_connection_impl.h │ │ ├── secure_source_manager_logging_decorator.cc │ │ ├── secure_source_manager_logging_decorator.h │ │ ├── secure_source_manager_metadata_decorator.cc │ │ ├── secure_source_manager_metadata_decorator.h │ │ ├── secure_source_manager_option_defaults.cc │ │ ├── secure_source_manager_option_defaults.h │ │ ├── secure_source_manager_retry_traits.h │ │ ├── secure_source_manager_sources.cc │ │ ├── secure_source_manager_stub.cc │ │ ├── secure_source_manager_stub.h │ │ ├── secure_source_manager_stub_factory.cc │ │ ├── secure_source_manager_stub_factory.h │ │ ├── secure_source_manager_tracing_connection.cc │ │ ├── secure_source_manager_tracing_connection.h │ │ ├── secure_source_manager_tracing_stub.cc │ │ └── secure_source_manager_tracing_stub.h │ │ ├── mocks │ │ └── mock_secure_source_manager_connection.h │ │ ├── samples │ │ └── secure_source_manager_client_samples.cc │ │ ├── secure_source_manager_client.cc │ │ ├── secure_source_manager_client.h │ │ ├── secure_source_manager_connection.cc │ │ ├── secure_source_manager_connection.h │ │ ├── secure_source_manager_connection_idempotency_policy.cc │ │ ├── secure_source_manager_connection_idempotency_policy.h │ │ └── secure_source_manager_options.h │ ├── securitycenter │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_security_center_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── security_center_client.h │ ├── security_center_connection.h │ ├── security_center_connection_idempotency_policy.h │ ├── security_center_options.h │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── security_center_auth_decorator.cc │ │ │ ├── security_center_auth_decorator.h │ │ │ ├── security_center_connection_impl.cc │ │ │ ├── security_center_connection_impl.h │ │ │ ├── security_center_logging_decorator.cc │ │ │ ├── security_center_logging_decorator.h │ │ │ ├── security_center_metadata_decorator.cc │ │ │ ├── security_center_metadata_decorator.h │ │ │ ├── security_center_option_defaults.cc │ │ │ ├── security_center_option_defaults.h │ │ │ ├── security_center_retry_traits.h │ │ │ ├── security_center_sources.cc │ │ │ ├── security_center_stub.cc │ │ │ ├── security_center_stub.h │ │ │ ├── security_center_stub_factory.cc │ │ │ ├── security_center_stub_factory.h │ │ │ ├── security_center_tracing_connection.cc │ │ │ ├── security_center_tracing_connection.h │ │ │ ├── security_center_tracing_stub.cc │ │ │ └── security_center_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_security_center_connection.h │ │ ├── samples │ │ │ └── security_center_client_samples.cc │ │ ├── security_center_client.cc │ │ ├── security_center_client.h │ │ ├── security_center_connection.cc │ │ ├── security_center_connection.h │ │ ├── security_center_connection_idempotency_policy.cc │ │ ├── security_center_connection_idempotency_policy.h │ │ └── security_center_options.h │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── security_center_auth_decorator.cc │ │ ├── security_center_auth_decorator.h │ │ ├── security_center_connection_impl.cc │ │ ├── security_center_connection_impl.h │ │ ├── security_center_logging_decorator.cc │ │ ├── security_center_logging_decorator.h │ │ ├── security_center_metadata_decorator.cc │ │ ├── security_center_metadata_decorator.h │ │ ├── security_center_option_defaults.cc │ │ ├── security_center_option_defaults.h │ │ ├── security_center_retry_traits.h │ │ ├── security_center_sources.cc │ │ ├── security_center_stub.cc │ │ ├── security_center_stub.h │ │ ├── security_center_stub_factory.cc │ │ ├── security_center_stub_factory.h │ │ ├── security_center_tracing_connection.cc │ │ ├── security_center_tracing_connection.h │ │ ├── security_center_tracing_stub.cc │ │ └── security_center_tracing_stub.h │ │ ├── mocks │ │ └── mock_security_center_connection.h │ │ ├── samples │ │ └── security_center_client_samples.cc │ │ ├── security_center_client.cc │ │ ├── security_center_client.h │ │ ├── security_center_connection.cc │ │ ├── security_center_connection.h │ │ ├── security_center_connection_idempotency_policy.cc │ │ ├── security_center_connection_idempotency_policy.h │ │ └── security_center_options.h │ ├── securitycentermanagement │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── security_center_management_auth_decorator.cc │ │ ├── security_center_management_auth_decorator.h │ │ ├── security_center_management_connection_impl.cc │ │ ├── security_center_management_connection_impl.h │ │ ├── security_center_management_logging_decorator.cc │ │ ├── security_center_management_logging_decorator.h │ │ ├── security_center_management_metadata_decorator.cc │ │ ├── security_center_management_metadata_decorator.h │ │ ├── security_center_management_option_defaults.cc │ │ ├── security_center_management_option_defaults.h │ │ ├── security_center_management_retry_traits.h │ │ ├── security_center_management_sources.cc │ │ ├── security_center_management_stub.cc │ │ ├── security_center_management_stub.h │ │ ├── security_center_management_stub_factory.cc │ │ ├── security_center_management_stub_factory.h │ │ ├── security_center_management_tracing_connection.cc │ │ ├── security_center_management_tracing_connection.h │ │ ├── security_center_management_tracing_stub.cc │ │ └── security_center_management_tracing_stub.h │ │ ├── mocks │ │ └── mock_security_center_management_connection.h │ │ ├── samples │ │ └── security_center_management_client_samples.cc │ │ ├── security_center_management_client.cc │ │ ├── security_center_management_client.h │ │ ├── security_center_management_connection.cc │ │ ├── security_center_management_connection.h │ │ ├── security_center_management_connection_idempotency_policy.cc │ │ ├── security_center_management_connection_idempotency_policy.h │ │ └── security_center_management_options.h │ ├── servicecontrol │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ ├── mock_quota_controller_connection.h │ │ └── mock_service_controller_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── quota_controller_client.h │ ├── quota_controller_connection.h │ ├── quota_controller_connection_idempotency_policy.h │ ├── quota_controller_options.h │ ├── service_controller_client.h │ ├── service_controller_connection.h │ ├── service_controller_connection_idempotency_policy.h │ ├── service_controller_options.h │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── quota_controller_auth_decorator.cc │ │ │ ├── quota_controller_auth_decorator.h │ │ │ ├── quota_controller_connection_impl.cc │ │ │ ├── quota_controller_connection_impl.h │ │ │ ├── quota_controller_logging_decorator.cc │ │ │ ├── quota_controller_logging_decorator.h │ │ │ ├── quota_controller_metadata_decorator.cc │ │ │ ├── quota_controller_metadata_decorator.h │ │ │ ├── quota_controller_option_defaults.cc │ │ │ ├── quota_controller_option_defaults.h │ │ │ ├── quota_controller_retry_traits.h │ │ │ ├── quota_controller_sources.cc │ │ │ ├── quota_controller_stub.cc │ │ │ ├── quota_controller_stub.h │ │ │ ├── quota_controller_stub_factory.cc │ │ │ ├── quota_controller_stub_factory.h │ │ │ ├── quota_controller_tracing_connection.cc │ │ │ ├── quota_controller_tracing_connection.h │ │ │ ├── quota_controller_tracing_stub.cc │ │ │ ├── quota_controller_tracing_stub.h │ │ │ ├── service_controller_auth_decorator.cc │ │ │ ├── service_controller_auth_decorator.h │ │ │ ├── service_controller_connection_impl.cc │ │ │ ├── service_controller_connection_impl.h │ │ │ ├── service_controller_logging_decorator.cc │ │ │ ├── service_controller_logging_decorator.h │ │ │ ├── service_controller_metadata_decorator.cc │ │ │ ├── service_controller_metadata_decorator.h │ │ │ ├── service_controller_option_defaults.cc │ │ │ ├── service_controller_option_defaults.h │ │ │ ├── service_controller_retry_traits.h │ │ │ ├── service_controller_sources.cc │ │ │ ├── service_controller_stub.cc │ │ │ ├── service_controller_stub.h │ │ │ ├── service_controller_stub_factory.cc │ │ │ ├── service_controller_stub_factory.h │ │ │ ├── service_controller_tracing_connection.cc │ │ │ ├── service_controller_tracing_connection.h │ │ │ ├── service_controller_tracing_stub.cc │ │ │ └── service_controller_tracing_stub.h │ │ ├── mocks │ │ │ ├── mock_quota_controller_connection.h │ │ │ └── mock_service_controller_connection.h │ │ ├── quota_controller_client.cc │ │ ├── quota_controller_client.h │ │ ├── quota_controller_connection.cc │ │ ├── quota_controller_connection.h │ │ ├── quota_controller_connection_idempotency_policy.cc │ │ ├── quota_controller_connection_idempotency_policy.h │ │ ├── quota_controller_options.h │ │ ├── samples │ │ │ ├── quota_controller_client_samples.cc │ │ │ └── service_controller_client_samples.cc │ │ ├── service_controller_client.cc │ │ ├── service_controller_client.h │ │ ├── service_controller_connection.cc │ │ ├── service_controller_connection.h │ │ ├── service_controller_connection_idempotency_policy.cc │ │ ├── service_controller_connection_idempotency_policy.h │ │ └── service_controller_options.h │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── service_controller_auth_decorator.cc │ │ ├── service_controller_auth_decorator.h │ │ ├── service_controller_connection_impl.cc │ │ ├── service_controller_connection_impl.h │ │ ├── service_controller_logging_decorator.cc │ │ ├── service_controller_logging_decorator.h │ │ ├── service_controller_metadata_decorator.cc │ │ ├── service_controller_metadata_decorator.h │ │ ├── service_controller_option_defaults.cc │ │ ├── service_controller_option_defaults.h │ │ ├── service_controller_retry_traits.h │ │ ├── service_controller_sources.cc │ │ ├── service_controller_stub.cc │ │ ├── service_controller_stub.h │ │ ├── service_controller_stub_factory.cc │ │ ├── service_controller_stub_factory.h │ │ ├── service_controller_tracing_connection.cc │ │ ├── service_controller_tracing_connection.h │ │ ├── service_controller_tracing_stub.cc │ │ └── service_controller_tracing_stub.h │ │ ├── mocks │ │ └── mock_service_controller_connection.h │ │ ├── samples │ │ └── service_controller_client_samples.cc │ │ ├── service_controller_client.cc │ │ ├── service_controller_client.h │ │ ├── service_controller_connection.cc │ │ ├── service_controller_connection.h │ │ ├── service_controller_connection_idempotency_policy.cc │ │ ├── service_controller_connection_idempotency_policy.h │ │ └── service_controller_options.h │ ├── servicedirectory │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── lookup_client.h │ ├── lookup_connection.h │ ├── lookup_connection_idempotency_policy.h │ ├── lookup_options.h │ ├── mocks │ │ ├── mock_lookup_connection.h │ │ └── mock_registration_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── registration_client.h │ ├── registration_connection.h │ ├── registration_connection_idempotency_policy.h │ ├── registration_options.h │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── lookup_auth_decorator.cc │ │ ├── lookup_auth_decorator.h │ │ ├── lookup_connection_impl.cc │ │ ├── lookup_connection_impl.h │ │ ├── lookup_logging_decorator.cc │ │ ├── lookup_logging_decorator.h │ │ ├── lookup_metadata_decorator.cc │ │ ├── lookup_metadata_decorator.h │ │ ├── lookup_option_defaults.cc │ │ ├── lookup_option_defaults.h │ │ ├── lookup_retry_traits.h │ │ ├── lookup_sources.cc │ │ ├── lookup_stub.cc │ │ ├── lookup_stub.h │ │ ├── lookup_stub_factory.cc │ │ ├── lookup_stub_factory.h │ │ ├── lookup_tracing_connection.cc │ │ ├── lookup_tracing_connection.h │ │ ├── lookup_tracing_stub.cc │ │ ├── lookup_tracing_stub.h │ │ ├── registration_auth_decorator.cc │ │ ├── registration_auth_decorator.h │ │ ├── registration_connection_impl.cc │ │ ├── registration_connection_impl.h │ │ ├── registration_logging_decorator.cc │ │ ├── registration_logging_decorator.h │ │ ├── registration_metadata_decorator.cc │ │ ├── registration_metadata_decorator.h │ │ ├── registration_option_defaults.cc │ │ ├── registration_option_defaults.h │ │ ├── registration_retry_traits.h │ │ ├── registration_sources.cc │ │ ├── registration_stub.cc │ │ ├── registration_stub.h │ │ ├── registration_stub_factory.cc │ │ ├── registration_stub_factory.h │ │ ├── registration_tracing_connection.cc │ │ ├── registration_tracing_connection.h │ │ ├── registration_tracing_stub.cc │ │ └── registration_tracing_stub.h │ │ ├── lookup_client.cc │ │ ├── lookup_client.h │ │ ├── lookup_connection.cc │ │ ├── lookup_connection.h │ │ ├── lookup_connection_idempotency_policy.cc │ │ ├── lookup_connection_idempotency_policy.h │ │ ├── lookup_options.h │ │ ├── mocks │ │ ├── mock_lookup_connection.h │ │ └── mock_registration_connection.h │ │ ├── registration_client.cc │ │ ├── registration_client.h │ │ ├── registration_connection.cc │ │ ├── registration_connection.h │ │ ├── registration_connection_idempotency_policy.cc │ │ ├── registration_connection_idempotency_policy.h │ │ ├── registration_options.h │ │ └── samples │ │ ├── lookup_client_samples.cc │ │ └── registration_client_samples.cc │ ├── servicehealth │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── service_health_auth_decorator.cc │ │ ├── service_health_auth_decorator.h │ │ ├── service_health_connection_impl.cc │ │ ├── service_health_connection_impl.h │ │ ├── service_health_logging_decorator.cc │ │ ├── service_health_logging_decorator.h │ │ ├── service_health_metadata_decorator.cc │ │ ├── service_health_metadata_decorator.h │ │ ├── service_health_option_defaults.cc │ │ ├── service_health_option_defaults.h │ │ ├── service_health_retry_traits.h │ │ ├── service_health_sources.cc │ │ ├── service_health_stub.cc │ │ ├── service_health_stub.h │ │ ├── service_health_stub_factory.cc │ │ ├── service_health_stub_factory.h │ │ ├── service_health_tracing_connection.cc │ │ ├── service_health_tracing_connection.h │ │ ├── service_health_tracing_stub.cc │ │ └── service_health_tracing_stub.h │ │ ├── mocks │ │ └── mock_service_health_connection.h │ │ ├── samples │ │ └── service_health_client_samples.cc │ │ ├── service_health_client.cc │ │ ├── service_health_client.h │ │ ├── service_health_connection.cc │ │ ├── service_health_connection.h │ │ ├── service_health_connection_idempotency_policy.cc │ │ ├── service_health_connection_idempotency_policy.h │ │ └── service_health_options.h │ ├── servicemanagement │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_service_manager_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── service_manager_client.h │ ├── service_manager_connection.h │ ├── service_manager_connection_idempotency_policy.h │ ├── service_manager_options.h │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── service_manager_auth_decorator.cc │ │ ├── service_manager_auth_decorator.h │ │ ├── service_manager_connection_impl.cc │ │ ├── service_manager_connection_impl.h │ │ ├── service_manager_logging_decorator.cc │ │ ├── service_manager_logging_decorator.h │ │ ├── service_manager_metadata_decorator.cc │ │ ├── service_manager_metadata_decorator.h │ │ ├── service_manager_option_defaults.cc │ │ ├── service_manager_option_defaults.h │ │ ├── service_manager_retry_traits.h │ │ ├── service_manager_sources.cc │ │ ├── service_manager_stub.cc │ │ ├── service_manager_stub.h │ │ ├── service_manager_stub_factory.cc │ │ ├── service_manager_stub_factory.h │ │ ├── service_manager_tracing_connection.cc │ │ ├── service_manager_tracing_connection.h │ │ ├── service_manager_tracing_stub.cc │ │ └── service_manager_tracing_stub.h │ │ ├── mocks │ │ └── mock_service_manager_connection.h │ │ ├── samples │ │ └── service_manager_client_samples.cc │ │ ├── service_manager_client.cc │ │ ├── service_manager_client.h │ │ ├── service_manager_connection.cc │ │ ├── service_manager_connection.h │ │ ├── service_manager_connection_idempotency_policy.cc │ │ ├── service_manager_connection_idempotency_policy.h │ │ └── service_manager_options.h │ ├── serviceusage │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_service_usage_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── service_usage_client.h │ ├── service_usage_connection.h │ ├── service_usage_connection_idempotency_policy.h │ ├── service_usage_options.h │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── service_usage_auth_decorator.cc │ │ ├── service_usage_auth_decorator.h │ │ ├── service_usage_connection_impl.cc │ │ ├── service_usage_connection_impl.h │ │ ├── service_usage_logging_decorator.cc │ │ ├── service_usage_logging_decorator.h │ │ ├── service_usage_metadata_decorator.cc │ │ ├── service_usage_metadata_decorator.h │ │ ├── service_usage_option_defaults.cc │ │ ├── service_usage_option_defaults.h │ │ ├── service_usage_retry_traits.h │ │ ├── service_usage_sources.cc │ │ ├── service_usage_stub.cc │ │ ├── service_usage_stub.h │ │ ├── service_usage_stub_factory.cc │ │ ├── service_usage_stub_factory.h │ │ ├── service_usage_tracing_connection.cc │ │ ├── service_usage_tracing_connection.h │ │ ├── service_usage_tracing_stub.cc │ │ └── service_usage_tracing_stub.h │ │ ├── mocks │ │ └── mock_service_usage_connection.h │ │ ├── samples │ │ └── service_usage_client_samples.cc │ │ ├── service_usage_client.cc │ │ ├── service_usage_client.h │ │ ├── service_usage_connection.cc │ │ ├── service_usage_connection.h │ │ ├── service_usage_connection_idempotency_policy.cc │ │ ├── service_usage_connection_idempotency_policy.h │ │ └── service_usage_options.h │ ├── shell │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── cloud_shell_client.h │ ├── cloud_shell_connection.h │ ├── cloud_shell_connection_idempotency_policy.h │ ├── cloud_shell_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_cloud_shell_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── cloud_shell_client.cc │ │ ├── cloud_shell_client.h │ │ ├── cloud_shell_connection.cc │ │ ├── cloud_shell_connection.h │ │ ├── cloud_shell_connection_idempotency_policy.cc │ │ ├── cloud_shell_connection_idempotency_policy.h │ │ ├── cloud_shell_options.h │ │ ├── internal │ │ ├── cloud_shell_auth_decorator.cc │ │ ├── cloud_shell_auth_decorator.h │ │ ├── cloud_shell_connection_impl.cc │ │ ├── cloud_shell_connection_impl.h │ │ ├── cloud_shell_logging_decorator.cc │ │ ├── cloud_shell_logging_decorator.h │ │ ├── cloud_shell_metadata_decorator.cc │ │ ├── cloud_shell_metadata_decorator.h │ │ ├── cloud_shell_option_defaults.cc │ │ ├── cloud_shell_option_defaults.h │ │ ├── cloud_shell_retry_traits.h │ │ ├── cloud_shell_sources.cc │ │ ├── cloud_shell_stub.cc │ │ ├── cloud_shell_stub.h │ │ ├── cloud_shell_stub_factory.cc │ │ ├── cloud_shell_stub_factory.h │ │ ├── cloud_shell_tracing_connection.cc │ │ ├── cloud_shell_tracing_connection.h │ │ ├── cloud_shell_tracing_stub.cc │ │ └── cloud_shell_tracing_stub.h │ │ ├── mocks │ │ └── mock_cloud_shell_connection.h │ │ └── samples │ │ └── cloud_shell_client_samples.cc │ ├── spanner │ ├── .repo-metadata.json │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── admin │ │ ├── database_admin_client.cc │ │ ├── database_admin_client.h │ │ ├── database_admin_connection.cc │ │ ├── database_admin_connection.h │ │ ├── database_admin_connection_idempotency_policy.cc │ │ ├── database_admin_connection_idempotency_policy.h │ │ ├── database_admin_options.h │ │ ├── database_admin_rest_connection.cc │ │ ├── database_admin_rest_connection.h │ │ ├── instance_admin_client.cc │ │ ├── instance_admin_client.h │ │ ├── instance_admin_connection.cc │ │ ├── instance_admin_connection.h │ │ ├── instance_admin_connection_idempotency_policy.cc │ │ ├── instance_admin_connection_idempotency_policy.h │ │ ├── instance_admin_options.h │ │ ├── instance_admin_rest_connection.cc │ │ ├── instance_admin_rest_connection.h │ │ ├── integration_tests │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── backup_extra_integration_test.cc │ │ │ ├── backup_integration_test.cc │ │ │ ├── database_admin_integration_test.cc │ │ │ ├── instance_admin_integration_test.cc │ │ │ ├── instance_admin_rest_integration_test.cc │ │ │ ├── spanner_admin_integration_tests.bzl │ │ │ └── spanner_admin_integration_tests_rest.bzl │ │ ├── internal │ │ │ ├── database_admin_auth_decorator.cc │ │ │ ├── database_admin_auth_decorator.h │ │ │ ├── database_admin_connection_impl.cc │ │ │ ├── database_admin_connection_impl.h │ │ │ ├── database_admin_logging_decorator.cc │ │ │ ├── database_admin_logging_decorator.h │ │ │ ├── database_admin_metadata_decorator.cc │ │ │ ├── database_admin_metadata_decorator.h │ │ │ ├── database_admin_option_defaults.cc │ │ │ ├── database_admin_option_defaults.h │ │ │ ├── database_admin_rest_connection_impl.cc │ │ │ ├── database_admin_rest_connection_impl.h │ │ │ ├── database_admin_rest_logging_decorator.cc │ │ │ ├── database_admin_rest_logging_decorator.h │ │ │ ├── database_admin_rest_metadata_decorator.cc │ │ │ ├── database_admin_rest_metadata_decorator.h │ │ │ ├── database_admin_rest_stub.cc │ │ │ ├── database_admin_rest_stub.h │ │ │ ├── database_admin_rest_stub_factory.cc │ │ │ ├── database_admin_rest_stub_factory.h │ │ │ ├── database_admin_retry_traits.h │ │ │ ├── database_admin_sources.cc │ │ │ ├── database_admin_stub.cc │ │ │ ├── database_admin_stub.h │ │ │ ├── database_admin_stub_factory.cc │ │ │ ├── database_admin_stub_factory.h │ │ │ ├── database_admin_tracing_connection.cc │ │ │ ├── database_admin_tracing_connection.h │ │ │ ├── database_admin_tracing_stub.cc │ │ │ ├── database_admin_tracing_stub.h │ │ │ ├── instance_admin_auth_decorator.cc │ │ │ ├── instance_admin_auth_decorator.h │ │ │ ├── instance_admin_connection_impl.cc │ │ │ ├── instance_admin_connection_impl.h │ │ │ ├── instance_admin_logging_decorator.cc │ │ │ ├── instance_admin_logging_decorator.h │ │ │ ├── instance_admin_metadata_decorator.cc │ │ │ ├── instance_admin_metadata_decorator.h │ │ │ ├── instance_admin_option_defaults.cc │ │ │ ├── instance_admin_option_defaults.h │ │ │ ├── instance_admin_rest_connection_impl.cc │ │ │ ├── instance_admin_rest_connection_impl.h │ │ │ ├── instance_admin_rest_logging_decorator.cc │ │ │ ├── instance_admin_rest_logging_decorator.h │ │ │ ├── instance_admin_rest_metadata_decorator.cc │ │ │ ├── instance_admin_rest_metadata_decorator.h │ │ │ ├── instance_admin_rest_stub.cc │ │ │ ├── instance_admin_rest_stub.h │ │ │ ├── instance_admin_rest_stub_factory.cc │ │ │ ├── instance_admin_rest_stub_factory.h │ │ │ ├── instance_admin_retry_traits.h │ │ │ ├── instance_admin_sources.cc │ │ │ ├── instance_admin_stub.cc │ │ │ ├── instance_admin_stub.h │ │ │ ├── instance_admin_stub_factory.cc │ │ │ ├── instance_admin_stub_factory.h │ │ │ ├── instance_admin_tracing_connection.cc │ │ │ ├── instance_admin_tracing_connection.h │ │ │ ├── instance_admin_tracing_stub.cc │ │ │ └── instance_admin_tracing_stub.h │ │ ├── mocks │ │ │ ├── mock_database_admin_connection.h │ │ │ └── mock_instance_admin_connection.h │ │ ├── retry_traits.h │ │ └── samples │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── database_admin_client_samples.cc │ │ │ └── instance_admin_client_samples.cc │ ├── backoff_policy.h │ ├── backup.cc │ ├── backup.h │ ├── backup_test.cc │ ├── batch_dml_result.h │ ├── benchmarks │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── benchmarks_config.cc │ │ ├── benchmarks_config.h │ │ ├── benchmarks_config_test.cc │ │ ├── multiple_rows_cpu_benchmark.cc │ │ ├── single_row_throughput_benchmark.cc │ │ ├── single_row_throughput_plots.py │ │ ├── spanner_client_benchmark_programs.bzl │ │ └── spanner_client_benchmarks.bzl │ ├── bytes.cc │ ├── bytes.h │ ├── bytes_benchmark.cc │ ├── bytes_test.cc │ ├── ci │ │ ├── lib │ │ │ └── spanner_emulator.sh │ │ ├── run_integration_tests_emulator_bazel.sh │ │ └── run_integration_tests_emulator_cmake.sh │ ├── client.cc │ ├── client.h │ ├── client_options.cc │ ├── client_options.h │ ├── client_options_test.cc │ ├── client_test.cc │ ├── commit_options.cc │ ├── commit_options.h │ ├── commit_options_test.cc │ ├── commit_result.h │ ├── connection.cc │ ├── connection.h │ ├── connection_options.cc │ ├── connection_options.h │ ├── connection_options_test.cc │ ├── create_instance_request_builder.h │ ├── create_instance_request_builder_test.cc │ ├── database.cc │ ├── database.h │ ├── database_admin_client.cc │ ├── database_admin_client.h │ ├── database_admin_client_test.cc │ ├── database_admin_connection.cc │ ├── database_admin_connection.h │ ├── database_admin_connection_test.cc │ ├── database_test.cc │ ├── date.h │ ├── directed_read_replicas.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── error-handling.dox │ │ ├── override-retry-policies.dox │ │ ├── spanner-main.dox │ │ ├── spanner-mocking.dox │ │ └── spanner-options.dox │ ├── encryption_config.h │ ├── google_cloud_cpp_spanner.bzl │ ├── google_cloud_cpp_spanner_mocks.bzl │ ├── google_cloud_cpp_spanner_rest.bzl │ ├── iam_updater.h │ ├── instance.cc │ ├── instance.h │ ├── instance_admin_client.cc │ ├── instance_admin_client.h │ ├── instance_admin_client_test.cc │ ├── instance_admin_connection.cc │ ├── instance_admin_connection.h │ ├── instance_admin_connection_test.cc │ ├── instance_test.cc │ ├── integration_tests │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── backup_extra_integration_test.cc │ │ ├── backup_integration_test.cc │ │ ├── client_integration_test.cc │ │ ├── client_stress_test.cc │ │ ├── data_types_integration_test.cc │ │ ├── database_admin_integration_test.cc │ │ ├── instance_admin_integration_test.cc │ │ ├── session_pool_integration_test.cc │ │ ├── spanner_client_integration_tests.bzl │ │ └── spanner_client_session_mode_sensitive_integration_tests.bzl │ ├── internal │ │ ├── README.md │ │ ├── channel.h │ │ ├── connection_impl.cc │ │ ├── connection_impl.h │ │ ├── connection_impl_test.cc │ │ ├── database_admin_logging.cc │ │ ├── database_admin_logging.h │ │ ├── database_admin_logging_test.cc │ │ ├── database_admin_metadata.cc │ │ ├── database_admin_metadata.h │ │ ├── database_admin_metadata_test.cc │ │ ├── database_admin_stub.cc │ │ ├── database_admin_stub.h │ │ ├── defaults.cc │ │ ├── defaults.h │ │ ├── defaults_test.cc │ │ ├── instance_admin_logging.cc │ │ ├── instance_admin_logging.h │ │ ├── instance_admin_logging_test.cc │ │ ├── instance_admin_metadata.cc │ │ ├── instance_admin_metadata.h │ │ ├── instance_admin_metadata_test.cc │ │ ├── instance_admin_stub.cc │ │ ├── instance_admin_stub.h │ │ ├── logging_result_set_reader.cc │ │ ├── logging_result_set_reader.h │ │ ├── logging_result_set_reader_test.cc │ │ ├── merge_chunk.cc │ │ ├── merge_chunk.h │ │ ├── merge_chunk_benchmark.cc │ │ ├── merge_chunk_test.cc │ │ ├── partial_result_set_reader.h │ │ ├── partial_result_set_resume.cc │ │ ├── partial_result_set_resume.h │ │ ├── partial_result_set_resume_test.cc │ │ ├── partial_result_set_source.cc │ │ ├── partial_result_set_source.h │ │ ├── partial_result_set_source_test.cc │ │ ├── route_to_leader.cc │ │ ├── route_to_leader.h │ │ ├── route_to_leader_test.cc │ │ ├── session.cc │ │ ├── session.h │ │ ├── session_pool.cc │ │ ├── session_pool.h │ │ ├── session_pool_test.cc │ │ ├── spanner_auth_decorator.cc │ │ ├── spanner_auth_decorator.h │ │ ├── spanner_logging_decorator.cc │ │ ├── spanner_logging_decorator.h │ │ ├── spanner_metadata_decorator.cc │ │ ├── spanner_metadata_decorator.h │ │ ├── spanner_stub.cc │ │ ├── spanner_stub.h │ │ ├── spanner_stub_factory.cc │ │ ├── spanner_stub_factory.h │ │ ├── spanner_stub_factory_test.cc │ │ ├── spanner_tracing_stub.cc │ │ ├── spanner_tracing_stub.h │ │ ├── status_utils.cc │ │ ├── status_utils.h │ │ ├── status_utils_test.cc │ │ ├── transaction_impl.cc │ │ ├── transaction_impl.h │ │ ├── transaction_impl_test.cc │ │ ├── tuple_utils.h │ │ └── tuple_utils_test.cc │ ├── interval.cc │ ├── interval.h │ ├── interval_test.cc │ ├── json.h │ ├── json_test.cc │ ├── keys.cc │ ├── keys.h │ ├── keys_test.cc │ ├── lock_hint.h │ ├── mocks │ │ ├── mock_database_admin_connection.h │ │ ├── mock_instance_admin_connection.h │ │ ├── mock_spanner_connection.h │ │ └── row.h │ ├── mutations.cc │ ├── mutations.h │ ├── mutations_test.cc │ ├── numeric.cc │ ├── numeric.h │ ├── numeric_benchmark.cc │ ├── numeric_test.cc │ ├── oid.h │ ├── options.h │ ├── order_by.h │ ├── partition_options.cc │ ├── partition_options.h │ ├── partition_options_test.cc │ ├── partitioned_dml_result.h │ ├── polling_policy.h │ ├── proto_enum.h │ ├── proto_enum_test.cc │ ├── proto_message.h │ ├── proto_message_test.cc │ ├── query_options.cc │ ├── query_options.h │ ├── query_options_test.cc │ ├── query_partition.cc │ ├── query_partition.h │ ├── query_partition_test.cc │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── read_options.cc │ ├── read_options.h │ ├── read_options_test.cc │ ├── read_partition.cc │ ├── read_partition.h │ ├── read_partition_test.cc │ ├── request_priority.h │ ├── results.cc │ ├── results.h │ ├── results_test.cc │ ├── retry_policy.h │ ├── retry_policy_test.cc │ ├── row.cc │ ├── row.h │ ├── row_benchmark.cc │ ├── row_test.cc │ ├── samples │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── client_samples.cc │ │ ├── graph_samples.cc │ │ ├── mock_execute_query.cc │ │ ├── postgresql_samples.cc │ │ ├── samples.cc │ │ ├── spanner_client_integration_samples.bzl │ │ └── spanner_client_unit_samples.bzl │ ├── session_pool_options.h │ ├── session_pool_options_test.cc │ ├── spanner_client_benchmarks.bzl │ ├── spanner_client_testing.bzl │ ├── spanner_client_unit_tests.bzl │ ├── spanner_version_test.cc │ ├── sql_statement.cc │ ├── sql_statement.h │ ├── sql_statement_test.cc │ ├── testing │ │ ├── cleanup_stale_databases.cc │ │ ├── cleanup_stale_databases.h │ │ ├── cleanup_stale_databases_test.cc │ │ ├── cleanup_stale_instances.cc │ │ ├── cleanup_stale_instances.h │ │ ├── database_integration_test.cc │ │ ├── database_integration_test.h │ │ ├── debug_log.cc │ │ ├── debug_log.h │ │ ├── instance_location.cc │ │ ├── instance_location.h │ │ ├── matchers.h │ │ ├── mock_database_admin_stub.h │ │ ├── mock_instance_admin_stub.h │ │ ├── mock_partial_result_set_reader.h │ │ ├── mock_spanner_stub.h │ │ ├── pick_instance_config.cc │ │ ├── pick_instance_config.h │ │ ├── pick_random_instance.cc │ │ ├── pick_random_instance.h │ │ ├── random_backup_name.cc │ │ ├── random_backup_name.h │ │ ├── random_database_name.cc │ │ ├── random_database_name.h │ │ ├── random_database_name_test.cc │ │ ├── random_instance_name.cc │ │ ├── random_instance_name.h │ │ ├── status_utils.cc │ │ └── status_utils.h │ ├── timestamp.cc │ ├── timestamp.h │ ├── timestamp_test.cc │ ├── tracing_options.h │ ├── transaction.cc │ ├── transaction.h │ ├── transaction_test.cc │ ├── update_instance_request_builder.h │ ├── update_instance_request_builder_test.cc │ ├── uuid.cc │ ├── uuid.h │ ├── uuid_test.cc │ ├── value.cc │ ├── value.h │ ├── value_test.cc │ ├── version.cc │ ├── version.h │ └── version_info.h │ ├── speech │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_speech_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── speech_client.h │ ├── speech_connection.h │ ├── speech_connection_idempotency_policy.h │ ├── speech_options.h │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── adaptation_client.cc │ │ ├── adaptation_client.h │ │ ├── adaptation_connection.cc │ │ ├── adaptation_connection.h │ │ ├── adaptation_connection_idempotency_policy.cc │ │ ├── adaptation_connection_idempotency_policy.h │ │ ├── adaptation_options.h │ │ ├── internal │ │ │ ├── adaptation_auth_decorator.cc │ │ │ ├── adaptation_auth_decorator.h │ │ │ ├── adaptation_connection_impl.cc │ │ │ ├── adaptation_connection_impl.h │ │ │ ├── adaptation_logging_decorator.cc │ │ │ ├── adaptation_logging_decorator.h │ │ │ ├── adaptation_metadata_decorator.cc │ │ │ ├── adaptation_metadata_decorator.h │ │ │ ├── adaptation_option_defaults.cc │ │ │ ├── adaptation_option_defaults.h │ │ │ ├── adaptation_retry_traits.h │ │ │ ├── adaptation_sources.cc │ │ │ ├── adaptation_stub.cc │ │ │ ├── adaptation_stub.h │ │ │ ├── adaptation_stub_factory.cc │ │ │ ├── adaptation_stub_factory.h │ │ │ ├── adaptation_tracing_connection.cc │ │ │ ├── adaptation_tracing_connection.h │ │ │ ├── adaptation_tracing_stub.cc │ │ │ ├── adaptation_tracing_stub.h │ │ │ ├── speech_auth_decorator.cc │ │ │ ├── speech_auth_decorator.h │ │ │ ├── speech_connection_impl.cc │ │ │ ├── speech_connection_impl.h │ │ │ ├── speech_logging_decorator.cc │ │ │ ├── speech_logging_decorator.h │ │ │ ├── speech_metadata_decorator.cc │ │ │ ├── speech_metadata_decorator.h │ │ │ ├── speech_option_defaults.cc │ │ │ ├── speech_option_defaults.h │ │ │ ├── speech_retry_traits.h │ │ │ ├── speech_sources.cc │ │ │ ├── speech_stub.cc │ │ │ ├── speech_stub.h │ │ │ ├── speech_stub_factory.cc │ │ │ ├── speech_stub_factory.h │ │ │ ├── speech_tracing_connection.cc │ │ │ ├── speech_tracing_connection.h │ │ │ ├── speech_tracing_stub.cc │ │ │ └── speech_tracing_stub.h │ │ ├── mocks │ │ │ ├── mock_adaptation_connection.h │ │ │ └── mock_speech_connection.h │ │ ├── samples │ │ │ ├── adaptation_client_samples.cc │ │ │ └── speech_client_samples.cc │ │ ├── speech_client.cc │ │ ├── speech_client.h │ │ ├── speech_connection.cc │ │ ├── speech_connection.h │ │ ├── speech_connection_idempotency_policy.cc │ │ ├── speech_connection_idempotency_policy.h │ │ └── speech_options.h │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── speech_auth_decorator.cc │ │ ├── speech_auth_decorator.h │ │ ├── speech_connection_impl.cc │ │ ├── speech_connection_impl.h │ │ ├── speech_logging_decorator.cc │ │ ├── speech_logging_decorator.h │ │ ├── speech_metadata_decorator.cc │ │ ├── speech_metadata_decorator.h │ │ ├── speech_option_defaults.cc │ │ ├── speech_option_defaults.h │ │ ├── speech_retry_traits.h │ │ ├── speech_sources.cc │ │ ├── speech_stub.cc │ │ ├── speech_stub.h │ │ ├── speech_stub_factory.cc │ │ ├── speech_stub_factory.h │ │ ├── speech_tracing_connection.cc │ │ ├── speech_tracing_connection.h │ │ ├── speech_tracing_stub.cc │ │ └── speech_tracing_stub.h │ │ ├── mocks │ │ └── mock_speech_connection.h │ │ ├── samples │ │ └── speech_client_samples.cc │ │ ├── speech_client.cc │ │ ├── speech_client.h │ │ ├── speech_connection.cc │ │ ├── speech_connection.h │ │ ├── speech_connection_idempotency_policy.cc │ │ ├── speech_connection_idempotency_policy.h │ │ └── speech_options.h │ ├── sql │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── integration_tests │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ └── sql_integration_test.cc │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── sql_available_database_versions_option_defaults.cc │ │ ├── sql_available_database_versions_option_defaults.h │ │ ├── sql_available_database_versions_rest_connection_impl.cc │ │ ├── sql_available_database_versions_rest_connection_impl.h │ │ ├── sql_available_database_versions_rest_logging_decorator.cc │ │ ├── sql_available_database_versions_rest_logging_decorator.h │ │ ├── sql_available_database_versions_rest_metadata_decorator.cc │ │ ├── sql_available_database_versions_rest_metadata_decorator.h │ │ ├── sql_available_database_versions_rest_stub.cc │ │ ├── sql_available_database_versions_rest_stub.h │ │ ├── sql_available_database_versions_rest_stub_factory.cc │ │ ├── sql_available_database_versions_rest_stub_factory.h │ │ ├── sql_available_database_versions_retry_traits.h │ │ ├── sql_available_database_versions_sources.cc │ │ ├── sql_available_database_versions_tracing_connection.cc │ │ ├── sql_available_database_versions_tracing_connection.h │ │ ├── sql_backup_runs_option_defaults.cc │ │ ├── sql_backup_runs_option_defaults.h │ │ ├── sql_backup_runs_rest_connection_impl.cc │ │ ├── sql_backup_runs_rest_connection_impl.h │ │ ├── sql_backup_runs_rest_logging_decorator.cc │ │ ├── sql_backup_runs_rest_logging_decorator.h │ │ ├── sql_backup_runs_rest_metadata_decorator.cc │ │ ├── sql_backup_runs_rest_metadata_decorator.h │ │ ├── sql_backup_runs_rest_stub.cc │ │ ├── sql_backup_runs_rest_stub.h │ │ ├── sql_backup_runs_rest_stub_factory.cc │ │ ├── sql_backup_runs_rest_stub_factory.h │ │ ├── sql_backup_runs_retry_traits.h │ │ ├── sql_backup_runs_sources.cc │ │ ├── sql_backup_runs_tracing_connection.cc │ │ ├── sql_backup_runs_tracing_connection.h │ │ ├── sql_connect_option_defaults.cc │ │ ├── sql_connect_option_defaults.h │ │ ├── sql_connect_rest_connection_impl.cc │ │ ├── sql_connect_rest_connection_impl.h │ │ ├── sql_connect_rest_logging_decorator.cc │ │ ├── sql_connect_rest_logging_decorator.h │ │ ├── sql_connect_rest_metadata_decorator.cc │ │ ├── sql_connect_rest_metadata_decorator.h │ │ ├── sql_connect_rest_stub.cc │ │ ├── sql_connect_rest_stub.h │ │ ├── sql_connect_rest_stub_factory.cc │ │ ├── sql_connect_rest_stub_factory.h │ │ ├── sql_connect_retry_traits.h │ │ ├── sql_connect_sources.cc │ │ ├── sql_connect_tracing_connection.cc │ │ ├── sql_connect_tracing_connection.h │ │ ├── sql_databases_option_defaults.cc │ │ ├── sql_databases_option_defaults.h │ │ ├── sql_databases_rest_connection_impl.cc │ │ ├── sql_databases_rest_connection_impl.h │ │ ├── sql_databases_rest_logging_decorator.cc │ │ ├── sql_databases_rest_logging_decorator.h │ │ ├── sql_databases_rest_metadata_decorator.cc │ │ ├── sql_databases_rest_metadata_decorator.h │ │ ├── sql_databases_rest_stub.cc │ │ ├── sql_databases_rest_stub.h │ │ ├── sql_databases_rest_stub_factory.cc │ │ ├── sql_databases_rest_stub_factory.h │ │ ├── sql_databases_retry_traits.h │ │ ├── sql_databases_sources.cc │ │ ├── sql_databases_tracing_connection.cc │ │ ├── sql_databases_tracing_connection.h │ │ ├── sql_events_option_defaults.cc │ │ ├── sql_events_option_defaults.h │ │ ├── sql_events_rest_connection_impl.cc │ │ ├── sql_events_rest_connection_impl.h │ │ ├── sql_events_rest_logging_decorator.cc │ │ ├── sql_events_rest_logging_decorator.h │ │ ├── sql_events_rest_metadata_decorator.cc │ │ ├── sql_events_rest_metadata_decorator.h │ │ ├── sql_events_rest_stub.cc │ │ ├── sql_events_rest_stub.h │ │ ├── sql_events_rest_stub_factory.cc │ │ ├── sql_events_rest_stub_factory.h │ │ ├── sql_events_retry_traits.h │ │ ├── sql_events_sources.cc │ │ ├── sql_events_tracing_connection.cc │ │ ├── sql_events_tracing_connection.h │ │ ├── sql_flags_option_defaults.cc │ │ ├── sql_flags_option_defaults.h │ │ ├── sql_flags_rest_connection_impl.cc │ │ ├── sql_flags_rest_connection_impl.h │ │ ├── sql_flags_rest_logging_decorator.cc │ │ ├── sql_flags_rest_logging_decorator.h │ │ ├── sql_flags_rest_metadata_decorator.cc │ │ ├── sql_flags_rest_metadata_decorator.h │ │ ├── sql_flags_rest_stub.cc │ │ ├── sql_flags_rest_stub.h │ │ ├── sql_flags_rest_stub_factory.cc │ │ ├── sql_flags_rest_stub_factory.h │ │ ├── sql_flags_retry_traits.h │ │ ├── sql_flags_sources.cc │ │ ├── sql_flags_tracing_connection.cc │ │ ├── sql_flags_tracing_connection.h │ │ ├── sql_iam_policies_option_defaults.cc │ │ ├── sql_iam_policies_option_defaults.h │ │ ├── sql_iam_policies_rest_connection_impl.cc │ │ ├── sql_iam_policies_rest_connection_impl.h │ │ ├── sql_iam_policies_rest_logging_decorator.cc │ │ ├── sql_iam_policies_rest_logging_decorator.h │ │ ├── sql_iam_policies_rest_metadata_decorator.cc │ │ ├── sql_iam_policies_rest_metadata_decorator.h │ │ ├── sql_iam_policies_rest_stub.cc │ │ ├── sql_iam_policies_rest_stub.h │ │ ├── sql_iam_policies_rest_stub_factory.cc │ │ ├── sql_iam_policies_rest_stub_factory.h │ │ ├── sql_iam_policies_retry_traits.h │ │ ├── sql_iam_policies_sources.cc │ │ ├── sql_iam_policies_tracing_connection.cc │ │ ├── sql_iam_policies_tracing_connection.h │ │ ├── sql_instance_names_option_defaults.cc │ │ ├── sql_instance_names_option_defaults.h │ │ ├── sql_instance_names_rest_connection_impl.cc │ │ ├── sql_instance_names_rest_connection_impl.h │ │ ├── sql_instance_names_rest_logging_decorator.cc │ │ ├── sql_instance_names_rest_logging_decorator.h │ │ ├── sql_instance_names_rest_metadata_decorator.cc │ │ ├── sql_instance_names_rest_metadata_decorator.h │ │ ├── sql_instance_names_rest_stub.cc │ │ ├── sql_instance_names_rest_stub.h │ │ ├── sql_instance_names_rest_stub_factory.cc │ │ ├── sql_instance_names_rest_stub_factory.h │ │ ├── sql_instance_names_retry_traits.h │ │ ├── sql_instance_names_sources.cc │ │ ├── sql_instance_names_tracing_connection.cc │ │ ├── sql_instance_names_tracing_connection.h │ │ ├── sql_instances_option_defaults.cc │ │ ├── sql_instances_option_defaults.h │ │ ├── sql_instances_rest_connection_impl.cc │ │ ├── sql_instances_rest_connection_impl.h │ │ ├── sql_instances_rest_logging_decorator.cc │ │ ├── sql_instances_rest_logging_decorator.h │ │ ├── sql_instances_rest_metadata_decorator.cc │ │ ├── sql_instances_rest_metadata_decorator.h │ │ ├── sql_instances_rest_stub.cc │ │ ├── sql_instances_rest_stub.h │ │ ├── sql_instances_rest_stub_factory.cc │ │ ├── sql_instances_rest_stub_factory.h │ │ ├── sql_instances_retry_traits.h │ │ ├── sql_instances_sources.cc │ │ ├── sql_instances_tracing_connection.cc │ │ ├── sql_instances_tracing_connection.h │ │ ├── sql_operations_option_defaults.cc │ │ ├── sql_operations_option_defaults.h │ │ ├── sql_operations_rest_connection_impl.cc │ │ ├── sql_operations_rest_connection_impl.h │ │ ├── sql_operations_rest_logging_decorator.cc │ │ ├── sql_operations_rest_logging_decorator.h │ │ ├── sql_operations_rest_metadata_decorator.cc │ │ ├── sql_operations_rest_metadata_decorator.h │ │ ├── sql_operations_rest_stub.cc │ │ ├── sql_operations_rest_stub.h │ │ ├── sql_operations_rest_stub_factory.cc │ │ ├── sql_operations_rest_stub_factory.h │ │ ├── sql_operations_retry_traits.h │ │ ├── sql_operations_sources.cc │ │ ├── sql_operations_tracing_connection.cc │ │ ├── sql_operations_tracing_connection.h │ │ ├── sql_regions_option_defaults.cc │ │ ├── sql_regions_option_defaults.h │ │ ├── sql_regions_rest_connection_impl.cc │ │ ├── sql_regions_rest_connection_impl.h │ │ ├── sql_regions_rest_logging_decorator.cc │ │ ├── sql_regions_rest_logging_decorator.h │ │ ├── sql_regions_rest_metadata_decorator.cc │ │ ├── sql_regions_rest_metadata_decorator.h │ │ ├── sql_regions_rest_stub.cc │ │ ├── sql_regions_rest_stub.h │ │ ├── sql_regions_rest_stub_factory.cc │ │ ├── sql_regions_rest_stub_factory.h │ │ ├── sql_regions_retry_traits.h │ │ ├── sql_regions_sources.cc │ │ ├── sql_regions_tracing_connection.cc │ │ ├── sql_regions_tracing_connection.h │ │ ├── sql_ssl_certs_option_defaults.cc │ │ ├── sql_ssl_certs_option_defaults.h │ │ ├── sql_ssl_certs_rest_connection_impl.cc │ │ ├── sql_ssl_certs_rest_connection_impl.h │ │ ├── sql_ssl_certs_rest_logging_decorator.cc │ │ ├── sql_ssl_certs_rest_logging_decorator.h │ │ ├── sql_ssl_certs_rest_metadata_decorator.cc │ │ ├── sql_ssl_certs_rest_metadata_decorator.h │ │ ├── sql_ssl_certs_rest_stub.cc │ │ ├── sql_ssl_certs_rest_stub.h │ │ ├── sql_ssl_certs_rest_stub_factory.cc │ │ ├── sql_ssl_certs_rest_stub_factory.h │ │ ├── sql_ssl_certs_retry_traits.h │ │ ├── sql_ssl_certs_sources.cc │ │ ├── sql_ssl_certs_tracing_connection.cc │ │ ├── sql_ssl_certs_tracing_connection.h │ │ ├── sql_tiers_option_defaults.cc │ │ ├── sql_tiers_option_defaults.h │ │ ├── sql_tiers_rest_connection_impl.cc │ │ ├── sql_tiers_rest_connection_impl.h │ │ ├── sql_tiers_rest_logging_decorator.cc │ │ ├── sql_tiers_rest_logging_decorator.h │ │ ├── sql_tiers_rest_metadata_decorator.cc │ │ ├── sql_tiers_rest_metadata_decorator.h │ │ ├── sql_tiers_rest_stub.cc │ │ ├── sql_tiers_rest_stub.h │ │ ├── sql_tiers_rest_stub_factory.cc │ │ ├── sql_tiers_rest_stub_factory.h │ │ ├── sql_tiers_retry_traits.h │ │ ├── sql_tiers_sources.cc │ │ ├── sql_tiers_tracing_connection.cc │ │ ├── sql_tiers_tracing_connection.h │ │ ├── sql_users_option_defaults.cc │ │ ├── sql_users_option_defaults.h │ │ ├── sql_users_rest_connection_impl.cc │ │ ├── sql_users_rest_connection_impl.h │ │ ├── sql_users_rest_logging_decorator.cc │ │ ├── sql_users_rest_logging_decorator.h │ │ ├── sql_users_rest_metadata_decorator.cc │ │ ├── sql_users_rest_metadata_decorator.h │ │ ├── sql_users_rest_stub.cc │ │ ├── sql_users_rest_stub.h │ │ ├── sql_users_rest_stub_factory.cc │ │ ├── sql_users_rest_stub_factory.h │ │ ├── sql_users_retry_traits.h │ │ ├── sql_users_sources.cc │ │ ├── sql_users_tracing_connection.cc │ │ └── sql_users_tracing_connection.h │ │ ├── mocks │ │ ├── mock_sql_available_database_versions_connection.h │ │ ├── mock_sql_backup_runs_connection.h │ │ ├── mock_sql_connect_connection.h │ │ ├── mock_sql_databases_connection.h │ │ ├── mock_sql_events_connection.h │ │ ├── mock_sql_flags_connection.h │ │ ├── mock_sql_iam_policies_connection.h │ │ ├── mock_sql_instance_names_connection.h │ │ ├── mock_sql_instances_connection.h │ │ ├── mock_sql_operations_connection.h │ │ ├── mock_sql_regions_connection.h │ │ ├── mock_sql_ssl_certs_connection.h │ │ ├── mock_sql_tiers_connection.h │ │ └── mock_sql_users_connection.h │ │ ├── samples │ │ ├── sql_available_database_versions_client_samples.cc │ │ ├── sql_backup_runs_client_samples.cc │ │ ├── sql_connect_client_samples.cc │ │ ├── sql_databases_client_samples.cc │ │ ├── sql_events_client_samples.cc │ │ ├── sql_flags_client_samples.cc │ │ ├── sql_iam_policies_client_samples.cc │ │ ├── sql_instance_names_client_samples.cc │ │ ├── sql_instances_client_samples.cc │ │ ├── sql_operations_client_samples.cc │ │ ├── sql_regions_client_samples.cc │ │ ├── sql_ssl_certs_client_samples.cc │ │ ├── sql_tiers_client_samples.cc │ │ └── sql_users_client_samples.cc │ │ ├── sql_available_database_versions_client.cc │ │ ├── sql_available_database_versions_client.h │ │ ├── sql_available_database_versions_connection.cc │ │ ├── sql_available_database_versions_connection.h │ │ ├── sql_available_database_versions_connection_idempotency_policy.cc │ │ ├── sql_available_database_versions_connection_idempotency_policy.h │ │ ├── sql_available_database_versions_options.h │ │ ├── sql_available_database_versions_rest_connection.cc │ │ ├── sql_available_database_versions_rest_connection.h │ │ ├── sql_backup_runs_client.cc │ │ ├── sql_backup_runs_client.h │ │ ├── sql_backup_runs_connection.cc │ │ ├── sql_backup_runs_connection.h │ │ ├── sql_backup_runs_connection_idempotency_policy.cc │ │ ├── sql_backup_runs_connection_idempotency_policy.h │ │ ├── sql_backup_runs_options.h │ │ ├── sql_backup_runs_rest_connection.cc │ │ ├── sql_backup_runs_rest_connection.h │ │ ├── sql_connect_client.cc │ │ ├── sql_connect_client.h │ │ ├── sql_connect_connection.cc │ │ ├── sql_connect_connection.h │ │ ├── sql_connect_connection_idempotency_policy.cc │ │ ├── sql_connect_connection_idempotency_policy.h │ │ ├── sql_connect_options.h │ │ ├── sql_connect_rest_connection.cc │ │ ├── sql_connect_rest_connection.h │ │ ├── sql_databases_client.cc │ │ ├── sql_databases_client.h │ │ ├── sql_databases_connection.cc │ │ ├── sql_databases_connection.h │ │ ├── sql_databases_connection_idempotency_policy.cc │ │ ├── sql_databases_connection_idempotency_policy.h │ │ ├── sql_databases_options.h │ │ ├── sql_databases_rest_connection.cc │ │ ├── sql_databases_rest_connection.h │ │ ├── sql_events_client.cc │ │ ├── sql_events_client.h │ │ ├── sql_events_connection.cc │ │ ├── sql_events_connection.h │ │ ├── sql_events_connection_idempotency_policy.cc │ │ ├── sql_events_connection_idempotency_policy.h │ │ ├── sql_events_options.h │ │ ├── sql_events_rest_connection.cc │ │ ├── sql_events_rest_connection.h │ │ ├── sql_flags_client.cc │ │ ├── sql_flags_client.h │ │ ├── sql_flags_connection.cc │ │ ├── sql_flags_connection.h │ │ ├── sql_flags_connection_idempotency_policy.cc │ │ ├── sql_flags_connection_idempotency_policy.h │ │ ├── sql_flags_options.h │ │ ├── sql_flags_rest_connection.cc │ │ ├── sql_flags_rest_connection.h │ │ ├── sql_iam_policies_client.cc │ │ ├── sql_iam_policies_client.h │ │ ├── sql_iam_policies_connection.cc │ │ ├── sql_iam_policies_connection.h │ │ ├── sql_iam_policies_connection_idempotency_policy.cc │ │ ├── sql_iam_policies_connection_idempotency_policy.h │ │ ├── sql_iam_policies_options.h │ │ ├── sql_iam_policies_rest_connection.cc │ │ ├── sql_iam_policies_rest_connection.h │ │ ├── sql_instance_names_client.cc │ │ ├── sql_instance_names_client.h │ │ ├── sql_instance_names_connection.cc │ │ ├── sql_instance_names_connection.h │ │ ├── sql_instance_names_connection_idempotency_policy.cc │ │ ├── sql_instance_names_connection_idempotency_policy.h │ │ ├── sql_instance_names_options.h │ │ ├── sql_instance_names_rest_connection.cc │ │ ├── sql_instance_names_rest_connection.h │ │ ├── sql_instances_client.cc │ │ ├── sql_instances_client.h │ │ ├── sql_instances_connection.cc │ │ ├── sql_instances_connection.h │ │ ├── sql_instances_connection_idempotency_policy.cc │ │ ├── sql_instances_connection_idempotency_policy.h │ │ ├── sql_instances_options.h │ │ ├── sql_instances_rest_connection.cc │ │ ├── sql_instances_rest_connection.h │ │ ├── sql_operations_client.cc │ │ ├── sql_operations_client.h │ │ ├── sql_operations_connection.cc │ │ ├── sql_operations_connection.h │ │ ├── sql_operations_connection_idempotency_policy.cc │ │ ├── sql_operations_connection_idempotency_policy.h │ │ ├── sql_operations_options.h │ │ ├── sql_operations_rest_connection.cc │ │ ├── sql_operations_rest_connection.h │ │ ├── sql_regions_client.cc │ │ ├── sql_regions_client.h │ │ ├── sql_regions_connection.cc │ │ ├── sql_regions_connection.h │ │ ├── sql_regions_connection_idempotency_policy.cc │ │ ├── sql_regions_connection_idempotency_policy.h │ │ ├── sql_regions_options.h │ │ ├── sql_regions_rest_connection.cc │ │ ├── sql_regions_rest_connection.h │ │ ├── sql_ssl_certs_client.cc │ │ ├── sql_ssl_certs_client.h │ │ ├── sql_ssl_certs_connection.cc │ │ ├── sql_ssl_certs_connection.h │ │ ├── sql_ssl_certs_connection_idempotency_policy.cc │ │ ├── sql_ssl_certs_connection_idempotency_policy.h │ │ ├── sql_ssl_certs_options.h │ │ ├── sql_ssl_certs_rest_connection.cc │ │ ├── sql_ssl_certs_rest_connection.h │ │ ├── sql_tiers_client.cc │ │ ├── sql_tiers_client.h │ │ ├── sql_tiers_connection.cc │ │ ├── sql_tiers_connection.h │ │ ├── sql_tiers_connection_idempotency_policy.cc │ │ ├── sql_tiers_connection_idempotency_policy.h │ │ ├── sql_tiers_options.h │ │ ├── sql_tiers_rest_connection.cc │ │ ├── sql_tiers_rest_connection.h │ │ ├── sql_users_client.cc │ │ ├── sql_users_client.h │ │ ├── sql_users_connection.cc │ │ ├── sql_users_connection.h │ │ ├── sql_users_connection_idempotency_policy.cc │ │ ├── sql_users_connection_idempotency_policy.h │ │ ├── sql_users_options.h │ │ ├── sql_users_rest_connection.cc │ │ └── sql_users_rest_connection.h │ ├── ssl_certificate.h │ ├── status.cc │ ├── status.h │ ├── status_or.h │ ├── status_or_test.cc │ ├── status_test.cc │ ├── storage │ ├── .clang-tidy │ ├── .repo-metadata.json │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── async │ │ ├── bucket_name.cc │ │ ├── bucket_name.h │ │ ├── bucket_name_test.cc │ │ ├── client.cc │ │ ├── client.h │ │ ├── client_test.cc │ │ ├── connection.h │ │ ├── idempotency_policy.cc │ │ ├── idempotency_policy.h │ │ ├── idempotency_policy_test.cc │ │ ├── object_descriptor.cc │ │ ├── object_descriptor.h │ │ ├── object_descriptor_connection.h │ │ ├── object_descriptor_test.cc │ │ ├── object_responses.cc │ │ ├── object_responses.h │ │ ├── options.h │ │ ├── read_all.cc │ │ ├── read_all.h │ │ ├── read_all_test.cc │ │ ├── reader.cc │ │ ├── reader.h │ │ ├── reader_connection.h │ │ ├── reader_test.cc │ │ ├── resume_policy.cc │ │ ├── resume_policy.h │ │ ├── resume_policy_test.cc │ │ ├── retry_policy.h │ │ ├── retry_policy_test.cc │ │ ├── rewriter.cc │ │ ├── rewriter.h │ │ ├── rewriter_connection.h │ │ ├── rewriter_test.cc │ │ ├── token.h │ │ ├── token_test.cc │ │ ├── write_payload.h │ │ ├── writer.cc │ │ ├── writer.h │ │ ├── writer_connection.h │ │ └── writer_test.cc │ ├── auto_finalize.cc │ ├── auto_finalize.h │ ├── auto_finalize_test.cc │ ├── benchmarks │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── aggregate_download_throughput_benchmark.cc │ │ ├── aggregate_download_throughput_options.cc │ │ ├── aggregate_download_throughput_options.h │ │ ├── aggregate_download_throughput_options_test.cc │ │ ├── aggregate_upload_throughput_benchmark.cc │ │ ├── aggregate_upload_throughput_options.cc │ │ ├── aggregate_upload_throughput_options.h │ │ ├── aggregate_upload_throughput_options_test.cc │ │ ├── async_throughput_benchmark.cc │ │ ├── benchmark_make_random_test.cc │ │ ├── benchmark_parser_test.cc │ │ ├── benchmark_utils.cc │ │ ├── benchmark_utils.h │ │ ├── bounded_queue.h │ │ ├── create_dataset.cc │ │ ├── create_dataset_options.cc │ │ ├── create_dataset_options.h │ │ ├── create_dataset_options_test.cc │ │ ├── storage_benchmark_programs.bzl │ │ ├── storage_benchmarks.bzl │ │ ├── storage_benchmarks_unit_tests.bzl │ │ ├── storage_file_transfer_benchmark.cc │ │ ├── storage_parallel_uploads_benchmark.cc │ │ ├── storage_throughput_vs_cpu_benchmark.cc │ │ ├── throughput_experiment.cc │ │ ├── throughput_experiment.h │ │ ├── throughput_experiment_test.cc │ │ ├── throughput_options.cc │ │ ├── throughput_options.h │ │ ├── throughput_options_test.cc │ │ ├── throughput_result.cc │ │ ├── throughput_result.h │ │ └── throughput_result_test.cc │ ├── bucket_access_control.cc │ ├── bucket_access_control.h │ ├── bucket_access_control_test.cc │ ├── bucket_autoclass.cc │ ├── bucket_autoclass.h │ ├── bucket_billing.h │ ├── bucket_cors_entry.cc │ ├── bucket_cors_entry.h │ ├── bucket_cors_entry_test.cc │ ├── bucket_custom_placement_config.cc │ ├── bucket_custom_placement_config.h │ ├── bucket_encryption.h │ ├── bucket_hierarchical_namespace.cc │ ├── bucket_hierarchical_namespace.h │ ├── bucket_iam_configuration.cc │ ├── bucket_iam_configuration.h │ ├── bucket_iam_configuration_test.cc │ ├── bucket_lifecycle.h │ ├── bucket_logging.cc │ ├── bucket_logging.h │ ├── bucket_metadata.cc │ ├── bucket_metadata.h │ ├── bucket_metadata_test.cc │ ├── bucket_object_retention.cc │ ├── bucket_object_retention.h │ ├── bucket_object_retention_test.cc │ ├── bucket_retention_policy.cc │ ├── bucket_retention_policy.h │ ├── bucket_rpo.h │ ├── bucket_soft_delete_policy.cc │ ├── bucket_soft_delete_policy.h │ ├── bucket_soft_delete_policy_test.cc │ ├── bucket_versioning.h │ ├── bucket_website.h │ ├── ci │ │ ├── run_integration_tests_emulator_bazel.sh │ │ └── run_integration_tests_emulator_cmake.sh │ ├── client.cc │ ├── client.h │ ├── client_bucket_acl_test.cc │ ├── client_bucket_test.cc │ ├── client_default_object_acl_test.cc │ ├── client_notifications_test.cc │ ├── client_object_acl_test.cc │ ├── client_object_copy_test.cc │ ├── client_object_test.cc │ ├── client_options.cc │ ├── client_options.h │ ├── client_options_test.cc │ ├── client_service_account_test.cc │ ├── client_sign_policy_document_test.cc │ ├── client_sign_url_test.cc │ ├── client_test.cc │ ├── client_write_object_test.cc │ ├── compose_many_test.cc │ ├── config-grpc.cmake.in │ ├── config.cmake.in │ ├── delete_by_prefix_test.cc │ ├── doc │ │ ├── environment-variables.dox │ │ ├── error-handling.dox │ │ ├── parallel-uploads-design.md │ │ ├── setup-test-resources.md │ │ ├── storage-main.dox │ │ ├── storage-mocking.dox │ │ └── storage-options.dox │ ├── download_options.h │ ├── enable_object_retention.h │ ├── examples │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── storage_async_mock_samples.cc │ │ ├── storage_async_samples.cc │ │ ├── storage_bucket_acl_samples.cc │ │ ├── storage_bucket_autoclass_samples.cc │ │ ├── storage_bucket_cors_samples.cc │ │ ├── storage_bucket_default_kms_key_samples.cc │ │ ├── storage_bucket_iam_samples.cc │ │ ├── storage_bucket_object_retention_samples.cc │ │ ├── storage_bucket_requester_pays_samples.cc │ │ ├── storage_bucket_samples.cc │ │ ├── storage_bucket_soft_delete_samples.cc │ │ ├── storage_client_initialization_samples.cc │ │ ├── storage_client_mock_samples.cc │ │ ├── storage_client_per_operation_samples.cc │ │ ├── storage_default_object_acl_samples.cc │ │ ├── storage_event_based_hold_samples.cc │ │ ├── storage_examples.bzl │ │ ├── storage_examples_common.bzl │ │ ├── storage_examples_common.cc │ │ ├── storage_examples_common.h │ │ ├── storage_examples_common_test.cc │ │ ├── storage_examples_unit_tests.bzl │ │ ├── storage_grpc_examples.bzl │ │ ├── storage_grpc_samples.cc │ │ ├── storage_lifecycle_management_samples.cc │ │ ├── storage_notification_samples.cc │ │ ├── storage_object_acl_samples.cc │ │ ├── storage_object_cmek_samples.cc │ │ ├── storage_object_csek_samples.cc │ │ ├── storage_object_file_transfer_samples.cc │ │ ├── storage_object_hold_samples.cc │ │ ├── storage_object_preconditions_samples.cc │ │ ├── storage_object_resumable_write_samples.cc │ │ ├── storage_object_retention_samples.cc │ │ ├── storage_object_rewrite_samples.cc │ │ ├── storage_object_samples.cc │ │ ├── storage_object_soft_delete_samples.cc │ │ ├── storage_object_versioning_samples.cc │ │ ├── storage_otel_samples.cc │ │ ├── storage_policy_doc_samples.cc │ │ ├── storage_public_object_samples.cc │ │ ├── storage_quickstart.cc │ │ ├── storage_retention_policy_samples.cc │ │ ├── storage_service_account_samples.cc │ │ ├── storage_signed_url_v2_samples.cc │ │ ├── storage_signed_url_v4_samples.cc │ │ └── storage_website_samples.cc │ ├── google_cloud_cpp_storage.bzl │ ├── google_cloud_cpp_storage.cmake │ ├── google_cloud_cpp_storage_grpc.bzl │ ├── google_cloud_cpp_storage_grpc.cmake │ ├── google_cloud_cpp_storage_grpc_mocks.bzl │ ├── grpc_plugin.cc │ ├── grpc_plugin.h │ ├── grpc_plugin_test.cc │ ├── hash_mismatch_error.h │ ├── hashing_options.cc │ ├── hashing_options.h │ ├── hashing_options_test.cc │ ├── headers_map.h │ ├── hmac_key_metadata.cc │ ├── hmac_key_metadata.h │ ├── hmac_key_metadata_test.cc │ ├── iam_policy.cc │ ├── iam_policy.h │ ├── idempotency_policy.cc │ ├── idempotency_policy.h │ ├── idempotency_policy_test.cc │ ├── include_folders_as_prefixes.h │ ├── internal │ │ ├── access_control_common.h │ │ ├── access_control_common_parser.cc │ │ ├── access_control_common_parser.h │ │ ├── access_control_common_parser_test.cc │ │ ├── access_control_common_test.cc │ │ ├── access_token_credentials.cc │ │ ├── access_token_credentials.h │ │ ├── access_token_credentials_test.cc │ │ ├── async │ │ │ ├── connection_fwd.h │ │ │ ├── connection_impl.cc │ │ │ ├── connection_impl.h │ │ │ ├── connection_impl_appendable_upload_test.cc │ │ │ ├── connection_impl_insert_test.cc │ │ │ ├── connection_impl_open_test.cc │ │ │ ├── connection_impl_read_hash_test.cc │ │ │ ├── connection_impl_read_test.cc │ │ │ ├── connection_impl_test.cc │ │ │ ├── connection_impl_upload_hash_test.cc │ │ │ ├── connection_impl_upload_test.cc │ │ │ ├── connection_tracing.cc │ │ │ ├── connection_tracing.h │ │ │ ├── connection_tracing_test.cc │ │ │ ├── default_options.cc │ │ │ ├── default_options.h │ │ │ ├── default_options_test.cc │ │ │ ├── handle_redirect_error.cc │ │ │ ├── handle_redirect_error.h │ │ │ ├── handle_redirect_error_test.cc │ │ │ ├── insert_object.cc │ │ │ ├── insert_object.h │ │ │ ├── insert_object_test.cc │ │ │ ├── object_descriptor_connection_tracing.cc │ │ │ ├── object_descriptor_connection_tracing.h │ │ │ ├── object_descriptor_connection_tracing_test.cc │ │ │ ├── object_descriptor_impl.cc │ │ │ ├── object_descriptor_impl.h │ │ │ ├── object_descriptor_impl_test.cc │ │ │ ├── object_descriptor_reader.cc │ │ │ ├── object_descriptor_reader.h │ │ │ ├── object_descriptor_reader_test.cc │ │ │ ├── object_descriptor_reader_tracing.cc │ │ │ ├── object_descriptor_reader_tracing.h │ │ │ ├── object_descriptor_reader_tracing_test.cc │ │ │ ├── open_object.cc │ │ │ ├── open_object.h │ │ │ ├── open_object_test.cc │ │ │ ├── open_stream.cc │ │ │ ├── open_stream.h │ │ │ ├── open_stream_test.cc │ │ │ ├── partial_upload.cc │ │ │ ├── partial_upload.h │ │ │ ├── partial_upload_test.cc │ │ │ ├── read_payload_fwd.h │ │ │ ├── read_payload_impl.h │ │ │ ├── read_payload_impl_test.cc │ │ │ ├── read_range.cc │ │ │ ├── read_range.h │ │ │ ├── read_range_test.cc │ │ │ ├── reader_connection_factory.cc │ │ │ ├── reader_connection_factory.h │ │ │ ├── reader_connection_factory_test.cc │ │ │ ├── reader_connection_impl.cc │ │ │ ├── reader_connection_impl.h │ │ │ ├── reader_connection_impl_test.cc │ │ │ ├── reader_connection_resume.cc │ │ │ ├── reader_connection_resume.h │ │ │ ├── reader_connection_resume_test.cc │ │ │ ├── reader_connection_tracing.cc │ │ │ ├── reader_connection_tracing.h │ │ │ ├── reader_connection_tracing_test.cc │ │ │ ├── rewriter_connection_impl.cc │ │ │ ├── rewriter_connection_impl.h │ │ │ ├── rewriter_connection_impl_test.cc │ │ │ ├── rewriter_connection_tracing.cc │ │ │ ├── rewriter_connection_tracing.h │ │ │ ├── rewriter_connection_tracing_test.cc │ │ │ ├── token_impl.cc │ │ │ ├── token_impl.h │ │ │ ├── write_object.cc │ │ │ ├── write_object.h │ │ │ ├── write_object_test.cc │ │ │ ├── write_payload_fwd.h │ │ │ ├── write_payload_impl.h │ │ │ ├── write_payload_impl_test.cc │ │ │ ├── writer_connection_buffered.cc │ │ │ ├── writer_connection_buffered.h │ │ │ ├── writer_connection_buffered_test.cc │ │ │ ├── writer_connection_finalized.cc │ │ │ ├── writer_connection_finalized.h │ │ │ ├── writer_connection_finalized_test.cc │ │ │ ├── writer_connection_impl.cc │ │ │ ├── writer_connection_impl.h │ │ │ ├── writer_connection_impl_test.cc │ │ │ ├── writer_connection_resumed.cc │ │ │ ├── writer_connection_resumed.h │ │ │ ├── writer_connection_resumed_test.cc │ │ │ ├── writer_connection_tracing.cc │ │ │ ├── writer_connection_tracing.h │ │ │ └── writer_connection_tracing_test.cc │ │ ├── base64.cc │ │ ├── base64.h │ │ ├── base64_test.cc │ │ ├── binary_data_as_debug_string.h │ │ ├── bucket_access_control_parser.cc │ │ ├── bucket_access_control_parser.h │ │ ├── bucket_acl_requests.cc │ │ ├── bucket_acl_requests.h │ │ ├── bucket_acl_requests_test.cc │ │ ├── bucket_metadata_parser.cc │ │ ├── bucket_metadata_parser.h │ │ ├── bucket_requests.cc │ │ ├── bucket_requests.h │ │ ├── bucket_requests_test.cc │ │ ├── common_metadata.h │ │ ├── common_metadata_parser.h │ │ ├── complex_option.h │ │ ├── complex_option_test.cc │ │ ├── compute_engine_util.cc │ │ ├── compute_engine_util.h │ │ ├── compute_engine_util_test.cc │ │ ├── connection_factory.cc │ │ ├── connection_factory.h │ │ ├── connection_impl.cc │ │ ├── connection_impl.h │ │ ├── connection_impl_bucket_acl_test.cc │ │ ├── connection_impl_bucket_test.cc │ │ ├── connection_impl_default_object_acl_test.cc │ │ ├── connection_impl_file_upload_test.cc │ │ ├── connection_impl_notifications_test.cc │ │ ├── connection_impl_object_acl_test.cc │ │ ├── connection_impl_object_copy_test.cc │ │ ├── connection_impl_object_test.cc │ │ ├── connection_impl_service_account_test.cc │ │ ├── connection_impl_sign_blob_test.cc │ │ ├── connection_impl_test.cc │ │ ├── const_buffer.cc │ │ ├── const_buffer.h │ │ ├── const_buffer_test.cc │ │ ├── crc32c.cc │ │ ├── crc32c.h │ │ ├── crc32c_benchmark.cc │ │ ├── crc32c_test.cc │ │ ├── curl │ │ │ ├── request.h │ │ │ └── request_builder.h │ │ ├── default_object_acl_requests.cc │ │ ├── default_object_acl_requests.h │ │ ├── default_object_acl_requests_test.cc │ │ ├── empty_response.cc │ │ ├── empty_response.h │ │ ├── error_credentials.cc │ │ ├── error_credentials.h │ │ ├── generate_message_boundary.cc │ │ ├── generate_message_boundary.h │ │ ├── generate_message_boundary_test.cc │ │ ├── generic_object_request.h │ │ ├── generic_request.h │ │ ├── generic_request_test.cc │ │ ├── generic_stub.h │ │ ├── generic_stub_adapter.cc │ │ ├── generic_stub_adapter.h │ │ ├── generic_stub_factory.cc │ │ ├── generic_stub_factory.h │ │ ├── grpc │ │ │ ├── README.md │ │ │ ├── bucket_access_control_parser.cc │ │ │ ├── bucket_access_control_parser.h │ │ │ ├── bucket_access_control_parser_test.cc │ │ │ ├── bucket_metadata_parser.cc │ │ │ ├── bucket_metadata_parser.h │ │ │ ├── bucket_metadata_parser_test.cc │ │ │ ├── bucket_name.cc │ │ │ ├── bucket_name.h │ │ │ ├── bucket_name_test.cc │ │ │ ├── bucket_request_parser.cc │ │ │ ├── bucket_request_parser.h │ │ │ ├── bucket_request_parser_test.cc │ │ │ ├── buffer_read_object_data.cc │ │ │ ├── buffer_read_object_data.h │ │ │ ├── buffer_read_object_data_test.cc │ │ │ ├── channel_refresh.cc │ │ │ ├── channel_refresh.h │ │ │ ├── configure_client_context.cc │ │ │ ├── configure_client_context.h │ │ │ ├── configure_client_context_test.cc │ │ │ ├── ctype_cord_workaround.h │ │ │ ├── default_options.cc │ │ │ ├── default_options.h │ │ │ ├── default_options_test.cc │ │ │ ├── enable_metrics.cc │ │ │ ├── enable_metrics.h │ │ │ ├── make_cord.cc │ │ │ ├── make_cord.h │ │ │ ├── make_cord_test.cc │ │ │ ├── metrics_exporter_impl.cc │ │ │ ├── metrics_exporter_impl.h │ │ │ ├── metrics_exporter_impl_test.cc │ │ │ ├── metrics_exporter_options.cc │ │ │ ├── metrics_exporter_options.h │ │ │ ├── metrics_exporter_options_test.cc │ │ │ ├── metrics_histograms.cc │ │ │ ├── metrics_histograms.h │ │ │ ├── metrics_histograms_test.cc │ │ │ ├── metrics_meter_provider.cc │ │ │ ├── metrics_meter_provider.h │ │ │ ├── metrics_meter_provider_test.cc │ │ │ ├── monitoring_project.cc │ │ │ ├── monitoring_project.h │ │ │ ├── monitoring_project_test.cc │ │ │ ├── object_access_control_parser.cc │ │ │ ├── object_access_control_parser.h │ │ │ ├── object_access_control_parser_test.cc │ │ │ ├── object_metadata_parser.cc │ │ │ ├── object_metadata_parser.h │ │ │ ├── object_metadata_parser_test.cc │ │ │ ├── object_read_source.cc │ │ │ ├── object_read_source.h │ │ │ ├── object_read_source_test.cc │ │ │ ├── object_request_parser.cc │ │ │ ├── object_request_parser.h │ │ │ ├── object_request_parser_test.cc │ │ │ ├── owner_parser.cc │ │ │ ├── owner_parser.h │ │ │ ├── owner_parser_test.cc │ │ │ ├── scale_stall_timeout.cc │ │ │ ├── scale_stall_timeout.h │ │ │ ├── scale_stall_timeout_test.cc │ │ │ ├── sign_blob_request_parser.cc │ │ │ ├── sign_blob_request_parser.h │ │ │ ├── sign_blob_request_parser_test.cc │ │ │ ├── split_write_object_data.cc │ │ │ ├── split_write_object_data.h │ │ │ ├── split_write_object_data_test.cc │ │ │ ├── stub.cc │ │ │ ├── stub.h │ │ │ ├── stub_acl_test.cc │ │ │ ├── stub_insert_object_media_test.cc │ │ │ ├── stub_read_object_test.cc │ │ │ ├── stub_test.cc │ │ │ ├── stub_upload_chunk_test.cc │ │ │ ├── synthetic_self_link.cc │ │ │ ├── synthetic_self_link.h │ │ │ └── synthetic_self_link_test.cc │ │ ├── hash_function.cc │ │ ├── hash_function.h │ │ ├── hash_function_impl.cc │ │ ├── hash_function_impl.h │ │ ├── hash_function_impl_test.cc │ │ ├── hash_validator.cc │ │ ├── hash_validator.h │ │ ├── hash_validator_impl.cc │ │ ├── hash_validator_impl.h │ │ ├── hash_validator_test.cc │ │ ├── hash_values.cc │ │ ├── hash_values.h │ │ ├── hash_values_test.cc │ │ ├── hmac_key_metadata_parser.cc │ │ ├── hmac_key_metadata_parser.h │ │ ├── hmac_key_requests.cc │ │ ├── hmac_key_requests.h │ │ ├── hmac_key_requests_test.cc │ │ ├── http_response.cc │ │ ├── http_response.h │ │ ├── http_response_test.cc │ │ ├── impersonate_service_account_credentials.cc │ │ ├── impersonate_service_account_credentials.h │ │ ├── impersonate_service_account_credentials_test.cc │ │ ├── lifecycle_rule_parser.cc │ │ ├── lifecycle_rule_parser.h │ │ ├── logging_stub.cc │ │ ├── logging_stub.h │ │ ├── logging_stub_test.cc │ │ ├── make_jwt_assertion.cc │ │ ├── make_jwt_assertion.h │ │ ├── make_jwt_assertion_test.cc │ │ ├── md5hash.cc │ │ ├── md5hash.h │ │ ├── md5hash_test.cc │ │ ├── metadata_parser.cc │ │ ├── metadata_parser.h │ │ ├── metadata_parser_test.cc │ │ ├── notification_metadata_parser.cc │ │ ├── notification_metadata_parser.h │ │ ├── notification_requests.cc │ │ ├── notification_requests.h │ │ ├── notification_requests_test.cc │ │ ├── object_access_control_parser.cc │ │ ├── object_access_control_parser.h │ │ ├── object_acl_requests.cc │ │ ├── object_acl_requests.h │ │ ├── object_acl_requests_test.cc │ │ ├── object_metadata_parser.cc │ │ ├── object_metadata_parser.h │ │ ├── object_read_source.h │ │ ├── object_read_streambuf.cc │ │ ├── object_read_streambuf.h │ │ ├── object_read_streambuf_test.cc │ │ ├── object_requests.cc │ │ ├── object_requests.h │ │ ├── object_requests_test.cc │ │ ├── object_write_streambuf.cc │ │ ├── object_write_streambuf.h │ │ ├── object_write_streambuf_test.cc │ │ ├── openssl │ │ │ └── hash_function_impl.cc │ │ ├── patch_builder.cc │ │ ├── patch_builder.h │ │ ├── patch_builder_details.cc │ │ ├── patch_builder_details.h │ │ ├── patch_builder_test.cc │ │ ├── policy_document_request.cc │ │ ├── policy_document_request.h │ │ ├── policy_document_request_test.cc │ │ ├── request_project_id.cc │ │ ├── request_project_id.h │ │ ├── request_project_id_test.cc │ │ ├── rest │ │ │ ├── object_read_source.cc │ │ │ ├── object_read_source.h │ │ │ ├── object_read_source_test.cc │ │ │ ├── request_builder.cc │ │ │ ├── request_builder.h │ │ │ ├── request_builder_test.cc │ │ │ ├── stub.cc │ │ │ ├── stub.h │ │ │ └── stub_test.cc │ │ ├── retry_object_read_source.cc │ │ ├── retry_object_read_source.h │ │ ├── retry_object_read_source_test.cc │ │ ├── service_account_parser.cc │ │ ├── service_account_parser.h │ │ ├── service_account_requests.cc │ │ ├── service_account_requests.h │ │ ├── service_account_requests_test.cc │ │ ├── sign_blob_requests.cc │ │ ├── sign_blob_requests.h │ │ ├── sign_blob_requests_test.cc │ │ ├── signed_url_requests.cc │ │ ├── signed_url_requests.h │ │ ├── signed_url_requests_test.cc │ │ ├── storage_auth_decorator.cc │ │ ├── storage_auth_decorator.h │ │ ├── storage_connection.cc │ │ ├── storage_connection.h │ │ ├── storage_connection_test.cc │ │ ├── storage_logging_decorator.cc │ │ ├── storage_logging_decorator.h │ │ ├── storage_metadata_decorator.cc │ │ ├── storage_metadata_decorator.h │ │ ├── storage_round_robin_decorator.cc │ │ ├── storage_round_robin_decorator.h │ │ ├── storage_stub.cc │ │ ├── storage_stub.h │ │ ├── storage_stub_factory.cc │ │ ├── storage_stub_factory.h │ │ ├── storage_stub_factory_test.cc │ │ ├── storage_tracing_stub.cc │ │ ├── storage_tracing_stub.h │ │ ├── tracing_connection.cc │ │ ├── tracing_connection.h │ │ ├── tracing_connection_test.cc │ │ ├── tracing_object_read_source.cc │ │ ├── tracing_object_read_source.h │ │ ├── tracing_object_read_source_test.cc │ │ ├── tuple_filter.h │ │ ├── tuple_filter_test.cc │ │ ├── unified_rest_credentials.cc │ │ ├── unified_rest_credentials.h │ │ ├── unified_rest_credentials_test.cc │ │ ├── well_known_parameters_impl.h │ │ └── win32 │ │ │ └── hash_function_impl.cc │ ├── lifecycle_rule.cc │ ├── lifecycle_rule.h │ ├── lifecycle_rule_test.cc │ ├── list_buckets_extended_reader.h │ ├── list_buckets_extended_reader_test.cc │ ├── list_buckets_reader.cc │ ├── list_buckets_reader.h │ ├── list_buckets_reader_test.cc │ ├── list_hmac_keys_reader.cc │ ├── list_hmac_keys_reader.h │ ├── list_hmac_keys_reader_test.cc │ ├── list_objects_and_prefixes_reader.h │ ├── list_objects_and_prefixes_reader_test.cc │ ├── list_objects_reader.cc │ ├── list_objects_reader.h │ ├── list_objects_reader_test.cc │ ├── mocks-config.cmake.in │ ├── mocks │ │ ├── mock_async_connection.h │ │ ├── mock_async_object_descriptor_connection.h │ │ ├── mock_async_reader_connection.h │ │ ├── mock_async_rewriter_connection.h │ │ └── mock_async_writer_connection.h │ ├── notification_event_type.h │ ├── notification_metadata.cc │ ├── notification_metadata.h │ ├── notification_metadata_test.cc │ ├── notification_payload_format.h │ ├── oauth2 │ │ ├── anonymous_credentials.cc │ │ ├── anonymous_credentials.h │ │ ├── anonymous_credentials_test.cc │ │ ├── authorized_user_credentials.cc │ │ ├── authorized_user_credentials.h │ │ ├── authorized_user_credentials_test.cc │ │ ├── compute_engine_credentials.cc │ │ ├── compute_engine_credentials.h │ │ ├── compute_engine_credentials_test.cc │ │ ├── credential_constants.h │ │ ├── credentials.cc │ │ ├── credentials.h │ │ ├── google_application_default_credentials_file.cc │ │ ├── google_application_default_credentials_file.h │ │ ├── google_application_default_credentials_file_test.cc │ │ ├── google_credentials.cc │ │ ├── google_credentials.h │ │ ├── google_credentials_test.cc │ │ ├── refreshing_credentials_wrapper.cc │ │ ├── refreshing_credentials_wrapper.h │ │ ├── service_account_credentials.cc │ │ ├── service_account_credentials.h │ │ └── service_account_credentials_test.cc │ ├── object_access_control.cc │ ├── object_access_control.h │ ├── object_access_control_test.cc │ ├── object_metadata.cc │ ├── object_metadata.h │ ├── object_metadata_test.cc │ ├── object_read_stream.cc │ ├── object_read_stream.h │ ├── object_retention.cc │ ├── object_retention.h │ ├── object_retention_test.cc │ ├── object_rewriter.cc │ ├── object_rewriter.h │ ├── object_stream.h │ ├── object_stream_test.cc │ ├── object_write_stream.cc │ ├── object_write_stream.h │ ├── options.h │ ├── override_default_project.h │ ├── override_unlocked_retention.h │ ├── owner.h │ ├── parallel_upload.cc │ ├── parallel_upload.h │ ├── parallel_uploads_test.cc │ ├── policy_document.cc │ ├── policy_document.h │ ├── policy_document_test.cc │ ├── project_team.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ ├── quickstart.cc │ │ ├── quickstart_async.cc │ │ └── quickstart_grpc.cc │ ├── retry_policy.h │ ├── retry_policy_test.cc │ ├── service_account.cc │ ├── service_account.h │ ├── service_account_test.cc │ ├── signed_url_options.h │ ├── signed_url_options_test.cc │ ├── soft_deleted.h │ ├── storage_class.h │ ├── storage_class_test.cc │ ├── storage_client_benchmarks.bzl │ ├── storage_client_grpc_unit_tests.bzl │ ├── storage_client_testing.bzl │ ├── storage_client_unit_tests.bzl │ ├── storage_iam_policy_test.cc │ ├── storage_version_test.cc │ ├── testing │ │ ├── canonical_errors.h │ │ ├── client_unit_test.cc │ │ ├── client_unit_test.h │ │ ├── constants.h │ │ ├── mock_client.h │ │ ├── mock_generic_stub.h │ │ ├── mock_hash_function.h │ │ ├── mock_hash_validator.h │ │ ├── mock_http_request.cc │ │ ├── mock_http_request.h │ │ ├── mock_resume_policy.h │ │ ├── mock_storage_stub.h │ │ ├── object_integration_test.cc │ │ ├── object_integration_test.h │ │ ├── random_names.cc │ │ ├── random_names.h │ │ ├── remove_stale_buckets.cc │ │ ├── remove_stale_buckets.h │ │ ├── remove_stale_buckets_test.cc │ │ ├── retry_http_request.cc │ │ ├── retry_http_request.h │ │ ├── retry_tests.cc │ │ ├── retry_tests.h │ │ ├── storage_integration_test.cc │ │ ├── storage_integration_test.h │ │ ├── temp_file.cc │ │ ├── temp_file.h │ │ ├── upload_hash_cases.cc │ │ ├── upload_hash_cases.h │ │ ├── write_base64.cc │ │ └── write_base64.h │ ├── tests │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── alternative_endpoint_integration_test.cc │ │ ├── async_client_integration_test.cc │ │ ├── auto_finalize_integration_test.cc │ │ ├── bucket_acl_integration_test.cc │ │ ├── bucket_integration_test.cc │ │ ├── create_client_integration_test.cc │ │ ├── curl_sign_blob_integration_test.cc │ │ ├── decompressive_transcoding_integration_test.cc │ │ ├── default_object_acl_integration_test.cc │ │ ├── error_injection_integration_test.cc │ │ ├── error_parsing_integration_test.cc │ │ ├── grpc_bucket_metadata_integration_test.cc │ │ ├── grpc_integration_test.cc │ │ ├── grpc_object_acl_integration_test.cc │ │ ├── grpc_object_media_integration_test.cc │ │ ├── grpc_object_metadata_integration_test.cc │ │ ├── hmac_key_integration_test.cc │ │ ├── key_file_integration_test.cc │ │ ├── mtls_object_basic_crud_integration_test.cc │ │ ├── notification_integration_test.cc │ │ ├── object_basic_crud_integration_test.cc │ │ ├── object_checksum_integration_test.cc │ │ ├── object_compose_many_integration_test.cc │ │ ├── object_file_integration_test.cc │ │ ├── object_file_multi_threaded_test.cc │ │ ├── object_hash_integration_test.cc │ │ ├── object_insert_integration_test.cc │ │ ├── object_insert_preconditions_integration_test.cc │ │ ├── object_integration_test.cc │ │ ├── object_list_objects_versions_integration_test.cc │ │ ├── object_media_integration_test.cc │ │ ├── object_parallel_upload_integration_test.cc │ │ ├── object_plenty_clients_serially_integration_test.cc │ │ ├── object_plenty_clients_simultaneously_integration_test.cc │ │ ├── object_read_headers_integration_test.cc │ │ ├── object_read_large_integration_test.cc │ │ ├── object_read_preconditions_integration_test.cc │ │ ├── object_read_range_integration_test.cc │ │ ├── object_read_stream_integration_test.cc │ │ ├── object_resumable_parallel_upload_integration_test.cc │ │ ├── object_resumable_write_integration_test.cc │ │ ├── object_rewrite_integration_test.cc │ │ ├── object_write_preconditions_integration_test.cc │ │ ├── object_write_stream_integration_test.cc │ │ ├── object_write_streambuf_integration_test.cc │ │ ├── service_account_credentials_integration_test.cc │ │ ├── service_account_integration_test.cc │ │ ├── signed_url_conformance_test.cc │ │ ├── signed_url_integration_test.cc │ │ ├── slow_reader_chunk_integration_test.cc │ │ ├── slow_reader_stream_integration_test.cc │ │ ├── small_reads_integration_test.cc │ │ ├── smoke_test_async.cc │ │ ├── smoke_test_grpc.cc │ │ ├── smoke_test_rest.cc │ │ ├── storage_client_integration_tests.bzl │ │ ├── storage_include_test.cc │ │ ├── thread_integration_test.cc │ │ ├── tracing_integration_test.cc │ │ ├── unified_credentials_integration_test.cc │ │ ├── universe_domain_integration_test.cc │ │ └── v4_signatures.json │ ├── upload_options.h │ ├── user_ip_option.h │ ├── version.cc │ ├── version.h │ ├── version_info.h │ ├── well_known_headers.cc │ ├── well_known_headers.h │ ├── well_known_headers_test.cc │ ├── well_known_parameters.cc │ ├── well_known_parameters.h │ └── well_known_parameters_test.cc │ ├── storagebatchoperations │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── storage_batch_operations_auth_decorator.cc │ │ ├── storage_batch_operations_auth_decorator.h │ │ ├── storage_batch_operations_connection_impl.cc │ │ ├── storage_batch_operations_connection_impl.h │ │ ├── storage_batch_operations_logging_decorator.cc │ │ ├── storage_batch_operations_logging_decorator.h │ │ ├── storage_batch_operations_metadata_decorator.cc │ │ ├── storage_batch_operations_metadata_decorator.h │ │ ├── storage_batch_operations_option_defaults.cc │ │ ├── storage_batch_operations_option_defaults.h │ │ ├── storage_batch_operations_retry_traits.h │ │ ├── storage_batch_operations_sources.cc │ │ ├── storage_batch_operations_stub.cc │ │ ├── storage_batch_operations_stub.h │ │ ├── storage_batch_operations_stub_factory.cc │ │ ├── storage_batch_operations_stub_factory.h │ │ ├── storage_batch_operations_tracing_connection.cc │ │ ├── storage_batch_operations_tracing_connection.h │ │ ├── storage_batch_operations_tracing_stub.cc │ │ └── storage_batch_operations_tracing_stub.h │ │ ├── mocks │ │ └── mock_storage_batch_operations_connection.h │ │ ├── samples │ │ ├── storage_batch_operations_client_samples.cc │ │ └── storage_batch_operations_job_samples.cc │ │ ├── storage_batch_operations_client.cc │ │ ├── storage_batch_operations_client.h │ │ ├── storage_batch_operations_connection.cc │ │ ├── storage_batch_operations_connection.h │ │ ├── storage_batch_operations_connection_idempotency_policy.cc │ │ ├── storage_batch_operations_connection_idempotency_policy.h │ │ └── storage_batch_operations_options.h │ ├── storagecontrol │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── storage_control_auth_decorator.cc │ │ ├── storage_control_auth_decorator.h │ │ ├── storage_control_connection_impl.cc │ │ ├── storage_control_connection_impl.h │ │ ├── storage_control_logging_decorator.cc │ │ ├── storage_control_logging_decorator.h │ │ ├── storage_control_metadata_decorator.cc │ │ ├── storage_control_metadata_decorator.h │ │ ├── storage_control_option_defaults.cc │ │ ├── storage_control_option_defaults.h │ │ ├── storage_control_retry_traits.h │ │ ├── storage_control_sources.cc │ │ ├── storage_control_stub.cc │ │ ├── storage_control_stub.h │ │ ├── storage_control_stub_factory.cc │ │ ├── storage_control_stub_factory.h │ │ ├── storage_control_tracing_connection.cc │ │ ├── storage_control_tracing_connection.h │ │ ├── storage_control_tracing_stub.cc │ │ └── storage_control_tracing_stub.h │ │ ├── mocks │ │ └── mock_storage_control_connection.h │ │ ├── samples │ │ ├── storage_control_anywhere_cache_samples.cc │ │ ├── storage_control_client_samples.cc │ │ ├── storage_control_folder_samples.cc │ │ └── storage_control_managed_folder_samples.cc │ │ ├── storage_control_client.cc │ │ ├── storage_control_client.h │ │ ├── storage_control_connection.cc │ │ ├── storage_control_connection.h │ │ ├── storage_control_connection_idempotency_policy.cc │ │ ├── storage_control_connection_idempotency_policy.h │ │ └── storage_control_options.h │ ├── storageinsights │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── storage_insights_auth_decorator.cc │ │ ├── storage_insights_auth_decorator.h │ │ ├── storage_insights_connection_impl.cc │ │ ├── storage_insights_connection_impl.h │ │ ├── storage_insights_logging_decorator.cc │ │ ├── storage_insights_logging_decorator.h │ │ ├── storage_insights_metadata_decorator.cc │ │ ├── storage_insights_metadata_decorator.h │ │ ├── storage_insights_option_defaults.cc │ │ ├── storage_insights_option_defaults.h │ │ ├── storage_insights_retry_traits.h │ │ ├── storage_insights_sources.cc │ │ ├── storage_insights_stub.cc │ │ ├── storage_insights_stub.h │ │ ├── storage_insights_stub_factory.cc │ │ ├── storage_insights_stub_factory.h │ │ ├── storage_insights_tracing_connection.cc │ │ ├── storage_insights_tracing_connection.h │ │ ├── storage_insights_tracing_stub.cc │ │ └── storage_insights_tracing_stub.h │ │ ├── mocks │ │ └── mock_storage_insights_connection.h │ │ ├── samples │ │ └── storage_insights_client_samples.cc │ │ ├── storage_insights_client.cc │ │ ├── storage_insights_client.h │ │ ├── storage_insights_connection.cc │ │ ├── storage_insights_connection.h │ │ ├── storage_insights_connection_idempotency_policy.cc │ │ ├── storage_insights_connection_idempotency_policy.h │ │ └── storage_insights_options.h │ ├── storagetransfer │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_storage_transfer_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── storage_transfer_client.h │ ├── storage_transfer_connection.h │ ├── storage_transfer_connection_idempotency_policy.h │ ├── storage_transfer_options.h │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── storage_transfer_auth_decorator.cc │ │ ├── storage_transfer_auth_decorator.h │ │ ├── storage_transfer_connection_impl.cc │ │ ├── storage_transfer_connection_impl.h │ │ ├── storage_transfer_logging_decorator.cc │ │ ├── storage_transfer_logging_decorator.h │ │ ├── storage_transfer_metadata_decorator.cc │ │ ├── storage_transfer_metadata_decorator.h │ │ ├── storage_transfer_option_defaults.cc │ │ ├── storage_transfer_option_defaults.h │ │ ├── storage_transfer_retry_traits.h │ │ ├── storage_transfer_sources.cc │ │ ├── storage_transfer_stub.cc │ │ ├── storage_transfer_stub.h │ │ ├── storage_transfer_stub_factory.cc │ │ ├── storage_transfer_stub_factory.h │ │ ├── storage_transfer_tracing_connection.cc │ │ ├── storage_transfer_tracing_connection.h │ │ ├── storage_transfer_tracing_stub.cc │ │ └── storage_transfer_tracing_stub.h │ │ ├── mocks │ │ └── mock_storage_transfer_connection.h │ │ ├── samples │ │ └── storage_transfer_client_samples.cc │ │ ├── storage_transfer_client.cc │ │ ├── storage_transfer_client.h │ │ ├── storage_transfer_connection.cc │ │ ├── storage_transfer_connection.h │ │ ├── storage_transfer_connection_idempotency_policy.cc │ │ ├── storage_transfer_connection_idempotency_policy.h │ │ └── storage_transfer_options.h │ ├── stream_range.h │ ├── stream_range_test.cc │ ├── support │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── case_attachment_client.cc │ │ ├── case_attachment_client.h │ │ ├── case_attachment_connection.cc │ │ ├── case_attachment_connection.h │ │ ├── case_attachment_connection_idempotency_policy.cc │ │ ├── case_attachment_connection_idempotency_policy.h │ │ ├── case_attachment_options.h │ │ ├── case_client.cc │ │ ├── case_client.h │ │ ├── case_connection.cc │ │ ├── case_connection.h │ │ ├── case_connection_idempotency_policy.cc │ │ ├── case_connection_idempotency_policy.h │ │ ├── case_options.h │ │ ├── comment_client.cc │ │ ├── comment_client.h │ │ ├── comment_connection.cc │ │ ├── comment_connection.h │ │ ├── comment_connection_idempotency_policy.cc │ │ ├── comment_connection_idempotency_policy.h │ │ ├── comment_options.h │ │ ├── internal │ │ ├── case_attachment_auth_decorator.cc │ │ ├── case_attachment_auth_decorator.h │ │ ├── case_attachment_connection_impl.cc │ │ ├── case_attachment_connection_impl.h │ │ ├── case_attachment_logging_decorator.cc │ │ ├── case_attachment_logging_decorator.h │ │ ├── case_attachment_metadata_decorator.cc │ │ ├── case_attachment_metadata_decorator.h │ │ ├── case_attachment_option_defaults.cc │ │ ├── case_attachment_option_defaults.h │ │ ├── case_attachment_retry_traits.h │ │ ├── case_attachment_sources.cc │ │ ├── case_attachment_stub.cc │ │ ├── case_attachment_stub.h │ │ ├── case_attachment_stub_factory.cc │ │ ├── case_attachment_stub_factory.h │ │ ├── case_attachment_tracing_connection.cc │ │ ├── case_attachment_tracing_connection.h │ │ ├── case_attachment_tracing_stub.cc │ │ ├── case_attachment_tracing_stub.h │ │ ├── case_auth_decorator.cc │ │ ├── case_auth_decorator.h │ │ ├── case_connection_impl.cc │ │ ├── case_connection_impl.h │ │ ├── case_logging_decorator.cc │ │ ├── case_logging_decorator.h │ │ ├── case_metadata_decorator.cc │ │ ├── case_metadata_decorator.h │ │ ├── case_option_defaults.cc │ │ ├── case_option_defaults.h │ │ ├── case_retry_traits.h │ │ ├── case_sources.cc │ │ ├── case_stub.cc │ │ ├── case_stub.h │ │ ├── case_stub_factory.cc │ │ ├── case_stub_factory.h │ │ ├── case_tracing_connection.cc │ │ ├── case_tracing_connection.h │ │ ├── case_tracing_stub.cc │ │ ├── case_tracing_stub.h │ │ ├── comment_auth_decorator.cc │ │ ├── comment_auth_decorator.h │ │ ├── comment_connection_impl.cc │ │ ├── comment_connection_impl.h │ │ ├── comment_logging_decorator.cc │ │ ├── comment_logging_decorator.h │ │ ├── comment_metadata_decorator.cc │ │ ├── comment_metadata_decorator.h │ │ ├── comment_option_defaults.cc │ │ ├── comment_option_defaults.h │ │ ├── comment_retry_traits.h │ │ ├── comment_sources.cc │ │ ├── comment_stub.cc │ │ ├── comment_stub.h │ │ ├── comment_stub_factory.cc │ │ ├── comment_stub_factory.h │ │ ├── comment_tracing_connection.cc │ │ ├── comment_tracing_connection.h │ │ ├── comment_tracing_stub.cc │ │ └── comment_tracing_stub.h │ │ ├── mocks │ │ ├── mock_case_attachment_connection.h │ │ ├── mock_case_connection.h │ │ └── mock_comment_connection.h │ │ └── samples │ │ ├── case_attachment_client_samples.cc │ │ ├── case_client_samples.cc │ │ └── comment_client_samples.cc │ ├── talent │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── company_client.h │ ├── company_connection.h │ ├── company_connection_idempotency_policy.h │ ├── company_options.h │ ├── completion_client.h │ ├── completion_connection.h │ ├── completion_connection_idempotency_policy.h │ ├── completion_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── event_client.h │ ├── event_connection.h │ ├── event_connection_idempotency_policy.h │ ├── event_options.h │ ├── job_client.h │ ├── job_connection.h │ ├── job_connection_idempotency_policy.h │ ├── job_options.h │ ├── mocks │ │ ├── mock_company_connection.h │ │ ├── mock_completion_connection.h │ │ ├── mock_event_connection.h │ │ ├── mock_job_connection.h │ │ └── mock_tenant_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── tenant_client.h │ ├── tenant_connection.h │ ├── tenant_connection_idempotency_policy.h │ ├── tenant_options.h │ └── v4 │ │ ├── .repo-metadata.json │ │ ├── company_client.cc │ │ ├── company_client.h │ │ ├── company_connection.cc │ │ ├── company_connection.h │ │ ├── company_connection_idempotency_policy.cc │ │ ├── company_connection_idempotency_policy.h │ │ ├── company_options.h │ │ ├── completion_client.cc │ │ ├── completion_client.h │ │ ├── completion_connection.cc │ │ ├── completion_connection.h │ │ ├── completion_connection_idempotency_policy.cc │ │ ├── completion_connection_idempotency_policy.h │ │ ├── completion_options.h │ │ ├── event_client.cc │ │ ├── event_client.h │ │ ├── event_connection.cc │ │ ├── event_connection.h │ │ ├── event_connection_idempotency_policy.cc │ │ ├── event_connection_idempotency_policy.h │ │ ├── event_options.h │ │ ├── internal │ │ ├── company_auth_decorator.cc │ │ ├── company_auth_decorator.h │ │ ├── company_connection_impl.cc │ │ ├── company_connection_impl.h │ │ ├── company_logging_decorator.cc │ │ ├── company_logging_decorator.h │ │ ├── company_metadata_decorator.cc │ │ ├── company_metadata_decorator.h │ │ ├── company_option_defaults.cc │ │ ├── company_option_defaults.h │ │ ├── company_retry_traits.h │ │ ├── company_sources.cc │ │ ├── company_stub.cc │ │ ├── company_stub.h │ │ ├── company_stub_factory.cc │ │ ├── company_stub_factory.h │ │ ├── company_tracing_connection.cc │ │ ├── company_tracing_connection.h │ │ ├── company_tracing_stub.cc │ │ ├── company_tracing_stub.h │ │ ├── completion_auth_decorator.cc │ │ ├── completion_auth_decorator.h │ │ ├── completion_connection_impl.cc │ │ ├── completion_connection_impl.h │ │ ├── completion_logging_decorator.cc │ │ ├── completion_logging_decorator.h │ │ ├── completion_metadata_decorator.cc │ │ ├── completion_metadata_decorator.h │ │ ├── completion_option_defaults.cc │ │ ├── completion_option_defaults.h │ │ ├── completion_retry_traits.h │ │ ├── completion_sources.cc │ │ ├── completion_stub.cc │ │ ├── completion_stub.h │ │ ├── completion_stub_factory.cc │ │ ├── completion_stub_factory.h │ │ ├── completion_tracing_connection.cc │ │ ├── completion_tracing_connection.h │ │ ├── completion_tracing_stub.cc │ │ ├── completion_tracing_stub.h │ │ ├── event_auth_decorator.cc │ │ ├── event_auth_decorator.h │ │ ├── event_connection_impl.cc │ │ ├── event_connection_impl.h │ │ ├── event_logging_decorator.cc │ │ ├── event_logging_decorator.h │ │ ├── event_metadata_decorator.cc │ │ ├── event_metadata_decorator.h │ │ ├── event_option_defaults.cc │ │ ├── event_option_defaults.h │ │ ├── event_retry_traits.h │ │ ├── event_sources.cc │ │ ├── event_stub.cc │ │ ├── event_stub.h │ │ ├── event_stub_factory.cc │ │ ├── event_stub_factory.h │ │ ├── event_tracing_connection.cc │ │ ├── event_tracing_connection.h │ │ ├── event_tracing_stub.cc │ │ ├── event_tracing_stub.h │ │ ├── job_auth_decorator.cc │ │ ├── job_auth_decorator.h │ │ ├── job_connection_impl.cc │ │ ├── job_connection_impl.h │ │ ├── job_logging_decorator.cc │ │ ├── job_logging_decorator.h │ │ ├── job_metadata_decorator.cc │ │ ├── job_metadata_decorator.h │ │ ├── job_option_defaults.cc │ │ ├── job_option_defaults.h │ │ ├── job_retry_traits.h │ │ ├── job_sources.cc │ │ ├── job_stub.cc │ │ ├── job_stub.h │ │ ├── job_stub_factory.cc │ │ ├── job_stub_factory.h │ │ ├── job_tracing_connection.cc │ │ ├── job_tracing_connection.h │ │ ├── job_tracing_stub.cc │ │ ├── job_tracing_stub.h │ │ ├── tenant_auth_decorator.cc │ │ ├── tenant_auth_decorator.h │ │ ├── tenant_connection_impl.cc │ │ ├── tenant_connection_impl.h │ │ ├── tenant_logging_decorator.cc │ │ ├── tenant_logging_decorator.h │ │ ├── tenant_metadata_decorator.cc │ │ ├── tenant_metadata_decorator.h │ │ ├── tenant_option_defaults.cc │ │ ├── tenant_option_defaults.h │ │ ├── tenant_retry_traits.h │ │ ├── tenant_sources.cc │ │ ├── tenant_stub.cc │ │ ├── tenant_stub.h │ │ ├── tenant_stub_factory.cc │ │ ├── tenant_stub_factory.h │ │ ├── tenant_tracing_connection.cc │ │ ├── tenant_tracing_connection.h │ │ ├── tenant_tracing_stub.cc │ │ └── tenant_tracing_stub.h │ │ ├── job_client.cc │ │ ├── job_client.h │ │ ├── job_connection.cc │ │ ├── job_connection.h │ │ ├── job_connection_idempotency_policy.cc │ │ ├── job_connection_idempotency_policy.h │ │ ├── job_options.h │ │ ├── mocks │ │ ├── mock_company_connection.h │ │ ├── mock_completion_connection.h │ │ ├── mock_event_connection.h │ │ ├── mock_job_connection.h │ │ └── mock_tenant_connection.h │ │ ├── samples │ │ ├── company_client_samples.cc │ │ ├── completion_client_samples.cc │ │ ├── event_client_samples.cc │ │ ├── job_client_samples.cc │ │ └── tenant_client_samples.cc │ │ ├── tenant_client.cc │ │ ├── tenant_client.h │ │ ├── tenant_connection.cc │ │ ├── tenant_connection.h │ │ ├── tenant_connection_idempotency_policy.cc │ │ ├── tenant_connection_idempotency_policy.h │ │ └── tenant_options.h │ ├── tasks │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── cloud_tasks_client.h │ ├── cloud_tasks_connection.h │ ├── cloud_tasks_connection_idempotency_policy.h │ ├── cloud_tasks_options.h │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_cloud_tasks_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── cloud_tasks_client.cc │ │ ├── cloud_tasks_client.h │ │ ├── cloud_tasks_connection.cc │ │ ├── cloud_tasks_connection.h │ │ ├── cloud_tasks_connection_idempotency_policy.cc │ │ ├── cloud_tasks_connection_idempotency_policy.h │ │ ├── cloud_tasks_options.h │ │ ├── internal │ │ ├── cloud_tasks_auth_decorator.cc │ │ ├── cloud_tasks_auth_decorator.h │ │ ├── cloud_tasks_connection_impl.cc │ │ ├── cloud_tasks_connection_impl.h │ │ ├── cloud_tasks_logging_decorator.cc │ │ ├── cloud_tasks_logging_decorator.h │ │ ├── cloud_tasks_metadata_decorator.cc │ │ ├── cloud_tasks_metadata_decorator.h │ │ ├── cloud_tasks_option_defaults.cc │ │ ├── cloud_tasks_option_defaults.h │ │ ├── cloud_tasks_retry_traits.h │ │ ├── cloud_tasks_sources.cc │ │ ├── cloud_tasks_stub.cc │ │ ├── cloud_tasks_stub.h │ │ ├── cloud_tasks_stub_factory.cc │ │ ├── cloud_tasks_stub_factory.h │ │ ├── cloud_tasks_tracing_connection.cc │ │ ├── cloud_tasks_tracing_connection.h │ │ ├── cloud_tasks_tracing_stub.cc │ │ └── cloud_tasks_tracing_stub.h │ │ ├── mocks │ │ └── mock_cloud_tasks_connection.h │ │ └── samples │ │ └── cloud_tasks_client_samples.cc │ ├── telcoautomation │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── telco_automation_auth_decorator.cc │ │ ├── telco_automation_auth_decorator.h │ │ ├── telco_automation_connection_impl.cc │ │ ├── telco_automation_connection_impl.h │ │ ├── telco_automation_logging_decorator.cc │ │ ├── telco_automation_logging_decorator.h │ │ ├── telco_automation_metadata_decorator.cc │ │ ├── telco_automation_metadata_decorator.h │ │ ├── telco_automation_option_defaults.cc │ │ ├── telco_automation_option_defaults.h │ │ ├── telco_automation_retry_traits.h │ │ ├── telco_automation_sources.cc │ │ ├── telco_automation_stub.cc │ │ ├── telco_automation_stub.h │ │ ├── telco_automation_stub_factory.cc │ │ ├── telco_automation_stub_factory.h │ │ ├── telco_automation_tracing_connection.cc │ │ ├── telco_automation_tracing_connection.h │ │ ├── telco_automation_tracing_stub.cc │ │ └── telco_automation_tracing_stub.h │ │ ├── mocks │ │ └── mock_telco_automation_connection.h │ │ ├── samples │ │ └── telco_automation_client_samples.cc │ │ ├── telco_automation_client.cc │ │ ├── telco_automation_client.h │ │ ├── telco_automation_connection.cc │ │ ├── telco_automation_connection.h │ │ ├── telco_automation_connection_idempotency_policy.cc │ │ ├── telco_automation_connection_idempotency_policy.h │ │ └── telco_automation_options.h │ ├── terminate_handler.cc │ ├── terminate_handler.h │ ├── terminate_handler_test.cc │ ├── testing_util │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── async_sequencer.h │ ├── async_sequencer_test.cc │ ├── check_predicate_becomes_false.h │ ├── chrono_literals.h │ ├── chrono_output.h │ ├── chrono_output_test.cc │ ├── command_line_parsing.cc │ ├── command_line_parsing.h │ ├── command_line_parsing_test.cc │ ├── credentials.h │ ├── example_driver.cc │ ├── example_driver.h │ ├── example_driver_test.cc │ ├── expect_exception.h │ ├── expect_future_error.h │ ├── fake_clock.h │ ├── fake_completion_queue_impl.cc │ ├── fake_completion_queue_impl.h │ ├── google_cloud_cpp_testing.bzl │ ├── google_cloud_cpp_testing_grpc.bzl │ ├── google_cloud_cpp_testing_grpc.cmake │ ├── google_cloud_cpp_testing_grpc_unit_tests.bzl │ ├── google_cloud_cpp_testing_rest.bzl │ ├── google_cloud_cpp_testing_rest.cmake │ ├── google_cloud_cpp_testing_unit_tests.bzl │ ├── integration_test.cc │ ├── integration_test.h │ ├── is_proto_equal.cc │ ├── is_proto_equal.h │ ├── is_proto_equal_test.cc │ ├── mock_async_response_reader.h │ ├── mock_async_streaming_read_rpc.h │ ├── mock_async_streaming_write_rpc.h │ ├── mock_backoff_policy.h │ ├── mock_completion_queue_impl.h │ ├── mock_fake_clock.cc │ ├── mock_fake_clock.h │ ├── mock_grpc_authentication_strategy.cc │ ├── mock_grpc_authentication_strategy.h │ ├── mock_http_payload.h │ ├── mock_minimal_iam_credentials_stub.h │ ├── mock_rest_client.h │ ├── mock_rest_response.h │ ├── opentelemetry_matchers.cc │ ├── opentelemetry_matchers.h │ ├── scoped_environment.cc │ ├── scoped_environment.h │ ├── scoped_environment_test.cc │ ├── scoped_log.cc │ ├── scoped_log.h │ ├── scoped_thread.h │ ├── setenv.cc │ ├── setenv.h │ ├── setenv_test.cc │ ├── status_matchers.cc │ ├── status_matchers.h │ ├── status_matchers_test.cc │ ├── testing_types.cc │ ├── testing_types.h │ ├── timer.cc │ ├── timer.h │ ├── validate_metadata.cc │ ├── validate_metadata.h │ ├── validate_propagator.cc │ └── validate_propagator.h │ ├── texttospeech │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_text_to_speech_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── text_to_speech_client.h │ ├── text_to_speech_connection.h │ ├── text_to_speech_connection_idempotency_policy.h │ ├── text_to_speech_options.h │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── text_to_speech_auth_decorator.cc │ │ ├── text_to_speech_auth_decorator.h │ │ ├── text_to_speech_connection_impl.cc │ │ ├── text_to_speech_connection_impl.h │ │ ├── text_to_speech_logging_decorator.cc │ │ ├── text_to_speech_logging_decorator.h │ │ ├── text_to_speech_metadata_decorator.cc │ │ ├── text_to_speech_metadata_decorator.h │ │ ├── text_to_speech_option_defaults.cc │ │ ├── text_to_speech_option_defaults.h │ │ ├── text_to_speech_retry_traits.h │ │ ├── text_to_speech_sources.cc │ │ ├── text_to_speech_stub.cc │ │ ├── text_to_speech_stub.h │ │ ├── text_to_speech_stub_factory.cc │ │ ├── text_to_speech_stub_factory.h │ │ ├── text_to_speech_tracing_connection.cc │ │ ├── text_to_speech_tracing_connection.h │ │ ├── text_to_speech_tracing_stub.cc │ │ └── text_to_speech_tracing_stub.h │ │ ├── mocks │ │ └── mock_text_to_speech_connection.h │ │ ├── samples │ │ └── text_to_speech_client_samples.cc │ │ ├── text_to_speech_client.cc │ │ ├── text_to_speech_client.h │ │ ├── text_to_speech_connection.cc │ │ ├── text_to_speech_connection.h │ │ ├── text_to_speech_connection_idempotency_policy.cc │ │ ├── text_to_speech_connection_idempotency_policy.h │ │ └── text_to_speech_options.h │ ├── timeseriesinsights │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── timeseries_insights_controller_auth_decorator.cc │ │ ├── timeseries_insights_controller_auth_decorator.h │ │ ├── timeseries_insights_controller_connection_impl.cc │ │ ├── timeseries_insights_controller_connection_impl.h │ │ ├── timeseries_insights_controller_logging_decorator.cc │ │ ├── timeseries_insights_controller_logging_decorator.h │ │ ├── timeseries_insights_controller_metadata_decorator.cc │ │ ├── timeseries_insights_controller_metadata_decorator.h │ │ ├── timeseries_insights_controller_option_defaults.cc │ │ ├── timeseries_insights_controller_option_defaults.h │ │ ├── timeseries_insights_controller_retry_traits.h │ │ ├── timeseries_insights_controller_sources.cc │ │ ├── timeseries_insights_controller_stub.cc │ │ ├── timeseries_insights_controller_stub.h │ │ ├── timeseries_insights_controller_stub_factory.cc │ │ ├── timeseries_insights_controller_stub_factory.h │ │ ├── timeseries_insights_controller_tracing_connection.cc │ │ ├── timeseries_insights_controller_tracing_connection.h │ │ ├── timeseries_insights_controller_tracing_stub.cc │ │ └── timeseries_insights_controller_tracing_stub.h │ │ ├── mocks │ │ └── mock_timeseries_insights_controller_connection.h │ │ ├── samples │ │ └── timeseries_insights_controller_client_samples.cc │ │ ├── timeseries_insights_controller_client.cc │ │ ├── timeseries_insights_controller_client.h │ │ ├── timeseries_insights_controller_connection.cc │ │ ├── timeseries_insights_controller_connection.h │ │ ├── timeseries_insights_controller_connection_idempotency_policy.cc │ │ ├── timeseries_insights_controller_connection_idempotency_policy.h │ │ └── timeseries_insights_controller_options.h │ ├── tpu │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_tpu_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── tpu_client.h │ ├── tpu_connection.h │ ├── tpu_connection_idempotency_policy.h │ ├── tpu_options.h │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── tpu_auth_decorator.cc │ │ │ ├── tpu_auth_decorator.h │ │ │ ├── tpu_connection_impl.cc │ │ │ ├── tpu_connection_impl.h │ │ │ ├── tpu_logging_decorator.cc │ │ │ ├── tpu_logging_decorator.h │ │ │ ├── tpu_metadata_decorator.cc │ │ │ ├── tpu_metadata_decorator.h │ │ │ ├── tpu_option_defaults.cc │ │ │ ├── tpu_option_defaults.h │ │ │ ├── tpu_retry_traits.h │ │ │ ├── tpu_sources.cc │ │ │ ├── tpu_stub.cc │ │ │ ├── tpu_stub.h │ │ │ ├── tpu_stub_factory.cc │ │ │ ├── tpu_stub_factory.h │ │ │ ├── tpu_tracing_connection.cc │ │ │ ├── tpu_tracing_connection.h │ │ │ ├── tpu_tracing_stub.cc │ │ │ └── tpu_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_tpu_connection.h │ │ ├── samples │ │ │ └── tpu_client_samples.cc │ │ ├── tpu_client.cc │ │ ├── tpu_client.h │ │ ├── tpu_connection.cc │ │ ├── tpu_connection.h │ │ ├── tpu_connection_idempotency_policy.cc │ │ ├── tpu_connection_idempotency_policy.h │ │ └── tpu_options.h │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── tpu_auth_decorator.cc │ │ ├── tpu_auth_decorator.h │ │ ├── tpu_connection_impl.cc │ │ ├── tpu_connection_impl.h │ │ ├── tpu_logging_decorator.cc │ │ ├── tpu_logging_decorator.h │ │ ├── tpu_metadata_decorator.cc │ │ ├── tpu_metadata_decorator.h │ │ ├── tpu_option_defaults.cc │ │ ├── tpu_option_defaults.h │ │ ├── tpu_retry_traits.h │ │ ├── tpu_sources.cc │ │ ├── tpu_stub.cc │ │ ├── tpu_stub.h │ │ ├── tpu_stub_factory.cc │ │ ├── tpu_stub_factory.h │ │ ├── tpu_tracing_connection.cc │ │ ├── tpu_tracing_connection.h │ │ ├── tpu_tracing_stub.cc │ │ └── tpu_tracing_stub.h │ │ ├── mocks │ │ └── mock_tpu_connection.h │ │ ├── samples │ │ └── tpu_client_samples.cc │ │ ├── tpu_client.cc │ │ ├── tpu_client.h │ │ ├── tpu_connection.cc │ │ ├── tpu_connection.h │ │ ├── tpu_connection_idempotency_policy.cc │ │ ├── tpu_connection_idempotency_policy.h │ │ └── tpu_options.h │ ├── trace │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_trace_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── trace_client.h │ ├── trace_connection.h │ ├── trace_connection_idempotency_policy.h │ ├── trace_options.h │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── trace_auth_decorator.cc │ │ │ ├── trace_auth_decorator.h │ │ │ ├── trace_connection_impl.cc │ │ │ ├── trace_connection_impl.h │ │ │ ├── trace_logging_decorator.cc │ │ │ ├── trace_logging_decorator.h │ │ │ ├── trace_metadata_decorator.cc │ │ │ ├── trace_metadata_decorator.h │ │ │ ├── trace_option_defaults.cc │ │ │ ├── trace_option_defaults.h │ │ │ ├── trace_retry_traits.h │ │ │ ├── trace_sources.cc │ │ │ ├── trace_stub.cc │ │ │ ├── trace_stub.h │ │ │ ├── trace_stub_factory.cc │ │ │ ├── trace_stub_factory.h │ │ │ ├── trace_tracing_connection.cc │ │ │ ├── trace_tracing_connection.h │ │ │ ├── trace_tracing_stub.cc │ │ │ └── trace_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_trace_connection.h │ │ ├── samples │ │ │ └── trace_client_samples.cc │ │ ├── trace_client.cc │ │ ├── trace_client.h │ │ ├── trace_connection.cc │ │ ├── trace_connection.h │ │ ├── trace_connection_idempotency_policy.cc │ │ ├── trace_connection_idempotency_policy.h │ │ └── trace_options.h │ └── v2 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── trace_auth_decorator.cc │ │ ├── trace_auth_decorator.h │ │ ├── trace_connection_impl.cc │ │ ├── trace_connection_impl.h │ │ ├── trace_logging_decorator.cc │ │ ├── trace_logging_decorator.h │ │ ├── trace_metadata_decorator.cc │ │ ├── trace_metadata_decorator.h │ │ ├── trace_option_defaults.cc │ │ ├── trace_option_defaults.h │ │ ├── trace_retry_traits.h │ │ ├── trace_sources.cc │ │ ├── trace_stub.cc │ │ ├── trace_stub.h │ │ ├── trace_stub_factory.cc │ │ ├── trace_stub_factory.h │ │ ├── trace_tracing_connection.cc │ │ ├── trace_tracing_connection.h │ │ ├── trace_tracing_stub.cc │ │ └── trace_tracing_stub.h │ │ ├── mocks │ │ └── mock_trace_connection.h │ │ ├── samples │ │ └── trace_client_samples.cc │ │ ├── trace_client.cc │ │ ├── trace_client.h │ │ ├── trace_connection.cc │ │ ├── trace_connection.h │ │ ├── trace_connection_idempotency_policy.cc │ │ ├── trace_connection_idempotency_policy.h │ │ └── trace_options.h │ ├── tracing_options.cc │ ├── tracing_options.h │ ├── tracing_options_test.cc │ ├── translate │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_translation_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── translation_client.h │ ├── translation_connection.h │ ├── translation_connection_idempotency_policy.h │ ├── translation_options.h │ └── v3 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── translation_auth_decorator.cc │ │ ├── translation_auth_decorator.h │ │ ├── translation_connection_impl.cc │ │ ├── translation_connection_impl.h │ │ ├── translation_logging_decorator.cc │ │ ├── translation_logging_decorator.h │ │ ├── translation_metadata_decorator.cc │ │ ├── translation_metadata_decorator.h │ │ ├── translation_option_defaults.cc │ │ ├── translation_option_defaults.h │ │ ├── translation_retry_traits.h │ │ ├── translation_sources.cc │ │ ├── translation_stub.cc │ │ ├── translation_stub.h │ │ ├── translation_stub_factory.cc │ │ ├── translation_stub_factory.h │ │ ├── translation_tracing_connection.cc │ │ ├── translation_tracing_connection.h │ │ ├── translation_tracing_stub.cc │ │ └── translation_tracing_stub.h │ │ ├── mocks │ │ └── mock_translation_connection.h │ │ ├── samples │ │ └── translation_client_samples.cc │ │ ├── translation_client.cc │ │ ├── translation_client.h │ │ ├── translation_connection.cc │ │ ├── translation_connection.h │ │ ├── translation_connection_idempotency_policy.cc │ │ ├── translation_connection_idempotency_policy.h │ │ └── translation_options.h │ ├── universe_domain.cc │ ├── universe_domain.h │ ├── universe_domain │ ├── CMakeLists.txt │ ├── demo │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ ├── bigquery.cc │ │ ├── bigtable.cc │ │ ├── compute.cc │ │ ├── kms.cc │ │ ├── pubsub.cc │ │ ├── spanner.cc │ │ └── storage.cc │ └── integration_tests │ │ ├── BUILD.bazel │ │ └── impersonation_tests.cc │ ├── universe_domain_options.h │ ├── universe_domain_test.cc │ ├── version.cc │ ├── version.h │ ├── video │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── livestream │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── livestream_auth_decorator.cc │ │ │ ├── livestream_auth_decorator.h │ │ │ ├── livestream_connection_impl.cc │ │ │ ├── livestream_connection_impl.h │ │ │ ├── livestream_logging_decorator.cc │ │ │ ├── livestream_logging_decorator.h │ │ │ ├── livestream_metadata_decorator.cc │ │ │ ├── livestream_metadata_decorator.h │ │ │ ├── livestream_option_defaults.cc │ │ │ ├── livestream_option_defaults.h │ │ │ ├── livestream_retry_traits.h │ │ │ ├── livestream_sources.cc │ │ │ ├── livestream_stub.cc │ │ │ ├── livestream_stub.h │ │ │ ├── livestream_stub_factory.cc │ │ │ ├── livestream_stub_factory.h │ │ │ ├── livestream_tracing_connection.cc │ │ │ ├── livestream_tracing_connection.h │ │ │ ├── livestream_tracing_stub.cc │ │ │ └── livestream_tracing_stub.h │ │ │ ├── livestream_client.cc │ │ │ ├── livestream_client.h │ │ │ ├── livestream_connection.cc │ │ │ ├── livestream_connection.h │ │ │ ├── livestream_connection_idempotency_policy.cc │ │ │ ├── livestream_connection_idempotency_policy.h │ │ │ ├── livestream_options.h │ │ │ ├── mocks │ │ │ └── mock_livestream_connection.h │ │ │ └── samples │ │ │ └── livestream_client_samples.cc │ ├── livestream_client.h │ ├── livestream_connection.h │ ├── livestream_connection_idempotency_policy.h │ ├── livestream_options.h │ ├── mocks │ │ ├── mock_livestream_connection.h │ │ ├── mock_transcoder_connection.h │ │ └── mock_video_stitcher_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── stitcher │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── video_stitcher_auth_decorator.cc │ │ │ ├── video_stitcher_auth_decorator.h │ │ │ ├── video_stitcher_connection_impl.cc │ │ │ ├── video_stitcher_connection_impl.h │ │ │ ├── video_stitcher_logging_decorator.cc │ │ │ ├── video_stitcher_logging_decorator.h │ │ │ ├── video_stitcher_metadata_decorator.cc │ │ │ ├── video_stitcher_metadata_decorator.h │ │ │ ├── video_stitcher_option_defaults.cc │ │ │ ├── video_stitcher_option_defaults.h │ │ │ ├── video_stitcher_retry_traits.h │ │ │ ├── video_stitcher_sources.cc │ │ │ ├── video_stitcher_stub.cc │ │ │ ├── video_stitcher_stub.h │ │ │ ├── video_stitcher_stub_factory.cc │ │ │ ├── video_stitcher_stub_factory.h │ │ │ ├── video_stitcher_tracing_connection.cc │ │ │ ├── video_stitcher_tracing_connection.h │ │ │ ├── video_stitcher_tracing_stub.cc │ │ │ └── video_stitcher_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_video_stitcher_connection.h │ │ │ ├── samples │ │ │ └── video_stitcher_client_samples.cc │ │ │ ├── video_stitcher_client.cc │ │ │ ├── video_stitcher_client.h │ │ │ ├── video_stitcher_connection.cc │ │ │ ├── video_stitcher_connection.h │ │ │ ├── video_stitcher_connection_idempotency_policy.cc │ │ │ ├── video_stitcher_connection_idempotency_policy.h │ │ │ └── video_stitcher_options.h │ ├── transcoder │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── internal │ │ │ ├── transcoder_auth_decorator.cc │ │ │ ├── transcoder_auth_decorator.h │ │ │ ├── transcoder_connection_impl.cc │ │ │ ├── transcoder_connection_impl.h │ │ │ ├── transcoder_logging_decorator.cc │ │ │ ├── transcoder_logging_decorator.h │ │ │ ├── transcoder_metadata_decorator.cc │ │ │ ├── transcoder_metadata_decorator.h │ │ │ ├── transcoder_option_defaults.cc │ │ │ ├── transcoder_option_defaults.h │ │ │ ├── transcoder_retry_traits.h │ │ │ ├── transcoder_sources.cc │ │ │ ├── transcoder_stub.cc │ │ │ ├── transcoder_stub.h │ │ │ ├── transcoder_stub_factory.cc │ │ │ ├── transcoder_stub_factory.h │ │ │ ├── transcoder_tracing_connection.cc │ │ │ ├── transcoder_tracing_connection.h │ │ │ ├── transcoder_tracing_stub.cc │ │ │ └── transcoder_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_transcoder_connection.h │ │ │ ├── samples │ │ │ └── transcoder_client_samples.cc │ │ │ ├── transcoder_client.cc │ │ │ ├── transcoder_client.h │ │ │ ├── transcoder_connection.cc │ │ │ ├── transcoder_connection.h │ │ │ ├── transcoder_connection_idempotency_policy.cc │ │ │ ├── transcoder_connection_idempotency_policy.h │ │ │ └── transcoder_options.h │ ├── transcoder_client.h │ ├── transcoder_connection.h │ ├── transcoder_connection_idempotency_policy.h │ ├── transcoder_options.h │ ├── video_stitcher_client.h │ ├── video_stitcher_connection.h │ ├── video_stitcher_connection_idempotency_policy.h │ └── video_stitcher_options.h │ ├── videointelligence │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_video_intelligence_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── video_intelligence_auth_decorator.cc │ │ │ ├── video_intelligence_auth_decorator.h │ │ │ ├── video_intelligence_connection_impl.cc │ │ │ ├── video_intelligence_connection_impl.h │ │ │ ├── video_intelligence_logging_decorator.cc │ │ │ ├── video_intelligence_logging_decorator.h │ │ │ ├── video_intelligence_metadata_decorator.cc │ │ │ ├── video_intelligence_metadata_decorator.h │ │ │ ├── video_intelligence_option_defaults.cc │ │ │ ├── video_intelligence_option_defaults.h │ │ │ ├── video_intelligence_retry_traits.h │ │ │ ├── video_intelligence_sources.cc │ │ │ ├── video_intelligence_stub.cc │ │ │ ├── video_intelligence_stub.h │ │ │ ├── video_intelligence_stub_factory.cc │ │ │ ├── video_intelligence_stub_factory.h │ │ │ ├── video_intelligence_tracing_connection.cc │ │ │ ├── video_intelligence_tracing_connection.h │ │ │ ├── video_intelligence_tracing_stub.cc │ │ │ └── video_intelligence_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_video_intelligence_connection.h │ │ ├── samples │ │ │ └── video_intelligence_client_samples.cc │ │ ├── video_intelligence_client.cc │ │ ├── video_intelligence_client.h │ │ ├── video_intelligence_connection.cc │ │ ├── video_intelligence_connection.h │ │ ├── video_intelligence_connection_idempotency_policy.cc │ │ ├── video_intelligence_connection_idempotency_policy.h │ │ └── video_intelligence_options.h │ ├── video_intelligence_client.h │ ├── video_intelligence_connection.h │ ├── video_intelligence_connection_idempotency_policy.h │ └── video_intelligence_options.h │ ├── vision │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── image_annotator_client.h │ ├── image_annotator_connection.h │ ├── image_annotator_connection_idempotency_policy.h │ ├── image_annotator_options.h │ ├── mocks │ │ ├── mock_image_annotator_connection.h │ │ └── mock_product_search_connection.h │ ├── product_search_client.h │ ├── product_search_connection.h │ ├── product_search_connection_idempotency_policy.h │ ├── product_search_options.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── image_annotator_client.cc │ │ ├── image_annotator_client.h │ │ ├── image_annotator_connection.cc │ │ ├── image_annotator_connection.h │ │ ├── image_annotator_connection_idempotency_policy.cc │ │ ├── image_annotator_connection_idempotency_policy.h │ │ ├── image_annotator_options.h │ │ ├── internal │ │ ├── image_annotator_auth_decorator.cc │ │ ├── image_annotator_auth_decorator.h │ │ ├── image_annotator_connection_impl.cc │ │ ├── image_annotator_connection_impl.h │ │ ├── image_annotator_logging_decorator.cc │ │ ├── image_annotator_logging_decorator.h │ │ ├── image_annotator_metadata_decorator.cc │ │ ├── image_annotator_metadata_decorator.h │ │ ├── image_annotator_option_defaults.cc │ │ ├── image_annotator_option_defaults.h │ │ ├── image_annotator_retry_traits.h │ │ ├── image_annotator_sources.cc │ │ ├── image_annotator_stub.cc │ │ ├── image_annotator_stub.h │ │ ├── image_annotator_stub_factory.cc │ │ ├── image_annotator_stub_factory.h │ │ ├── image_annotator_tracing_connection.cc │ │ ├── image_annotator_tracing_connection.h │ │ ├── image_annotator_tracing_stub.cc │ │ ├── image_annotator_tracing_stub.h │ │ ├── product_search_auth_decorator.cc │ │ ├── product_search_auth_decorator.h │ │ ├── product_search_connection_impl.cc │ │ ├── product_search_connection_impl.h │ │ ├── product_search_logging_decorator.cc │ │ ├── product_search_logging_decorator.h │ │ ├── product_search_metadata_decorator.cc │ │ ├── product_search_metadata_decorator.h │ │ ├── product_search_option_defaults.cc │ │ ├── product_search_option_defaults.h │ │ ├── product_search_retry_traits.h │ │ ├── product_search_sources.cc │ │ ├── product_search_stub.cc │ │ ├── product_search_stub.h │ │ ├── product_search_stub_factory.cc │ │ ├── product_search_stub_factory.h │ │ ├── product_search_tracing_connection.cc │ │ ├── product_search_tracing_connection.h │ │ ├── product_search_tracing_stub.cc │ │ └── product_search_tracing_stub.h │ │ ├── mocks │ │ ├── mock_image_annotator_connection.h │ │ └── mock_product_search_connection.h │ │ ├── product_search_client.cc │ │ ├── product_search_client.h │ │ ├── product_search_connection.cc │ │ ├── product_search_connection.h │ │ ├── product_search_connection_idempotency_policy.cc │ │ ├── product_search_connection_idempotency_policy.h │ │ ├── product_search_options.h │ │ └── samples │ │ ├── image_annotator_client_samples.cc │ │ └── product_search_client_samples.cc │ ├── vmmigration │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_vm_migration_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── vm_migration_auth_decorator.cc │ │ │ ├── vm_migration_auth_decorator.h │ │ │ ├── vm_migration_connection_impl.cc │ │ │ ├── vm_migration_connection_impl.h │ │ │ ├── vm_migration_logging_decorator.cc │ │ │ ├── vm_migration_logging_decorator.h │ │ │ ├── vm_migration_metadata_decorator.cc │ │ │ ├── vm_migration_metadata_decorator.h │ │ │ ├── vm_migration_option_defaults.cc │ │ │ ├── vm_migration_option_defaults.h │ │ │ ├── vm_migration_retry_traits.h │ │ │ ├── vm_migration_sources.cc │ │ │ ├── vm_migration_stub.cc │ │ │ ├── vm_migration_stub.h │ │ │ ├── vm_migration_stub_factory.cc │ │ │ ├── vm_migration_stub_factory.h │ │ │ ├── vm_migration_tracing_connection.cc │ │ │ ├── vm_migration_tracing_connection.h │ │ │ ├── vm_migration_tracing_stub.cc │ │ │ └── vm_migration_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_vm_migration_connection.h │ │ ├── samples │ │ │ └── vm_migration_client_samples.cc │ │ ├── vm_migration_client.cc │ │ ├── vm_migration_client.h │ │ ├── vm_migration_connection.cc │ │ ├── vm_migration_connection.h │ │ ├── vm_migration_connection_idempotency_policy.cc │ │ ├── vm_migration_connection_idempotency_policy.h │ │ └── vm_migration_options.h │ ├── vm_migration_client.h │ ├── vm_migration_connection.h │ ├── vm_migration_connection_idempotency_policy.h │ └── vm_migration_options.h │ ├── vmwareengine │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ └── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ ├── vmware_engine_auth_decorator.cc │ │ ├── vmware_engine_auth_decorator.h │ │ ├── vmware_engine_connection_impl.cc │ │ ├── vmware_engine_connection_impl.h │ │ ├── vmware_engine_logging_decorator.cc │ │ ├── vmware_engine_logging_decorator.h │ │ ├── vmware_engine_metadata_decorator.cc │ │ ├── vmware_engine_metadata_decorator.h │ │ ├── vmware_engine_option_defaults.cc │ │ ├── vmware_engine_option_defaults.h │ │ ├── vmware_engine_retry_traits.h │ │ ├── vmware_engine_sources.cc │ │ ├── vmware_engine_stub.cc │ │ ├── vmware_engine_stub.h │ │ ├── vmware_engine_stub_factory.cc │ │ ├── vmware_engine_stub_factory.h │ │ ├── vmware_engine_tracing_connection.cc │ │ ├── vmware_engine_tracing_connection.h │ │ ├── vmware_engine_tracing_stub.cc │ │ └── vmware_engine_tracing_stub.h │ │ ├── mocks │ │ └── mock_vmware_engine_connection.h │ │ ├── samples │ │ └── vmware_engine_client_samples.cc │ │ ├── vmware_engine_client.cc │ │ ├── vmware_engine_client.h │ │ ├── vmware_engine_connection.cc │ │ ├── vmware_engine_connection.h │ │ ├── vmware_engine_connection_idempotency_policy.cc │ │ ├── vmware_engine_connection_idempotency_policy.h │ │ └── vmware_engine_options.h │ ├── vpcaccess │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_vpc_access_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── vpc_access_auth_decorator.cc │ │ │ ├── vpc_access_auth_decorator.h │ │ │ ├── vpc_access_connection_impl.cc │ │ │ ├── vpc_access_connection_impl.h │ │ │ ├── vpc_access_logging_decorator.cc │ │ │ ├── vpc_access_logging_decorator.h │ │ │ ├── vpc_access_metadata_decorator.cc │ │ │ ├── vpc_access_metadata_decorator.h │ │ │ ├── vpc_access_option_defaults.cc │ │ │ ├── vpc_access_option_defaults.h │ │ │ ├── vpc_access_retry_traits.h │ │ │ ├── vpc_access_sources.cc │ │ │ ├── vpc_access_stub.cc │ │ │ ├── vpc_access_stub.h │ │ │ ├── vpc_access_stub_factory.cc │ │ │ ├── vpc_access_stub_factory.h │ │ │ ├── vpc_access_tracing_connection.cc │ │ │ ├── vpc_access_tracing_connection.h │ │ │ ├── vpc_access_tracing_stub.cc │ │ │ └── vpc_access_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_vpc_access_connection.h │ │ ├── samples │ │ │ └── vpc_access_client_samples.cc │ │ ├── vpc_access_client.cc │ │ ├── vpc_access_client.h │ │ ├── vpc_access_connection.cc │ │ ├── vpc_access_connection.h │ │ ├── vpc_access_connection_idempotency_policy.cc │ │ ├── vpc_access_connection_idempotency_policy.h │ │ └── vpc_access_options.h │ ├── vpc_access_client.h │ ├── vpc_access_connection.h │ ├── vpc_access_connection_idempotency_policy.h │ └── vpc_access_options.h │ ├── webrisk │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_web_risk_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── web_risk_auth_decorator.cc │ │ │ ├── web_risk_auth_decorator.h │ │ │ ├── web_risk_connection_impl.cc │ │ │ ├── web_risk_connection_impl.h │ │ │ ├── web_risk_logging_decorator.cc │ │ │ ├── web_risk_logging_decorator.h │ │ │ ├── web_risk_metadata_decorator.cc │ │ │ ├── web_risk_metadata_decorator.h │ │ │ ├── web_risk_option_defaults.cc │ │ │ ├── web_risk_option_defaults.h │ │ │ ├── web_risk_retry_traits.h │ │ │ ├── web_risk_sources.cc │ │ │ ├── web_risk_stub.cc │ │ │ ├── web_risk_stub.h │ │ │ ├── web_risk_stub_factory.cc │ │ │ ├── web_risk_stub_factory.h │ │ │ ├── web_risk_tracing_connection.cc │ │ │ ├── web_risk_tracing_connection.h │ │ │ ├── web_risk_tracing_stub.cc │ │ │ └── web_risk_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_web_risk_connection.h │ │ ├── samples │ │ │ └── web_risk_client_samples.cc │ │ ├── web_risk_client.cc │ │ ├── web_risk_client.h │ │ ├── web_risk_connection.cc │ │ ├── web_risk_connection.h │ │ ├── web_risk_connection_idempotency_policy.cc │ │ ├── web_risk_connection_idempotency_policy.h │ │ └── web_risk_options.h │ ├── web_risk_client.h │ ├── web_risk_connection.h │ ├── web_risk_connection_idempotency_policy.h │ └── web_risk_options.h │ ├── websecurityscanner │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── mocks │ │ └── mock_web_security_scanner_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── web_security_scanner_auth_decorator.cc │ │ │ ├── web_security_scanner_auth_decorator.h │ │ │ ├── web_security_scanner_connection_impl.cc │ │ │ ├── web_security_scanner_connection_impl.h │ │ │ ├── web_security_scanner_logging_decorator.cc │ │ │ ├── web_security_scanner_logging_decorator.h │ │ │ ├── web_security_scanner_metadata_decorator.cc │ │ │ ├── web_security_scanner_metadata_decorator.h │ │ │ ├── web_security_scanner_option_defaults.cc │ │ │ ├── web_security_scanner_option_defaults.h │ │ │ ├── web_security_scanner_retry_traits.h │ │ │ ├── web_security_scanner_sources.cc │ │ │ ├── web_security_scanner_stub.cc │ │ │ ├── web_security_scanner_stub.h │ │ │ ├── web_security_scanner_stub_factory.cc │ │ │ ├── web_security_scanner_stub_factory.h │ │ │ ├── web_security_scanner_tracing_connection.cc │ │ │ ├── web_security_scanner_tracing_connection.h │ │ │ ├── web_security_scanner_tracing_stub.cc │ │ │ └── web_security_scanner_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_web_security_scanner_connection.h │ │ ├── samples │ │ │ └── web_security_scanner_client_samples.cc │ │ ├── web_security_scanner_client.cc │ │ ├── web_security_scanner_client.h │ │ ├── web_security_scanner_connection.cc │ │ ├── web_security_scanner_connection.h │ │ ├── web_security_scanner_connection_idempotency_policy.cc │ │ ├── web_security_scanner_connection_idempotency_policy.h │ │ └── web_security_scanner_options.h │ ├── web_security_scanner_client.h │ ├── web_security_scanner_connection.h │ ├── web_security_scanner_connection_idempotency_policy.h │ └── web_security_scanner_options.h │ ├── workflows │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── environment-variables.dox │ │ ├── main.dox │ │ ├── options.dox │ │ ├── override-authentication.dox │ │ ├── override-endpoint.dox │ │ ├── override-retry-policies.dox │ │ └── override-universe-domain.dox │ ├── executions │ │ └── v1 │ │ │ ├── .repo-metadata.json │ │ │ ├── executions_client.cc │ │ │ ├── executions_client.h │ │ │ ├── executions_connection.cc │ │ │ ├── executions_connection.h │ │ │ ├── executions_connection_idempotency_policy.cc │ │ │ ├── executions_connection_idempotency_policy.h │ │ │ ├── executions_options.h │ │ │ ├── internal │ │ │ ├── executions_auth_decorator.cc │ │ │ ├── executions_auth_decorator.h │ │ │ ├── executions_connection_impl.cc │ │ │ ├── executions_connection_impl.h │ │ │ ├── executions_logging_decorator.cc │ │ │ ├── executions_logging_decorator.h │ │ │ ├── executions_metadata_decorator.cc │ │ │ ├── executions_metadata_decorator.h │ │ │ ├── executions_option_defaults.cc │ │ │ ├── executions_option_defaults.h │ │ │ ├── executions_retry_traits.h │ │ │ ├── executions_sources.cc │ │ │ ├── executions_stub.cc │ │ │ ├── executions_stub.h │ │ │ ├── executions_stub_factory.cc │ │ │ ├── executions_stub_factory.h │ │ │ ├── executions_tracing_connection.cc │ │ │ ├── executions_tracing_connection.h │ │ │ ├── executions_tracing_stub.cc │ │ │ └── executions_tracing_stub.h │ │ │ ├── mocks │ │ │ └── mock_executions_connection.h │ │ │ └── samples │ │ │ └── executions_client_samples.cc │ ├── executions_client.h │ ├── executions_connection.h │ ├── executions_connection_idempotency_policy.h │ ├── executions_options.h │ ├── mocks │ │ ├── mock_executions_connection.h │ │ └── mock_workflows_connection.h │ ├── quickstart │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE.bazel │ │ └── quickstart.cc │ ├── v1 │ │ ├── .repo-metadata.json │ │ ├── internal │ │ │ ├── workflows_auth_decorator.cc │ │ │ ├── workflows_auth_decorator.h │ │ │ ├── workflows_connection_impl.cc │ │ │ ├── workflows_connection_impl.h │ │ │ ├── workflows_logging_decorator.cc │ │ │ ├── workflows_logging_decorator.h │ │ │ ├── workflows_metadata_decorator.cc │ │ │ ├── workflows_metadata_decorator.h │ │ │ ├── workflows_option_defaults.cc │ │ │ ├── workflows_option_defaults.h │ │ │ ├── workflows_retry_traits.h │ │ │ ├── workflows_sources.cc │ │ │ ├── workflows_stub.cc │ │ │ ├── workflows_stub.h │ │ │ ├── workflows_stub_factory.cc │ │ │ ├── workflows_stub_factory.h │ │ │ ├── workflows_tracing_connection.cc │ │ │ ├── workflows_tracing_connection.h │ │ │ ├── workflows_tracing_stub.cc │ │ │ └── workflows_tracing_stub.h │ │ ├── mocks │ │ │ └── mock_workflows_connection.h │ │ ├── samples │ │ │ └── workflows_client_samples.cc │ │ ├── workflows_client.cc │ │ ├── workflows_client.h │ │ ├── workflows_connection.cc │ │ ├── workflows_connection.h │ │ ├── workflows_connection_idempotency_policy.cc │ │ ├── workflows_connection_idempotency_policy.h │ │ └── workflows_options.h │ ├── workflows_client.h │ ├── workflows_connection.h │ ├── workflows_connection_idempotency_policy.h │ └── workflows_options.h │ └── workstations │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ ├── environment-variables.dox │ ├── main.dox │ ├── options.dox │ ├── override-authentication.dox │ ├── override-endpoint.dox │ ├── override-retry-policies.dox │ └── override-universe-domain.dox │ ├── quickstart │ ├── .bazelrc │ ├── .bazelversion │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── WORKSPACE.bazel │ └── quickstart.cc │ └── v1 │ ├── .repo-metadata.json │ ├── internal │ ├── workstations_auth_decorator.cc │ ├── workstations_auth_decorator.h │ ├── workstations_connection_impl.cc │ ├── workstations_connection_impl.h │ ├── workstations_logging_decorator.cc │ ├── workstations_logging_decorator.h │ ├── workstations_metadata_decorator.cc │ ├── workstations_metadata_decorator.h │ ├── workstations_option_defaults.cc │ ├── workstations_option_defaults.h │ ├── workstations_retry_traits.h │ ├── workstations_sources.cc │ ├── workstations_stub.cc │ ├── workstations_stub.h │ ├── workstations_stub_factory.cc │ ├── workstations_stub_factory.h │ ├── workstations_tracing_connection.cc │ ├── workstations_tracing_connection.h │ ├── workstations_tracing_stub.cc │ └── workstations_tracing_stub.h │ ├── mocks │ └── mock_workstations_connection.h │ ├── samples │ └── workstations_client_samples.cc │ ├── workstations_client.cc │ ├── workstations_client.h │ ├── workstations_connection.cc │ ├── workstations_connection.h │ ├── workstations_connection_idempotency_policy.cc │ ├── workstations_connection_idempotency_policy.h │ └── workstations_options.h ├── libraries.bzl ├── protos ├── BUILD.bazel └── google │ └── cloud │ ├── bigtable │ ├── CMakeLists.txt │ └── test_proxy │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ └── test_proxy.proto │ ├── compute │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── accelerator_types │ │ └── v1 │ │ │ └── accelerator_types.proto │ ├── addresses │ │ └── v1 │ │ │ └── addresses.proto │ ├── autoscalers │ │ └── v1 │ │ │ └── autoscalers.proto │ ├── backend_buckets │ │ └── v1 │ │ │ └── backend_buckets.proto │ ├── backend_services │ │ └── v1 │ │ │ └── backend_services.proto │ ├── config.cmake.in │ ├── disk_types │ │ └── v1 │ │ │ └── disk_types.proto │ ├── disks │ │ └── v1 │ │ │ └── disks.proto │ ├── external_vpn_gateways │ │ └── v1 │ │ │ └── external_vpn_gateways.proto │ ├── firewall_policies │ │ └── v1 │ │ │ └── firewall_policies.proto │ ├── firewalls │ │ └── v1 │ │ │ └── firewalls.proto │ ├── forwarding_rules │ │ └── v1 │ │ │ └── forwarding_rules.proto │ ├── future_reservations │ │ └── v1 │ │ │ └── future_reservations.proto │ ├── global_addresses │ │ └── v1 │ │ │ └── global_addresses.proto │ ├── global_forwarding_rules │ │ └── v1 │ │ │ └── global_forwarding_rules.proto │ ├── global_network_endpoint_groups │ │ └── v1 │ │ │ └── global_network_endpoint_groups.proto │ ├── global_operations │ │ └── v1 │ │ │ └── global_operations.proto │ ├── global_organization_operations │ │ └── v1 │ │ │ └── global_organization_operations.proto │ ├── global_public_delegated_prefixes │ │ └── v1 │ │ │ └── global_public_delegated_prefixes.proto │ ├── health_checks │ │ └── v1 │ │ │ └── health_checks.proto │ ├── http_health_checks │ │ └── v1 │ │ │ └── http_health_checks.proto │ ├── https_health_checks │ │ └── v1 │ │ │ └── https_health_checks.proto │ ├── image_family_views │ │ └── v1 │ │ │ └── image_family_views.proto │ ├── images │ │ └── v1 │ │ │ └── images.proto │ ├── instance_group_manager_resize_requests │ │ └── v1 │ │ │ └── instance_group_manager_resize_requests.proto │ ├── instance_group_managers │ │ └── v1 │ │ │ └── instance_group_managers.proto │ ├── instance_groups │ │ └── v1 │ │ │ └── instance_groups.proto │ ├── instance_settings │ │ └── v1 │ │ │ └── instance_settings.proto │ ├── instance_templates │ │ └── v1 │ │ │ └── instance_templates.proto │ ├── instances │ │ └── v1 │ │ │ └── instances.proto │ ├── instant_snapshots │ │ └── v1 │ │ │ └── instant_snapshots.proto │ ├── interconnect_attachment_groups │ │ └── v1 │ │ │ └── interconnect_attachment_groups.proto │ ├── interconnect_attachments │ │ └── v1 │ │ │ └── interconnect_attachments.proto │ ├── interconnect_groups │ │ └── v1 │ │ │ └── interconnect_groups.proto │ ├── interconnect_locations │ │ └── v1 │ │ │ └── interconnect_locations.proto │ ├── interconnect_remote_locations │ │ └── v1 │ │ │ └── interconnect_remote_locations.proto │ ├── interconnects │ │ └── v1 │ │ │ └── interconnects.proto │ ├── license_codes │ │ └── v1 │ │ │ └── license_codes.proto │ ├── licenses │ │ └── v1 │ │ │ └── licenses.proto │ ├── machine_images │ │ └── v1 │ │ │ └── machine_images.proto │ ├── machine_types │ │ └── v1 │ │ │ └── machine_types.proto │ ├── network_attachments │ │ └── v1 │ │ │ └── network_attachments.proto │ ├── network_edge_security_services │ │ └── v1 │ │ │ └── network_edge_security_services.proto │ ├── network_endpoint_groups │ │ └── v1 │ │ │ └── network_endpoint_groups.proto │ ├── network_firewall_policies │ │ └── v1 │ │ │ └── network_firewall_policies.proto │ ├── network_profiles │ │ └── v1 │ │ │ └── network_profiles.proto │ ├── networks │ │ └── v1 │ │ │ └── networks.proto │ ├── node_groups │ │ └── v1 │ │ │ └── node_groups.proto │ ├── node_templates │ │ └── v1 │ │ │ └── node_templates.proto │ ├── node_types │ │ └── v1 │ │ │ └── node_types.proto │ ├── packet_mirrorings │ │ └── v1 │ │ │ └── packet_mirrorings.proto │ ├── projects │ │ └── v1 │ │ │ └── projects.proto │ ├── public_advertised_prefixes │ │ └── v1 │ │ │ └── public_advertised_prefixes.proto │ ├── public_delegated_prefixes │ │ └── v1 │ │ │ └── public_delegated_prefixes.proto │ ├── region_autoscalers │ │ └── v1 │ │ │ └── region_autoscalers.proto │ ├── region_backend_services │ │ └── v1 │ │ │ └── region_backend_services.proto │ ├── region_commitments │ │ └── v1 │ │ │ └── region_commitments.proto │ ├── region_disk_types │ │ └── v1 │ │ │ └── region_disk_types.proto │ ├── region_disks │ │ └── v1 │ │ │ └── region_disks.proto │ ├── region_health_check_services │ │ └── v1 │ │ │ └── region_health_check_services.proto │ ├── region_health_checks │ │ └── v1 │ │ │ └── region_health_checks.proto │ ├── region_instance_group_managers │ │ └── v1 │ │ │ └── region_instance_group_managers.proto │ ├── region_instance_groups │ │ └── v1 │ │ │ └── region_instance_groups.proto │ ├── region_instance_templates │ │ └── v1 │ │ │ └── region_instance_templates.proto │ ├── region_instances │ │ └── v1 │ │ │ └── region_instances.proto │ ├── region_instant_snapshots │ │ └── v1 │ │ │ └── region_instant_snapshots.proto │ ├── region_network_endpoint_groups │ │ └── v1 │ │ │ └── region_network_endpoint_groups.proto │ ├── region_network_firewall_policies │ │ └── v1 │ │ │ └── region_network_firewall_policies.proto │ ├── region_notification_endpoints │ │ └── v1 │ │ │ └── region_notification_endpoints.proto │ ├── region_operations │ │ └── v1 │ │ │ └── region_operations.proto │ ├── region_security_policies │ │ └── v1 │ │ │ └── region_security_policies.proto │ ├── region_ssl_certificates │ │ └── v1 │ │ │ └── region_ssl_certificates.proto │ ├── region_ssl_policies │ │ └── v1 │ │ │ └── region_ssl_policies.proto │ ├── region_target_http_proxies │ │ └── v1 │ │ │ └── region_target_http_proxies.proto │ ├── region_target_https_proxies │ │ └── v1 │ │ │ └── region_target_https_proxies.proto │ ├── region_target_tcp_proxies │ │ └── v1 │ │ │ └── region_target_tcp_proxies.proto │ ├── region_url_maps │ │ └── v1 │ │ │ └── region_url_maps.proto │ ├── region_zones │ │ └── v1 │ │ │ └── region_zones.proto │ ├── regions │ │ └── v1 │ │ │ └── regions.proto │ ├── reservation_blocks │ │ └── v1 │ │ │ └── reservation_blocks.proto │ ├── reservation_sub_blocks │ │ └── v1 │ │ │ └── reservation_sub_blocks.proto │ ├── reservations │ │ └── v1 │ │ │ └── reservations.proto │ ├── resource_policies │ │ └── v1 │ │ │ └── resource_policies.proto │ ├── routers │ │ └── v1 │ │ │ └── routers.proto │ ├── routes │ │ └── v1 │ │ │ └── routes.proto │ ├── security_policies │ │ └── v1 │ │ │ └── security_policies.proto │ ├── service_attachments │ │ └── v1 │ │ │ └── service_attachments.proto │ ├── snapshot_settings │ │ └── v1 │ │ │ └── snapshot_settings.proto │ ├── snapshots │ │ └── v1 │ │ │ └── snapshots.proto │ ├── ssl_certificates │ │ └── v1 │ │ │ └── ssl_certificates.proto │ ├── ssl_policies │ │ └── v1 │ │ │ └── ssl_policies.proto │ ├── storage_pool_types │ │ └── v1 │ │ │ └── storage_pool_types.proto │ ├── storage_pools │ │ └── v1 │ │ │ └── storage_pools.proto │ ├── subnetworks │ │ └── v1 │ │ │ └── subnetworks.proto │ ├── target_grpc_proxies │ │ └── v1 │ │ │ └── target_grpc_proxies.proto │ ├── target_http_proxies │ │ └── v1 │ │ │ └── target_http_proxies.proto │ ├── target_https_proxies │ │ └── v1 │ │ │ └── target_https_proxies.proto │ ├── target_instances │ │ └── v1 │ │ │ └── target_instances.proto │ ├── target_pools │ │ └── v1 │ │ │ └── target_pools.proto │ ├── target_ssl_proxies │ │ └── v1 │ │ │ └── target_ssl_proxies.proto │ ├── target_tcp_proxies │ │ └── v1 │ │ │ └── target_tcp_proxies.proto │ ├── target_vpn_gateways │ │ └── v1 │ │ │ └── target_vpn_gateways.proto │ ├── url_maps │ │ └── v1 │ │ │ └── url_maps.proto │ ├── v1 │ │ └── internal │ │ │ ├── common_000.proto │ │ │ ├── common_001.proto │ │ │ ├── common_002.proto │ │ │ ├── common_003.proto │ │ │ ├── common_004.proto │ │ │ ├── common_005.proto │ │ │ ├── common_006.proto │ │ │ ├── common_007.proto │ │ │ ├── common_008.proto │ │ │ ├── common_009.proto │ │ │ ├── common_010.proto │ │ │ ├── common_011.proto │ │ │ ├── common_012.proto │ │ │ ├── common_013.proto │ │ │ ├── common_014.proto │ │ │ ├── common_015.proto │ │ │ ├── common_016.proto │ │ │ ├── common_017.proto │ │ │ ├── common_018.proto │ │ │ ├── common_019.proto │ │ │ ├── common_020.proto │ │ │ ├── common_021.proto │ │ │ ├── common_022.proto │ │ │ ├── common_023.proto │ │ │ ├── common_024.proto │ │ │ ├── common_025.proto │ │ │ ├── common_026.proto │ │ │ ├── common_027.proto │ │ │ ├── common_028.proto │ │ │ ├── common_029.proto │ │ │ ├── common_030.proto │ │ │ ├── common_031.proto │ │ │ ├── common_032.proto │ │ │ ├── common_033.proto │ │ │ ├── common_034.proto │ │ │ ├── common_035.proto │ │ │ ├── common_036.proto │ │ │ ├── common_037.proto │ │ │ ├── common_038.proto │ │ │ ├── common_039.proto │ │ │ ├── common_040.proto │ │ │ ├── common_041.proto │ │ │ ├── common_042.proto │ │ │ ├── common_043.proto │ │ │ ├── common_044.proto │ │ │ ├── common_045.proto │ │ │ ├── common_046.proto │ │ │ ├── common_047.proto │ │ │ ├── common_048.proto │ │ │ ├── common_049.proto │ │ │ ├── common_050.proto │ │ │ ├── common_051.proto │ │ │ ├── common_052.proto │ │ │ ├── common_053.proto │ │ │ ├── common_054.proto │ │ │ ├── common_055.proto │ │ │ ├── common_056.proto │ │ │ ├── common_057.proto │ │ │ ├── common_058.proto │ │ │ ├── common_059.proto │ │ │ ├── common_060.proto │ │ │ ├── common_061.proto │ │ │ ├── common_062.proto │ │ │ ├── common_063.proto │ │ │ ├── common_064.proto │ │ │ ├── common_065.proto │ │ │ ├── common_066.proto │ │ │ ├── common_067.proto │ │ │ ├── common_068.proto │ │ │ ├── common_069.proto │ │ │ ├── common_070.proto │ │ │ ├── common_071.proto │ │ │ ├── common_072.proto │ │ │ ├── common_073.proto │ │ │ ├── common_074.proto │ │ │ ├── common_075.proto │ │ │ ├── common_076.proto │ │ │ ├── common_077.proto │ │ │ ├── common_078.proto │ │ │ ├── common_079.proto │ │ │ ├── common_080.proto │ │ │ ├── common_081.proto │ │ │ ├── common_082.proto │ │ │ ├── common_083.proto │ │ │ ├── common_084.proto │ │ │ ├── common_085.proto │ │ │ ├── common_086.proto │ │ │ ├── common_087.proto │ │ │ ├── common_088.proto │ │ │ ├── common_089.proto │ │ │ ├── common_090.proto │ │ │ ├── common_091.proto │ │ │ ├── common_092.proto │ │ │ ├── common_093.proto │ │ │ ├── common_094.proto │ │ │ ├── common_095.proto │ │ │ ├── common_096.proto │ │ │ ├── common_097.proto │ │ │ ├── common_098.proto │ │ │ ├── common_099.proto │ │ │ ├── common_100.proto │ │ │ ├── common_101.proto │ │ │ ├── common_102.proto │ │ │ ├── common_103.proto │ │ │ ├── common_104.proto │ │ │ ├── common_105.proto │ │ │ ├── common_106.proto │ │ │ ├── common_107.proto │ │ │ ├── common_108.proto │ │ │ ├── common_109.proto │ │ │ ├── common_110.proto │ │ │ ├── common_111.proto │ │ │ ├── common_112.proto │ │ │ ├── common_113.proto │ │ │ ├── common_114.proto │ │ │ ├── common_115.proto │ │ │ ├── common_116.proto │ │ │ ├── common_117.proto │ │ │ ├── common_118.proto │ │ │ ├── common_119.proto │ │ │ ├── common_120.proto │ │ │ ├── common_121.proto │ │ │ ├── common_122.proto │ │ │ ├── common_123.proto │ │ │ ├── common_124.proto │ │ │ ├── common_125.proto │ │ │ ├── common_126.proto │ │ │ ├── common_127.proto │ │ │ ├── common_128.proto │ │ │ ├── common_129.proto │ │ │ ├── common_130.proto │ │ │ ├── common_131.proto │ │ │ ├── common_132.proto │ │ │ ├── common_133.proto │ │ │ ├── common_134.proto │ │ │ ├── common_135.proto │ │ │ ├── common_136.proto │ │ │ ├── common_137.proto │ │ │ ├── common_138.proto │ │ │ ├── common_139.proto │ │ │ ├── common_140.proto │ │ │ ├── common_141.proto │ │ │ ├── common_142.proto │ │ │ ├── common_143.proto │ │ │ ├── common_144.proto │ │ │ ├── common_145.proto │ │ │ ├── common_146.proto │ │ │ ├── common_147.proto │ │ │ ├── common_148.proto │ │ │ ├── common_149.proto │ │ │ ├── common_150.proto │ │ │ ├── common_151.proto │ │ │ └── common_152.proto │ ├── vpn_gateways │ │ └── v1 │ │ │ └── vpn_gateways.proto │ ├── vpn_tunnels │ │ └── v1 │ │ │ └── vpn_tunnels.proto │ ├── zone_operations │ │ └── v1 │ │ │ └── zone_operations.proto │ └── zones │ │ └── v1 │ │ └── zones.proto │ ├── spanner │ ├── CMakeLists.txt │ └── testing │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ └── singer.proto │ └── storage │ ├── CMakeLists.txt │ └── tests │ ├── BUILD.bazel │ ├── CMakeLists.txt │ └── conformance_tests.proto ├── release ├── README.md ├── changes.sh ├── howto-update-conan-package.md ├── publish-bcr.sh └── release.sh └── vcpkg.json /.bazelci/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.bazelci/presubmit.yml -------------------------------------------------------------------------------- /.bazelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.bazelignore -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.cmake-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.cmake-format.py -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gemini/styleguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.gemini/styleguide.md -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | ci/abi-dumps export-ignore 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/release-trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.github/release-trigger.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/snippet-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.github/snippet-bot.yml -------------------------------------------------------------------------------- /.github/trusted-contribution.yml: -------------------------------------------------------------------------------- 1 | annotations: 2 | - type: comment 3 | text: "/gcbrun" 4 | -------------------------------------------------------------------------------- /.github/workflows/macos-bazel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.github/workflows/macos-bazel.yml -------------------------------------------------------------------------------- /.github/workflows/macos-cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.github/workflows/macos-cmake.yml -------------------------------------------------------------------------------- /.github/workflows/test-runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.github/workflows/test-runner.yml -------------------------------------------------------------------------------- /.github/workflows/windows-bazel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.github/workflows/windows-bazel.yml -------------------------------------------------------------------------------- /.github/workflows/windows-cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.github/workflows/windows-cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdformat.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.mdformat.toml -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/.typos.toml -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/SECURITY.md -------------------------------------------------------------------------------- /WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/WORKSPACE.bazel -------------------------------------------------------------------------------- /WORKSPACE.bzlmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/WORKSPACE.bzlmod -------------------------------------------------------------------------------- /bazel/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/BUILD.bazel -------------------------------------------------------------------------------- /bazel/bzlmod0.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/bzlmod0.bzl -------------------------------------------------------------------------------- /bazel/bzlmod1.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/bzlmod1.bzl -------------------------------------------------------------------------------- /bazel/configure_template.bzl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/configure_template.bzl.patch -------------------------------------------------------------------------------- /bazel/crc32c.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/crc32c.BUILD -------------------------------------------------------------------------------- /bazel/curl.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/curl.BUILD -------------------------------------------------------------------------------- /bazel/deps-cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/deps-cache.py -------------------------------------------------------------------------------- /bazel/development0.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/development0.bzl -------------------------------------------------------------------------------- /bazel/development1.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/development1.bzl -------------------------------------------------------------------------------- /bazel/development2.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/development2.bzl -------------------------------------------------------------------------------- /bazel/downloader.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/downloader.cfg -------------------------------------------------------------------------------- /bazel/gapic.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/gapic.bzl -------------------------------------------------------------------------------- /bazel/google_cloud_cpp_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/google_cloud_cpp_deps.bzl -------------------------------------------------------------------------------- /bazel/googleapis.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/googleapis.BUILD -------------------------------------------------------------------------------- /bazel/googleapis.modules.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/googleapis.modules.patch -------------------------------------------------------------------------------- /bazel/libpfm.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/libpfm.BUILD -------------------------------------------------------------------------------- /bazel/library_names.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/library_names.bzl -------------------------------------------------------------------------------- /bazel/pugixml.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/pugixml.BUILD -------------------------------------------------------------------------------- /bazel/workspace0.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/workspace0.bzl -------------------------------------------------------------------------------- /bazel/workspace1.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/workspace1.bzl -------------------------------------------------------------------------------- /bazel/workspace2.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/workspace2.bzl -------------------------------------------------------------------------------- /bazel/workspace3.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/workspace3.bzl -------------------------------------------------------------------------------- /bazel/workspace4.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/workspace4.bzl -------------------------------------------------------------------------------- /bazel/workspace5.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/bazel/workspace5.bzl -------------------------------------------------------------------------------- /ci/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/.dockerignore -------------------------------------------------------------------------------- /ci/check-include-guards.gawk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/check-include-guards.gawk -------------------------------------------------------------------------------- /ci/cloudbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/README.md -------------------------------------------------------------------------------- /ci/cloudbuild/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/build.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/asan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/asan.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/check-api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/check-api.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/checkers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/checkers.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/clang-7.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/clang-7.0.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/clang-cxx20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/clang-cxx20.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/clang-tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/clang-tidy.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/conformance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/conformance.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/coverage.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/cxx14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/cxx14.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/cxx20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/cxx20.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/development.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/gcc-oldest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/gcc-oldest.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/lib/bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/lib/bazel.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/lib/cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/lib/cmake.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/lib/ctest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/lib/ctest.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/lib/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/lib/git.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/lib/vcpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/lib/vcpkg.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/libcxx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/libcxx.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/m32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/m32.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/msan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/msan.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/noex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/noex.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/rotate-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/rotate-keys.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/scan-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/scan-build.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/shared.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/tsan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/tsan.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/ubsan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/ubsan.sh -------------------------------------------------------------------------------- /ci/cloudbuild/builds/xsan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/builds/xsan.sh -------------------------------------------------------------------------------- /ci/cloudbuild/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/cloudbuild.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/notifiers/alerts/function/.gcloudignore: -------------------------------------------------------------------------------- 1 | .build/ 2 | -------------------------------------------------------------------------------- /ci/cloudbuild/schedule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/schedule.sh -------------------------------------------------------------------------------- /ci/cloudbuild/trigger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/trigger.sh -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/asan-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/asan-ci.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/asan-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/asan-pr.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/m32-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/m32-ci.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/m32-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/m32-pr.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/msan-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/msan-ci.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/msan-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/msan-pr.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/noex-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/noex-ci.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/noex-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/noex-pr.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/tsan-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/tsan-ci.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/tsan-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/tsan-pr.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/xsan-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/xsan-ci.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/triggers/xsan-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/cloudbuild/triggers/xsan-pr.yaml -------------------------------------------------------------------------------- /ci/data/fox.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/data/fox.txt.gz -------------------------------------------------------------------------------- /ci/etc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/etc/README.md -------------------------------------------------------------------------------- /ci/etc/cloudcxxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/etc/cloudcxxrc -------------------------------------------------------------------------------- /ci/etc/doxygen/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/etc/doxygen/DoxygenLayout.xml -------------------------------------------------------------------------------- /ci/etc/expected_install_directories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/etc/expected_install_directories -------------------------------------------------------------------------------- /ci/etc/integration-tests-config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/etc/integration-tests-config.ps1 -------------------------------------------------------------------------------- /ci/etc/integration-tests-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/etc/integration-tests-config.sh -------------------------------------------------------------------------------- /ci/etc/invalidated-keyfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/etc/invalidated-keyfile.json -------------------------------------------------------------------------------- /ci/etc/m32-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/etc/m32-toolchain.cmake -------------------------------------------------------------------------------- /ci/etc/oldest-deps/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/etc/oldest-deps/vcpkg.json -------------------------------------------------------------------------------- /ci/etc/quickstart-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/etc/quickstart-config.sh -------------------------------------------------------------------------------- /ci/etc/vcpkg-version.txt: -------------------------------------------------------------------------------- 1 | 2024.09.30 2 | -------------------------------------------------------------------------------- /ci/generate-markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/generate-markdown/README.md -------------------------------------------------------------------------------- /ci/gha/builds/external-account.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/gha/builds/external-account.sh -------------------------------------------------------------------------------- /ci/gha/builds/lib/bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/gha/builds/lib/bazel.sh -------------------------------------------------------------------------------- /ci/gha/builds/lib/cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/gha/builds/lib/cmake.sh -------------------------------------------------------------------------------- /ci/gha/builds/lib/ctest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/gha/builds/lib/ctest.sh -------------------------------------------------------------------------------- /ci/gha/builds/lib/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/gha/builds/lib/linux.sh -------------------------------------------------------------------------------- /ci/gha/builds/lib/macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/gha/builds/lib/macos.sh -------------------------------------------------------------------------------- /ci/gha/builds/lib/windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/gha/builds/lib/windows.sh -------------------------------------------------------------------------------- /ci/gha/builds/macos-bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/gha/builds/macos-bazel.sh -------------------------------------------------------------------------------- /ci/gha/builds/macos-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/gha/builds/macos-cmake.sh -------------------------------------------------------------------------------- /ci/gha/builds/windows-bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/gha/builds/windows-bazel.sh -------------------------------------------------------------------------------- /ci/gha/builds/windows-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/gha/builds/windows-cmake.sh -------------------------------------------------------------------------------- /ci/install-cloud-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/install-cloud-sdk.sh -------------------------------------------------------------------------------- /ci/kokoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/README.md -------------------------------------------------------------------------------- /ci/kokoro/lib/cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/lib/cache.sh -------------------------------------------------------------------------------- /ci/kokoro/lib/gcloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/lib/gcloud.sh -------------------------------------------------------------------------------- /ci/kokoro/lib/vcpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/lib/vcpkg.sh -------------------------------------------------------------------------------- /ci/kokoro/macos/bazel-presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/macos/bazel-presubmit.cfg -------------------------------------------------------------------------------- /ci/kokoro/macos/bazel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/macos/bazel.cfg -------------------------------------------------------------------------------- /ci/kokoro/macos/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/macos/build.sh -------------------------------------------------------------------------------- /ci/kokoro/macos/builds/bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/macos/builds/bazel.sh -------------------------------------------------------------------------------- /ci/kokoro/macos/cmake-vcpkg-presubmit.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/macos/cmake-vcpkg.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/macos/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/macos/common.cfg -------------------------------------------------------------------------------- /ci/kokoro/macos/download-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/macos/download-cache.sh -------------------------------------------------------------------------------- /ci/kokoro/macos/quickstart-cmake-presubmit.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/macos/quickstart-cmake.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/macos/upload-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/macos/upload-cache.sh -------------------------------------------------------------------------------- /ci/kokoro/release/publish.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/release/publish.cfg -------------------------------------------------------------------------------- /ci/kokoro/release/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/release/publish.sh -------------------------------------------------------------------------------- /ci/kokoro/windows/build-32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/windows/build-32.bat -------------------------------------------------------------------------------- /ci/kokoro/windows/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/windows/build.bat -------------------------------------------------------------------------------- /ci/kokoro/windows/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/windows/build.ps1 -------------------------------------------------------------------------------- /ci/kokoro/windows/builds/bazel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/windows/builds/bazel.ps1 -------------------------------------------------------------------------------- /ci/kokoro/windows/builds/cmake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/windows/builds/cmake.ps1 -------------------------------------------------------------------------------- /ci/kokoro/windows/cmake-debug-presubmit.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/windows/cmake-debug.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/windows/cmake-presubmit.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/windows/cmake-release-presubmit.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/windows/cmake-release.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/windows/cmake.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/windows/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/windows/common.cfg -------------------------------------------------------------------------------- /ci/kokoro/windows/lib/bazel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/windows/lib/bazel.ps1 -------------------------------------------------------------------------------- /ci/kokoro/windows/lib/vcpkg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/kokoro/windows/lib/vcpkg.ps1 -------------------------------------------------------------------------------- /ci/kokoro/windows/quickstart-bazel-presubmit.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/windows/quickstart-bazel.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/windows/quickstart-cmake-dll-presubmit.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/windows/quickstart-cmake-dll.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/windows/quickstart-cmake-static-presubmit.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/kokoro/windows/quickstart-cmake-static.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/lib/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/lib/init.sh -------------------------------------------------------------------------------- /ci/lib/io.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/lib/io.sh -------------------------------------------------------------------------------- /ci/lib/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/lib/module -------------------------------------------------------------------------------- /ci/lib/shard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/lib/shard.sh -------------------------------------------------------------------------------- /ci/retry-command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/retry-command.sh -------------------------------------------------------------------------------- /ci/tsan_suppressions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/tsan_suppressions.txt -------------------------------------------------------------------------------- /ci/verify_current_targets/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/verify_current_targets/.bazelrc -------------------------------------------------------------------------------- /ci/verify_current_targets/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /ci/verify_current_targets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/verify_current_targets/README.md -------------------------------------------------------------------------------- /ci/verify_deprecated_targets/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /ci/verify_quickstart/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/ci/verify_quickstart/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/AddPkgConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/AddPkgConfig.cmake -------------------------------------------------------------------------------- /cmake/CompileProtos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/CompileProtos.cmake -------------------------------------------------------------------------------- /cmake/CreateBazelConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/CreateBazelConfig.cmake -------------------------------------------------------------------------------- /cmake/EnableCxxExceptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/EnableCxxExceptions.cmake -------------------------------------------------------------------------------- /cmake/FindGMockWithTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/FindGMockWithTargets.cmake -------------------------------------------------------------------------------- /cmake/FindgRPC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/FindgRPC.cmake -------------------------------------------------------------------------------- /cmake/GoogleCloudCppCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/GoogleCloudCppCommon.cmake -------------------------------------------------------------------------------- /cmake/GoogleCloudCppDoxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/GoogleCloudCppDoxygen.cmake -------------------------------------------------------------------------------- /cmake/GoogleCloudCppFeatures.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/GoogleCloudCppFeatures.cmake -------------------------------------------------------------------------------- /cmake/GoogleCloudCppLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/GoogleCloudCppLibrary.cmake -------------------------------------------------------------------------------- /cmake/GoogleapisConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/GoogleapisConfig.cmake -------------------------------------------------------------------------------- /cmake/IncludeNlohmannJson.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/IncludeNlohmannJson.cmake -------------------------------------------------------------------------------- /cmake/print-all-features.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/print-all-features.cmake -------------------------------------------------------------------------------- /cmake/print-ga-features.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/print-ga-features.cmake -------------------------------------------------------------------------------- /cmake/print-ga-libraries.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/print-ga-libraries.cmake -------------------------------------------------------------------------------- /cmake/quickstart-runner.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/quickstart-runner.cmake -------------------------------------------------------------------------------- /cmake/templates/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/templates/config.cmake.in -------------------------------------------------------------------------------- /cmake/templates/config.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/cmake/templates/config.pc.in -------------------------------------------------------------------------------- /doc/adr/adr-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/doc/adr/adr-template.md -------------------------------------------------------------------------------- /doc/compile-time-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/doc/compile-time-configuration.md -------------------------------------------------------------------------------- /doc/contributor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/doc/contributor/README.md -------------------------------------------------------------------------------- /doc/cpp-style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/doc/cpp-style-guide.md -------------------------------------------------------------------------------- /doc/ctype-cord-workarounds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/doc/ctype-cord-workarounds.md -------------------------------------------------------------------------------- /doc/deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/doc/deprecated.md -------------------------------------------------------------------------------- /doc/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/doc/packaging.md -------------------------------------------------------------------------------- /doc/public-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/doc/public-api.md -------------------------------------------------------------------------------- /docfx/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/.clang-tidy -------------------------------------------------------------------------------- /docfx/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/BUILD.bazel -------------------------------------------------------------------------------- /docfx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/CMakeLists.txt -------------------------------------------------------------------------------- /docfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/README.md -------------------------------------------------------------------------------- /docfx/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/config.h -------------------------------------------------------------------------------- /docfx/docfx.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/docfx.bzl -------------------------------------------------------------------------------- /docfx/docfx_testing.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/docfx_testing.bzl -------------------------------------------------------------------------------- /docfx/doxygen2children.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2children.cc -------------------------------------------------------------------------------- /docfx/doxygen2children.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2children.h -------------------------------------------------------------------------------- /docfx/doxygen2children_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2children_test.cc -------------------------------------------------------------------------------- /docfx/doxygen2docfx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2docfx.cc -------------------------------------------------------------------------------- /docfx/doxygen2markdown.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2markdown.cc -------------------------------------------------------------------------------- /docfx/doxygen2markdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2markdown.h -------------------------------------------------------------------------------- /docfx/doxygen2markdown_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2markdown_test.cc -------------------------------------------------------------------------------- /docfx/doxygen2references.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2references.cc -------------------------------------------------------------------------------- /docfx/doxygen2references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2references.h -------------------------------------------------------------------------------- /docfx/doxygen2references_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2references_test.cc -------------------------------------------------------------------------------- /docfx/doxygen2syntax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2syntax.cc -------------------------------------------------------------------------------- /docfx/doxygen2syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2syntax.h -------------------------------------------------------------------------------- /docfx/doxygen2syntax_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2syntax_test.cc -------------------------------------------------------------------------------- /docfx/doxygen2toc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2toc.cc -------------------------------------------------------------------------------- /docfx/doxygen2toc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2toc.h -------------------------------------------------------------------------------- /docfx/doxygen2toc_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2toc_test.cc -------------------------------------------------------------------------------- /docfx/doxygen2yaml.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2yaml.cc -------------------------------------------------------------------------------- /docfx/doxygen2yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2yaml.h -------------------------------------------------------------------------------- /docfx/doxygen2yaml_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen2yaml_test.cc -------------------------------------------------------------------------------- /docfx/doxygen_errors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen_errors.cc -------------------------------------------------------------------------------- /docfx/doxygen_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen_errors.h -------------------------------------------------------------------------------- /docfx/doxygen_groups.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen_groups.cc -------------------------------------------------------------------------------- /docfx/doxygen_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen_groups.h -------------------------------------------------------------------------------- /docfx/doxygen_groups_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen_groups_test.cc -------------------------------------------------------------------------------- /docfx/doxygen_pages.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen_pages.cc -------------------------------------------------------------------------------- /docfx/doxygen_pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen_pages.h -------------------------------------------------------------------------------- /docfx/doxygen_pages_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/doxygen_pages_test.cc -------------------------------------------------------------------------------- /docfx/function_classifiers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/function_classifiers.cc -------------------------------------------------------------------------------- /docfx/function_classifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/function_classifiers.h -------------------------------------------------------------------------------- /docfx/function_classifiers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/function_classifiers_test.cc -------------------------------------------------------------------------------- /docfx/generate_metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/generate_metadata.cc -------------------------------------------------------------------------------- /docfx/generate_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/generate_metadata.h -------------------------------------------------------------------------------- /docfx/generate_metadata_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/generate_metadata_test.cc -------------------------------------------------------------------------------- /docfx/linked_text_type.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/linked_text_type.cc -------------------------------------------------------------------------------- /docfx/linked_text_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/linked_text_type.h -------------------------------------------------------------------------------- /docfx/linked_text_type_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/linked_text_type_test.cc -------------------------------------------------------------------------------- /docfx/node_name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/node_name.cc -------------------------------------------------------------------------------- /docfx/node_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/node_name.h -------------------------------------------------------------------------------- /docfx/node_name_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/node_name_test.cc -------------------------------------------------------------------------------- /docfx/parse_arguments.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/parse_arguments.cc -------------------------------------------------------------------------------- /docfx/parse_arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/parse_arguments.h -------------------------------------------------------------------------------- /docfx/parse_arguments_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/parse_arguments_test.cc -------------------------------------------------------------------------------- /docfx/public_docs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/public_docs.cc -------------------------------------------------------------------------------- /docfx/public_docs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/public_docs.h -------------------------------------------------------------------------------- /docfx/public_docs_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/public_docs_test.cc -------------------------------------------------------------------------------- /docfx/testing/inputs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/testing/inputs.cc -------------------------------------------------------------------------------- /docfx/testing/inputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/testing/inputs.h -------------------------------------------------------------------------------- /docfx/toc_entry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/toc_entry.cc -------------------------------------------------------------------------------- /docfx/toc_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/toc_entry.h -------------------------------------------------------------------------------- /docfx/unit_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/unit_tests.bzl -------------------------------------------------------------------------------- /docfx/yaml_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/yaml_context.cc -------------------------------------------------------------------------------- /docfx/yaml_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/yaml_context.h -------------------------------------------------------------------------------- /docfx/yaml_context_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/yaml_context_test.cc -------------------------------------------------------------------------------- /docfx/yaml_emit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/yaml_emit.cc -------------------------------------------------------------------------------- /docfx/yaml_emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/docfx/yaml_emit.h -------------------------------------------------------------------------------- /examples/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/examples/BUILD.bazel -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/api_key.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/examples/api_key.cc -------------------------------------------------------------------------------- /examples/batch_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/examples/batch_logging.cc -------------------------------------------------------------------------------- /examples/gcs2cbt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/examples/gcs2cbt.cc -------------------------------------------------------------------------------- /examples/grpc_credential_types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/examples/grpc_credential_types.cc -------------------------------------------------------------------------------- /examples/hello_world_grpc/.dockerignore: -------------------------------------------------------------------------------- 1 | cmake-out/ 2 | -------------------------------------------------------------------------------- /external/googleapis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/external/googleapis/CMakeLists.txt -------------------------------------------------------------------------------- /external/googleapis/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/external/googleapis/config.cmake.in -------------------------------------------------------------------------------- /external/googleapis/protodeps/logging_type.deps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/googleapis/renovate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/external/googleapis/renovate.sh -------------------------------------------------------------------------------- /generator/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/BUILD.bazel -------------------------------------------------------------------------------- /generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/CMakeLists.txt -------------------------------------------------------------------------------- /generator/generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/generator.cc -------------------------------------------------------------------------------- /generator/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/generator.h -------------------------------------------------------------------------------- /generator/generator_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/generator_config.proto -------------------------------------------------------------------------------- /generator/generator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/generator_test.cc -------------------------------------------------------------------------------- /generator/internal/codegen_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/codegen_utils.cc -------------------------------------------------------------------------------- /generator/internal/codegen_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/codegen_utils.h -------------------------------------------------------------------------------- /generator/internal/discovery_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/discovery_file.h -------------------------------------------------------------------------------- /generator/internal/doxygen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/doxygen.cc -------------------------------------------------------------------------------- /generator/internal/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/doxygen.h -------------------------------------------------------------------------------- /generator/internal/doxygen_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/doxygen_test.cc -------------------------------------------------------------------------------- /generator/internal/longrunning.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/longrunning.cc -------------------------------------------------------------------------------- /generator/internal/longrunning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/longrunning.h -------------------------------------------------------------------------------- /generator/internal/mixin_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/mixin_utils.cc -------------------------------------------------------------------------------- /generator/internal/mixin_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/mixin_utils.h -------------------------------------------------------------------------------- /generator/internal/pagination.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/pagination.cc -------------------------------------------------------------------------------- /generator/internal/pagination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/pagination.h -------------------------------------------------------------------------------- /generator/internal/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/printer.h -------------------------------------------------------------------------------- /generator/internal/printer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/printer_test.cc -------------------------------------------------------------------------------- /generator/internal/request_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/request_id.cc -------------------------------------------------------------------------------- /generator/internal/request_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/request_id.h -------------------------------------------------------------------------------- /generator/internal/routing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/routing.cc -------------------------------------------------------------------------------- /generator/internal/routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/routing.h -------------------------------------------------------------------------------- /generator/internal/routing_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/routing_test.cc -------------------------------------------------------------------------------- /generator/internal/stub_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/internal/stub_generator.h -------------------------------------------------------------------------------- /generator/plugin_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/plugin_main.cc -------------------------------------------------------------------------------- /generator/standalone_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/standalone_main.cc -------------------------------------------------------------------------------- /generator/templates/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/templates/WORKSPACE.bazel -------------------------------------------------------------------------------- /generator/testing/printer_mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/generator/testing/printer_mocks.h -------------------------------------------------------------------------------- /google/cloud/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/README.md -------------------------------------------------------------------------------- /google/cloud/access_token.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/access_token.cc -------------------------------------------------------------------------------- /google/cloud/access_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/access_token.h -------------------------------------------------------------------------------- /google/cloud/access_token_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/access_token_test.cc -------------------------------------------------------------------------------- /google/cloud/accessapproval/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/accesscontextmanager/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/advisorynotifications/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/aiplatform/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/aiplatform/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/aiplatform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/aiplatform/README.md -------------------------------------------------------------------------------- /google/cloud/aiplatform/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/alloydb/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/alloydb/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/alloydb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/alloydb/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/alloydb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/alloydb/README.md -------------------------------------------------------------------------------- /google/cloud/alloydb/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/alloydb/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/alloydb/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/apigateway/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/apigateway/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/apigateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/apigateway/README.md -------------------------------------------------------------------------------- /google/cloud/apigateway/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/apigeeconnect/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/apikeys/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/apikeys/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/apikeys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/apikeys/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/apikeys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/apikeys/README.md -------------------------------------------------------------------------------- /google/cloud/apikeys/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/apikeys/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/apikeys/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/appengine/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/appengine/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/appengine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/appengine/README.md -------------------------------------------------------------------------------- /google/cloud/appengine/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/appengine/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/appengine/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/apphub/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/apphub/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/apphub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/apphub/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/apphub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/apphub/README.md -------------------------------------------------------------------------------- /google/cloud/apphub/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/apphub/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/apphub/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/apphub/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/apphub/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/artifactregistry/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/asset/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/asset/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/asset/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/asset/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/asset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/asset/README.md -------------------------------------------------------------------------------- /google/cloud/asset/asset_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/asset/asset_client.h -------------------------------------------------------------------------------- /google/cloud/asset/asset_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/asset/asset_options.h -------------------------------------------------------------------------------- /google/cloud/asset/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/asset/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/asset/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/asset/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/asset/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/assuredworkloads/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/async_operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/async_operation.h -------------------------------------------------------------------------------- /google/cloud/automl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/automl/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/automl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/automl/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/automl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/automl/README.md -------------------------------------------------------------------------------- /google/cloud/automl/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/automl/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/automl/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/automl/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/automl/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/background_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/background_threads.h -------------------------------------------------------------------------------- /google/cloud/backoff_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/backoff_policy.h -------------------------------------------------------------------------------- /google/cloud/backupdr/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/backupdr/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/backupdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/backupdr/README.md -------------------------------------------------------------------------------- /google/cloud/backupdr/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/backupdr/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/backupdr/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/baremetalsolution/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/batch/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/batch/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/batch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/batch/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/batch/README.md -------------------------------------------------------------------------------- /google/cloud/batch/batch_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/batch/batch_client.h -------------------------------------------------------------------------------- /google/cloud/batch/batch_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/batch/batch_options.h -------------------------------------------------------------------------------- /google/cloud/batch/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/batch/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/batch/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/batch/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/batch/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/beyondcorp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/beyondcorp/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/beyondcorp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/beyondcorp/README.md -------------------------------------------------------------------------------- /google/cloud/beyondcorp/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/bigquery/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigquery/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/bigquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigquery/README.md -------------------------------------------------------------------------------- /google/cloud/bigquery/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigquery/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/bigquery/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/bigquerycontrol/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/bigtable/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/.clang-tidy -------------------------------------------------------------------------------- /google/cloud/bigtable/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/bigtable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/README.md -------------------------------------------------------------------------------- /google/cloud/bigtable/bound_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/bound_query.h -------------------------------------------------------------------------------- /google/cloud/bigtable/bytes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/bytes.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/bytes.h -------------------------------------------------------------------------------- /google/cloud/bigtable/bytes_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/bytes_test.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/cell.h -------------------------------------------------------------------------------- /google/cloud/bigtable/cell_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/cell_test.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/client.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/client.h -------------------------------------------------------------------------------- /google/cloud/bigtable/data_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/data_client.h -------------------------------------------------------------------------------- /google/cloud/bigtable/expr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/expr.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/expr.h -------------------------------------------------------------------------------- /google/cloud/bigtable/expr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/expr_test.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/filters.h -------------------------------------------------------------------------------- /google/cloud/bigtable/iam_binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/iam_binding.h -------------------------------------------------------------------------------- /google/cloud/bigtable/iam_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/iam_policy.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/iam_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/iam_policy.h -------------------------------------------------------------------------------- /google/cloud/bigtable/mutations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/mutations.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/mutations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/mutations.h -------------------------------------------------------------------------------- /google/cloud/bigtable/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/options.h -------------------------------------------------------------------------------- /google/cloud/bigtable/query_row.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/query_row.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/query_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/query_row.h -------------------------------------------------------------------------------- /google/cloud/bigtable/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/bigtable/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/row.h -------------------------------------------------------------------------------- /google/cloud/bigtable/row_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/row_key.h -------------------------------------------------------------------------------- /google/cloud/bigtable/row_range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/row_range.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/row_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/row_range.h -------------------------------------------------------------------------------- /google/cloud/bigtable/row_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/row_reader.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/row_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/row_reader.h -------------------------------------------------------------------------------- /google/cloud/bigtable/row_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/row_set.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/row_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/row_set.h -------------------------------------------------------------------------------- /google/cloud/bigtable/row_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/row_stream.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/row_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/row_stream.h -------------------------------------------------------------------------------- /google/cloud/bigtable/row_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/row_test.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/table.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/table.h -------------------------------------------------------------------------------- /google/cloud/bigtable/table_admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/table_admin.h -------------------------------------------------------------------------------- /google/cloud/bigtable/table_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/table_test.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/timestamp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/timestamp.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/timestamp.h -------------------------------------------------------------------------------- /google/cloud/bigtable/value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/value.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/value.h -------------------------------------------------------------------------------- /google/cloud/bigtable/value_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/value_test.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/version.cc -------------------------------------------------------------------------------- /google/cloud/bigtable/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/bigtable/version.h -------------------------------------------------------------------------------- /google/cloud/billing/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/billing/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/billing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/billing/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/billing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/billing/README.md -------------------------------------------------------------------------------- /google/cloud/billing/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/billing/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/billing/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/binaryauthorization/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/capture_build_info.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/capture_build_info.bzl -------------------------------------------------------------------------------- /google/cloud/certificatemanager/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/channel/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/channel/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/channel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/channel/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/channel/README.md -------------------------------------------------------------------------------- /google/cloud/channel/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/channel/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/channel/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/chronicle/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/chronicle/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/chronicle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/chronicle/README.md -------------------------------------------------------------------------------- /google/cloud/chronicle/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/chronicle/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/cloudbuild/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/cloudbuild/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/cloudbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/cloudbuild/README.md -------------------------------------------------------------------------------- /google/cloud/cloudbuild/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/cloudcontrolspartner/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/cloudquotas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/cloudquotas/README.md -------------------------------------------------------------------------------- /google/cloud/cloudquotas/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/commerce/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/commerce/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/commerce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/commerce/README.md -------------------------------------------------------------------------------- /google/cloud/commerce/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/commerce/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/commerce/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/common_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/common_options.h -------------------------------------------------------------------------------- /google/cloud/common_options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/common_options_test.cc -------------------------------------------------------------------------------- /google/cloud/completion_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/completion_queue.cc -------------------------------------------------------------------------------- /google/cloud/completion_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/completion_queue.h -------------------------------------------------------------------------------- /google/cloud/composer/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/composer/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/composer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/composer/README.md -------------------------------------------------------------------------------- /google/cloud/composer/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/composer/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/composer/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/compute/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/compute/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/compute/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/compute/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/compute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/compute/README.md -------------------------------------------------------------------------------- /google/cloud/compute/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/compute/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/compute/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/confidentialcomputing/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/config-rest.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/config-rest.cmake.in -------------------------------------------------------------------------------- /google/cloud/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/config.cmake.in -------------------------------------------------------------------------------- /google/cloud/config/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/config/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/config/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/config/README.md -------------------------------------------------------------------------------- /google/cloud/config/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/config/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/config/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/config/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/config/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/connection_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/connection_options.cc -------------------------------------------------------------------------------- /google/cloud/connection_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/connection_options.h -------------------------------------------------------------------------------- /google/cloud/connectors/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/connectors/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/connectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/connectors/README.md -------------------------------------------------------------------------------- /google/cloud/connectors/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/contactcenterinsights/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/container/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/container/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/container/README.md -------------------------------------------------------------------------------- /google/cloud/container/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/container/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/container/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/containeranalysis/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/contentwarehouse/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/credentials.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/credentials.cc -------------------------------------------------------------------------------- /google/cloud/credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/credentials.h -------------------------------------------------------------------------------- /google/cloud/datacatalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/datacatalog/README.md -------------------------------------------------------------------------------- /google/cloud/datacatalog/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/dataform/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dataform/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/dataform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dataform/README.md -------------------------------------------------------------------------------- /google/cloud/dataform/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dataform/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/datafusion/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/datafusion/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/datafusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/datafusion/README.md -------------------------------------------------------------------------------- /google/cloud/datafusion/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/datamigration/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/dataplex/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dataplex/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/dataplex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dataplex/README.md -------------------------------------------------------------------------------- /google/cloud/dataplex/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dataplex/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/dataplex/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/dataproc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dataproc/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/dataproc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dataproc/README.md -------------------------------------------------------------------------------- /google/cloud/dataproc/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dataproc/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/dataproc/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/datastore/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/datastore/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/datastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/datastore/README.md -------------------------------------------------------------------------------- /google/cloud/datastore/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/datastore/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/datastore/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/datastream/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/datastream/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/datastream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/datastream/README.md -------------------------------------------------------------------------------- /google/cloud/datastream/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/deploy/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/deploy/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/deploy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/deploy/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/deploy/README.md -------------------------------------------------------------------------------- /google/cloud/deploy/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/deploy/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/deploy/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/deploy/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/deploy/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/developerconnect/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/dialogflow_cx/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/dialogflow_es/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/discoveryengine/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/dlp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dlp/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/dlp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dlp/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/dlp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dlp/README.md -------------------------------------------------------------------------------- /google/cloud/dlp/dlp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dlp/dlp_client.h -------------------------------------------------------------------------------- /google/cloud/dlp/dlp_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dlp/dlp_connection.h -------------------------------------------------------------------------------- /google/cloud/dlp/dlp_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dlp/dlp_options.h -------------------------------------------------------------------------------- /google/cloud/dlp/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dlp/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/dlp/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dlp/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/dlp/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/dlp/v2/dlp_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dlp/v2/dlp_client.cc -------------------------------------------------------------------------------- /google/cloud/dlp/v2/dlp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dlp/v2/dlp_client.h -------------------------------------------------------------------------------- /google/cloud/dlp/v2/dlp_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/dlp/v2/dlp_options.h -------------------------------------------------------------------------------- /google/cloud/doc/common-main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/doc/common-main.dox -------------------------------------------------------------------------------- /google/cloud/doc/error-handling.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/doc/error-handling.dox -------------------------------------------------------------------------------- /google/cloud/doc/guac.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/doc/guac.dox -------------------------------------------------------------------------------- /google/cloud/doc/logging.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/doc/logging.dox -------------------------------------------------------------------------------- /google/cloud/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/documentai/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/documentai/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/documentai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/documentai/README.md -------------------------------------------------------------------------------- /google/cloud/documentai/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/domains/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/domains/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/domains/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/domains/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/domains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/domains/README.md -------------------------------------------------------------------------------- /google/cloud/domains/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/domains/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/domains/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/edgecontainer/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/edgenetwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/edgenetwork/README.md -------------------------------------------------------------------------------- /google/cloud/edgenetwork/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/essentialcontacts/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/eventarc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/eventarc/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/eventarc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/eventarc/README.md -------------------------------------------------------------------------------- /google/cloud/eventarc/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/eventarc/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/eventarc/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/experimental_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/experimental_tag.h -------------------------------------------------------------------------------- /google/cloud/filestore/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/filestore/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/filestore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/filestore/README.md -------------------------------------------------------------------------------- /google/cloud/filestore/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/functions/README.md -------------------------------------------------------------------------------- /google/cloud/functions/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/future.h -------------------------------------------------------------------------------- /google/cloud/future_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/future_generic.h -------------------------------------------------------------------------------- /google/cloud/future_void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/future_void.h -------------------------------------------------------------------------------- /google/cloud/future_void_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/future_void_test.cc -------------------------------------------------------------------------------- /google/cloud/gkebackup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/gkebackup/README.md -------------------------------------------------------------------------------- /google/cloud/gkebackup/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/gkeconnect/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/gkehub/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/gkehub/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/gkehub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/gkehub/README.md -------------------------------------------------------------------------------- /google/cloud/gkehub/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/gkehub/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/gkehub/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/gkemulticloud/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/grafeas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/grafeas/README.md -------------------------------------------------------------------------------- /google/cloud/grpc_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/grpc_options.cc -------------------------------------------------------------------------------- /google/cloud/grpc_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/grpc_options.h -------------------------------------------------------------------------------- /google/cloud/iam/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iam/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/iam/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iam/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/iam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iam/README.md -------------------------------------------------------------------------------- /google/cloud/iam/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iam/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/iam/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iam/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/iam/iam_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iam/iam_client.h -------------------------------------------------------------------------------- /google/cloud/iam/iam_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iam/iam_options.h -------------------------------------------------------------------------------- /google/cloud/iam/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/iam/retry_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iam/retry_traits.h -------------------------------------------------------------------------------- /google/cloud/iam_updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iam_updater.h -------------------------------------------------------------------------------- /google/cloud/iap/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iap/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/iap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iap/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/iap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iap/README.md -------------------------------------------------------------------------------- /google/cloud/iap/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iap/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/iap/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/iap/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/iap/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/idempotency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/idempotency.h -------------------------------------------------------------------------------- /google/cloud/ids/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/ids/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/ids/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/ids/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/ids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/ids/README.md -------------------------------------------------------------------------------- /google/cloud/ids/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/ids/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/ids/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/ids/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/ids/ids_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/ids/ids_client.h -------------------------------------------------------------------------------- /google/cloud/ids/ids_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/ids/ids_options.h -------------------------------------------------------------------------------- /google/cloud/ids/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/ids/v1/ids_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/ids/v1/ids_client.h -------------------------------------------------------------------------------- /google/cloud/internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/internal/README.md -------------------------------------------------------------------------------- /google/cloud/internal/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/internal/clock.h -------------------------------------------------------------------------------- /google/cloud/internal/getenv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/internal/getenv.cc -------------------------------------------------------------------------------- /google/cloud/internal/getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/internal/getenv.h -------------------------------------------------------------------------------- /google/cloud/internal/log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/internal/log_impl.h -------------------------------------------------------------------------------- /google/cloud/internal/random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/internal/random.cc -------------------------------------------------------------------------------- /google/cloud/internal/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/internal/random.h -------------------------------------------------------------------------------- /google/cloud/internal/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/internal/strerror.h -------------------------------------------------------------------------------- /google/cloud/internal/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/internal/tuple.h -------------------------------------------------------------------------------- /google/cloud/internal/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/internal/utility.h -------------------------------------------------------------------------------- /google/cloud/kms/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/kms/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/kms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/kms/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/kms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/kms/README.md -------------------------------------------------------------------------------- /google/cloud/kms/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/kms/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/kms/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/kms/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/kms/ekm_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/kms/ekm_client.h -------------------------------------------------------------------------------- /google/cloud/kms/ekm_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/kms/ekm_options.h -------------------------------------------------------------------------------- /google/cloud/kms/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/kms/v1/ekm_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/kms/v1/ekm_client.h -------------------------------------------------------------------------------- /google/cloud/kms_key_name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/kms_key_name.cc -------------------------------------------------------------------------------- /google/cloud/kms_key_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/kms_key_name.h -------------------------------------------------------------------------------- /google/cloud/language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/language/README.md -------------------------------------------------------------------------------- /google/cloud/language/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/location.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/location.cc -------------------------------------------------------------------------------- /google/cloud/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/location.h -------------------------------------------------------------------------------- /google/cloud/location_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/location_test.cc -------------------------------------------------------------------------------- /google/cloud/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/log.cc -------------------------------------------------------------------------------- /google/cloud/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/log.h -------------------------------------------------------------------------------- /google/cloud/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/log_test.cc -------------------------------------------------------------------------------- /google/cloud/logging/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/logging/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/logging/README.md -------------------------------------------------------------------------------- /google/cloud/logging/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/lustre/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/lustre/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/lustre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/lustre/README.md -------------------------------------------------------------------------------- /google/cloud/lustre/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/lustre/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/managedidentities/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/managedkafka/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/memcache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/memcache/README.md -------------------------------------------------------------------------------- /google/cloud/memcache/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/metastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/metastore/README.md -------------------------------------------------------------------------------- /google/cloud/metastore/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/migrationcenter/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/monitoring/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/netapp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/netapp/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/netapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/netapp/README.md -------------------------------------------------------------------------------- /google/cloud/netapp/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/netapp/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/netapp/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/networkconnectivity/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/networkmanagement/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/networksecurity/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/networkservices/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/no_await_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/no_await_tag.h -------------------------------------------------------------------------------- /google/cloud/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/notebooks/README.md -------------------------------------------------------------------------------- /google/cloud/notebooks/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/oauth2/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/oauth2/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/oauth2/README.md -------------------------------------------------------------------------------- /google/cloud/oauth2/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/opentelemetry/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/optimization/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/optional.h -------------------------------------------------------------------------------- /google/cloud/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/options.cc -------------------------------------------------------------------------------- /google/cloud/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/options.h -------------------------------------------------------------------------------- /google/cloud/options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/options_test.cc -------------------------------------------------------------------------------- /google/cloud/orgpolicy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/orgpolicy/README.md -------------------------------------------------------------------------------- /google/cloud/orgpolicy/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/osconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/osconfig/README.md -------------------------------------------------------------------------------- /google/cloud/osconfig/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/oslogin/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/oslogin/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/oslogin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/oslogin/README.md -------------------------------------------------------------------------------- /google/cloud/oslogin/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/parallelstore/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/policysimulator/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/policytroubleshooter/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/polling_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/polling_policy.h -------------------------------------------------------------------------------- /google/cloud/privateca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/privateca/README.md -------------------------------------------------------------------------------- /google/cloud/privateca/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/privilegedaccessmanager/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/profiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/profiler/README.md -------------------------------------------------------------------------------- /google/cloud/profiler/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/project.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/project.cc -------------------------------------------------------------------------------- /google/cloud/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/project.h -------------------------------------------------------------------------------- /google/cloud/project_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/project_test.cc -------------------------------------------------------------------------------- /google/cloud/publicca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/publicca/README.md -------------------------------------------------------------------------------- /google/cloud/publicca/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/pubsub/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/.clang-tidy -------------------------------------------------------------------------------- /google/cloud/pubsub/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/pubsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/README.md -------------------------------------------------------------------------------- /google/cloud/pubsub/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/message.cc -------------------------------------------------------------------------------- /google/cloud/pubsub/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/message.h -------------------------------------------------------------------------------- /google/cloud/pubsub/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/options.cc -------------------------------------------------------------------------------- /google/cloud/pubsub/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/options.h -------------------------------------------------------------------------------- /google/cloud/pubsub/publisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/publisher.h -------------------------------------------------------------------------------- /google/cloud/pubsub/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/pubsub/samples/testdata/valid_message.pb: -------------------------------------------------------------------------------- 1 | 2 | New YorkNY -------------------------------------------------------------------------------- /google/cloud/pubsub/schema.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/schema.cc -------------------------------------------------------------------------------- /google/cloud/pubsub/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/schema.h -------------------------------------------------------------------------------- /google/cloud/pubsub/snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/snapshot.cc -------------------------------------------------------------------------------- /google/cloud/pubsub/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/snapshot.h -------------------------------------------------------------------------------- /google/cloud/pubsub/subscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/subscriber.h -------------------------------------------------------------------------------- /google/cloud/pubsub/topic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/topic.cc -------------------------------------------------------------------------------- /google/cloud/pubsub/topic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/topic.h -------------------------------------------------------------------------------- /google/cloud/pubsub/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsub/version.h -------------------------------------------------------------------------------- /google/cloud/pubsublite/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/pubsublite/topic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/pubsublite/topic.h -------------------------------------------------------------------------------- /google/cloud/rapidmigrationassessment/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/recaptchaenterprise/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/recommender/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/redis/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/redis/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/redis/README.md -------------------------------------------------------------------------------- /google/cloud/redis/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/redis/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/redis/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/resourcemanager/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/rest_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/rest_options.h -------------------------------------------------------------------------------- /google/cloud/retail/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/retail/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/retail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/retail/README.md -------------------------------------------------------------------------------- /google/cloud/retail/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/retail/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/retail/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/retry_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/retry_policy.h -------------------------------------------------------------------------------- /google/cloud/rpc_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/rpc_metadata.h -------------------------------------------------------------------------------- /google/cloud/run/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/run/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/run/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/run/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/run/README.md -------------------------------------------------------------------------------- /google/cloud/run/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/run/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/run/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/run/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/run/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/samples/samples.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/samples/samples.cc -------------------------------------------------------------------------------- /google/cloud/scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/scheduler/README.md -------------------------------------------------------------------------------- /google/cloud/scheduler/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/secretmanager/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/securesourcemanager/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/securitycenter/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/securitycentermanagement/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/servicecontrol/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/servicedirectory/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/servicehealth/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/servicemanagement/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/serviceusage/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/shell/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/shell/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/shell/README.md -------------------------------------------------------------------------------- /google/cloud/shell/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/shell/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/shell/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/spanner/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/spanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/README.md -------------------------------------------------------------------------------- /google/cloud/spanner/backup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/backup.cc -------------------------------------------------------------------------------- /google/cloud/spanner/backup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/backup.h -------------------------------------------------------------------------------- /google/cloud/spanner/bytes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/bytes.cc -------------------------------------------------------------------------------- /google/cloud/spanner/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/bytes.h -------------------------------------------------------------------------------- /google/cloud/spanner/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/client.cc -------------------------------------------------------------------------------- /google/cloud/spanner/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/client.h -------------------------------------------------------------------------------- /google/cloud/spanner/client_options.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /google/cloud/spanner/database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/database.cc -------------------------------------------------------------------------------- /google/cloud/spanner/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/database.h -------------------------------------------------------------------------------- /google/cloud/spanner/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/date.h -------------------------------------------------------------------------------- /google/cloud/spanner/instance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/instance.cc -------------------------------------------------------------------------------- /google/cloud/spanner/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/instance.h -------------------------------------------------------------------------------- /google/cloud/spanner/interval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/interval.cc -------------------------------------------------------------------------------- /google/cloud/spanner/interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/interval.h -------------------------------------------------------------------------------- /google/cloud/spanner/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/json.h -------------------------------------------------------------------------------- /google/cloud/spanner/keys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/keys.cc -------------------------------------------------------------------------------- /google/cloud/spanner/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/keys.h -------------------------------------------------------------------------------- /google/cloud/spanner/lock_hint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/lock_hint.h -------------------------------------------------------------------------------- /google/cloud/spanner/mocks/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/mocks/row.h -------------------------------------------------------------------------------- /google/cloud/spanner/mutations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/mutations.h -------------------------------------------------------------------------------- /google/cloud/spanner/numeric.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/numeric.cc -------------------------------------------------------------------------------- /google/cloud/spanner/numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/numeric.h -------------------------------------------------------------------------------- /google/cloud/spanner/oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/oid.h -------------------------------------------------------------------------------- /google/cloud/spanner/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/options.h -------------------------------------------------------------------------------- /google/cloud/spanner/order_by.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/order_by.h -------------------------------------------------------------------------------- /google/cloud/spanner/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/spanner/results.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/results.cc -------------------------------------------------------------------------------- /google/cloud/spanner/results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/results.h -------------------------------------------------------------------------------- /google/cloud/spanner/row.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/row.cc -------------------------------------------------------------------------------- /google/cloud/spanner/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/row.h -------------------------------------------------------------------------------- /google/cloud/spanner/row_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/row_test.cc -------------------------------------------------------------------------------- /google/cloud/spanner/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/timestamp.h -------------------------------------------------------------------------------- /google/cloud/spanner/uuid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/uuid.cc -------------------------------------------------------------------------------- /google/cloud/spanner/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/uuid.h -------------------------------------------------------------------------------- /google/cloud/spanner/value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/value.cc -------------------------------------------------------------------------------- /google/cloud/spanner/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/value.h -------------------------------------------------------------------------------- /google/cloud/spanner/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/version.cc -------------------------------------------------------------------------------- /google/cloud/spanner/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/spanner/version.h -------------------------------------------------------------------------------- /google/cloud/speech/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/speech/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/speech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/speech/README.md -------------------------------------------------------------------------------- /google/cloud/speech/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/speech/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/speech/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/sql/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/sql/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/sql/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/sql/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/sql/README.md -------------------------------------------------------------------------------- /google/cloud/sql/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/sql/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/sql/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/sql/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/sql/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/ssl_certificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/ssl_certificate.h -------------------------------------------------------------------------------- /google/cloud/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/status.cc -------------------------------------------------------------------------------- /google/cloud/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/status.h -------------------------------------------------------------------------------- /google/cloud/status_or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/status_or.h -------------------------------------------------------------------------------- /google/cloud/status_or_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/status_or_test.cc -------------------------------------------------------------------------------- /google/cloud/status_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/status_test.cc -------------------------------------------------------------------------------- /google/cloud/storage/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/storage/.clang-tidy -------------------------------------------------------------------------------- /google/cloud/storage/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/storage/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/storage/README.md -------------------------------------------------------------------------------- /google/cloud/storage/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/storage/client.cc -------------------------------------------------------------------------------- /google/cloud/storage/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/storage/client.h -------------------------------------------------------------------------------- /google/cloud/storage/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/storage/options.h -------------------------------------------------------------------------------- /google/cloud/storage/owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/storage/owner.h -------------------------------------------------------------------------------- /google/cloud/storage/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/storage/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/storage/version.cc -------------------------------------------------------------------------------- /google/cloud/storage/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/storage/version.h -------------------------------------------------------------------------------- /google/cloud/storagecontrol/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/storageinsights/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/storagetransfer/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/stream_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/stream_range.h -------------------------------------------------------------------------------- /google/cloud/support/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/support/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/support/README.md -------------------------------------------------------------------------------- /google/cloud/support/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/talent/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/talent/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/talent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/talent/README.md -------------------------------------------------------------------------------- /google/cloud/talent/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/talent/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/talent/job_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/talent/job_client.h -------------------------------------------------------------------------------- /google/cloud/talent/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/tasks/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tasks/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tasks/README.md -------------------------------------------------------------------------------- /google/cloud/tasks/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tasks/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/tasks/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/telcoautomation/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/terminate_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/terminate_handler.h -------------------------------------------------------------------------------- /google/cloud/texttospeech/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/timeseriesinsights/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/tpu/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tpu/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/tpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tpu/CMakeLists.txt -------------------------------------------------------------------------------- /google/cloud/tpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tpu/README.md -------------------------------------------------------------------------------- /google/cloud/tpu/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tpu/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/tpu/doc/options.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tpu/doc/options.dox -------------------------------------------------------------------------------- /google/cloud/tpu/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/tpu/tpu_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tpu/tpu_client.h -------------------------------------------------------------------------------- /google/cloud/tpu/tpu_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tpu/tpu_options.h -------------------------------------------------------------------------------- /google/cloud/tpu/v1/tpu_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tpu/v1/tpu_client.h -------------------------------------------------------------------------------- /google/cloud/tpu/v2/tpu_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tpu/v2/tpu_client.h -------------------------------------------------------------------------------- /google/cloud/trace/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/trace/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/trace/README.md -------------------------------------------------------------------------------- /google/cloud/trace/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/trace/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/trace/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/tracing_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tracing_options.cc -------------------------------------------------------------------------------- /google/cloud/tracing_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/tracing_options.h -------------------------------------------------------------------------------- /google/cloud/translate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/translate/README.md -------------------------------------------------------------------------------- /google/cloud/translate/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/universe_domain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/universe_domain.cc -------------------------------------------------------------------------------- /google/cloud/universe_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/universe_domain.h -------------------------------------------------------------------------------- /google/cloud/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/version.cc -------------------------------------------------------------------------------- /google/cloud/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/version.h -------------------------------------------------------------------------------- /google/cloud/video/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/video/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/video/README.md -------------------------------------------------------------------------------- /google/cloud/video/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/video/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/video/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/videointelligence/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/vision/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/vision/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/vision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/vision/README.md -------------------------------------------------------------------------------- /google/cloud/vision/doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/vision/doc/main.dox -------------------------------------------------------------------------------- /google/cloud/vision/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/vmmigration/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/vmwareengine/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/vpcaccess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/vpcaccess/README.md -------------------------------------------------------------------------------- /google/cloud/vpcaccess/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/webrisk/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/webrisk/BUILD.bazel -------------------------------------------------------------------------------- /google/cloud/webrisk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/webrisk/README.md -------------------------------------------------------------------------------- /google/cloud/webrisk/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/websecurityscanner/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/google/cloud/workflows/README.md -------------------------------------------------------------------------------- /google/cloud/workflows/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /google/cloud/workstations/quickstart/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.1 2 | -------------------------------------------------------------------------------- /libraries.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/libraries.bzl -------------------------------------------------------------------------------- /protos/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/protos/BUILD.bazel -------------------------------------------------------------------------------- /release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/release/README.md -------------------------------------------------------------------------------- /release/changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/release/changes.sh -------------------------------------------------------------------------------- /release/publish-bcr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/release/publish-bcr.sh -------------------------------------------------------------------------------- /release/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/release/release.sh -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-cpp/HEAD/vcpkg.json --------------------------------------------------------------------------------