Rename the `endpoint_urls` field to `endpoint_uris` to be consistent with
Google API nomenclature. PiperOrigin-RevId: 280581337
This commit is contained in:
parent
1935fb8889
commit
f6808ff4e8
|
|
@ -398,15 +398,15 @@ message Instance {
|
|||
// allow "_" in a future release.
|
||||
map<string, string> labels = 7;
|
||||
|
||||
// Output only. The endpoint URLs based on the instance config.
|
||||
// Output only. The endpoint URIs based on the instance config.
|
||||
// For example, instances located in a specific cloud region (or multi region)
|
||||
// such as nam3, would have a nam3 specific endpoint URL.
|
||||
// This URL is to be used implictly by SDK clients, with fallback to default
|
||||
// URL. These endpoints are intended to optimize the network routing between
|
||||
// such as nam3, would have a nam3 specific endpoint URI.
|
||||
// This URI is to be used implictly by SDK clients, with fallback to default
|
||||
// URI. These endpoints are intended to optimize the network routing between
|
||||
// the client and the instance's serving resources.
|
||||
// If multiple endpoints are present,
|
||||
// client may establish connections using any of the given URLs.
|
||||
repeated string endpoint_urls = 8;
|
||||
// If multiple endpoints are present, client may establish connections using
|
||||
// any of the given URIs.
|
||||
repeated string endpoint_uris = 8;
|
||||
}
|
||||
|
||||
// The request for [ListInstanceConfigs][google.spanner.admin.instance.v1.InstanceAdmin.ListInstanceConfigs].
|
||||
|
|
|
|||
Loading…
Reference in New Issue