You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 23, 2026. It is now read-only.
universe_domain is required as an optional field in google.api_core.ClientOptions to enable users to explicitly configure universe domain as a client option.
This will enable API endpoint to be resolved using a templated value if a universe domain is specified or otherwise default to GDU.
# user configures the universe domain:client=Client(google.api_core.ClientOptions{universe_domain="foo.com"})
# api_endpoint points to the TPC universe:api_endpoint="service.foo.com"
# user does not configure the universe domain:client=Client(google.api_core.ClientOptions{})
# api_endpoint defaults to GDU:api_endpoint="service.googleapis.com"
universe_domainis required as an optional field ingoogle.api_core.ClientOptionsto enable users to explicitly configure universe domain as a client option.This will enable API endpoint to be resolved using a templated value if a universe domain is specified or otherwise default to GDU.