How to Override the Default Endpoint

In some cases, you may need to override the default endpoint used by the client library. Use theEndpointOption when initializing the client library to change this default.

For example, this will override the default endpoint forlanguage_v1::LanguageServiceClient:

  // This configuration is common with Private Google Access:  //     https://cloud.google.com/vpc/docs/private-google-access  auto options = google::cloud::Options{}.set<google::cloud::EndpointOption>(      "private.googleapis.com");  auto client = google::cloud::language_v1::LanguageServiceClient(      google::cloud::language_v1::MakeLanguageServiceConnection(options));

Follow these links to find examples for other*Client classes:

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-17 UTC.