How to Override the Default Endpoint
In some cases, you may need to override the default endpoint used by the client library. Use the EndpointOption when initializing the client library to change this default.
For example, this will override the default endpoint for monitoring_dashboard_v1::DashboardsServiceClient
:
// 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::monitoring_dashboard_v1::DashboardsServiceClient(
google::cloud::monitoring_dashboard_v1::MakeDashboardsServiceConnection(
options));
Follow these links to find examples for other *Client
classes:
monitoring_dashboard_v1::DashboardsServiceClient
monitoring_metricsscope_v1::MetricsScopesClient
monitoring_v3::AlertPolicyServiceClient
monitoring_v3::GroupServiceClient
monitoring_v3::MetricServiceClient
monitoring_v3::NotificationChannelServiceClient
monitoring_v3::QueryServiceClient
monitoring_v3::ServiceMonitoringServiceClient
monitoring_v3::UptimeCheckServiceClient