Rename message types in hds.proto to improve readability (#4109)

Renaming message types in api/envoy/service/discovery/v2/hds.proto to improve readability

Risk Level:
Low

This is for #1310.

Signed-off-by: Lilika Markatou <lilika@google.com>

Mirrored from https://github.com/envoyproxy/envoy @ 9b33c49d1ca32e73d761849a617b988ed6b596a7
pull/620/head
data-plane-api(CircleCI) 7 years ago
parent 920bd89ef9
commit 2589094979
  1. 6
      envoy/service/discovery/v2/hds.proto

@ -77,7 +77,7 @@ message Capability {
TCP = 1;
REDIS = 2;
}
repeated Protocol health_check_protocol = 1;
repeated Protocol health_check_protocols = 1;
}
message HealthCheckRequest {
@ -113,11 +113,11 @@ message LocalityEndpoints {
message ClusterHealthCheck {
string cluster_name = 1;
repeated envoy.api.v2.core.HealthCheck health_checks = 2;
repeated LocalityEndpoints endpoints = 3;
repeated LocalityEndpoints locality_endpoints = 3;
}
message HealthCheckSpecifier {
repeated ClusterHealthCheck health_check = 1;
repeated ClusterHealthCheck cluster_health_checks = 1;
// The default is 1 second.
google.protobuf.Duration interval = 2;
}

Loading…
Cancel
Save