Override the Default Endpoint
Stay organized with collections
Save and categorize content based on your preferences.
In some cases, you may need to override the default endpoint used by the client library. The google::cloud::storage::RestEndpointOption can be used in this case:
namespace g = ::google::cloud;
namespace gcs = ::google::cloud::storage;
[](std::string const& bucket_name, std::string const& object_name) {
// NOTE: the CLOUD_STORAGE_EMULATOR_HOST environment variable overrides any
// value provided here.
auto client = gcs::Client(g::Options{}.set<gcs::RestEndpointOption>(
"https://storage.googleapis.com"));
PerformSomeOperations(client, bucket_name, object_name);
}
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-07-15 UTC.
[null,null,["Last updated 2026-07-15 UTC."],[],[]]