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
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"
The text was updated successfully, but these errors were encountered:
universe_domain
is required as an optional field ingoogle.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.
The text was updated successfully, but these errors were encountered: