public static interface ServiceEntry.EndpointOrBuilder
extends com.google.protobuf.MessageOrBuilder
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
containsLabels(java.lang.String key)
One or more labels associated with the endpoint.
|
boolean |
containsPorts(java.lang.String key)
Set of ports associated with the endpoint.
|
java.lang.String |
getAddress()
REQUIRED: Address associated with the network endpoint without the
port.
|
com.google.protobuf.ByteString |
getAddressBytes()
REQUIRED: Address associated with the network endpoint without the
port.
|
java.util.Map<java.lang.String,java.lang.String> |
getLabels()
已过时。
|
int |
getLabelsCount()
One or more labels associated with the endpoint.
|
java.util.Map<java.lang.String,java.lang.String> |
getLabelsMap()
One or more labels associated with the endpoint.
|
java.lang.String |
getLabelsOrDefault(java.lang.String key,
java.lang.String defaultValue)
One or more labels associated with the endpoint.
|
java.lang.String |
getLabelsOrThrow(java.lang.String key)
One or more labels associated with the endpoint.
|
java.lang.String |
getLocality()
The locality associated with the endpoint.
|
com.google.protobuf.ByteString |
getLocalityBytes()
The locality associated with the endpoint.
|
java.lang.String |
getNetwork()
Network enables Istio to group endpoints resident in the same L3
domain/network.
|
com.google.protobuf.ByteString |
getNetworkBytes()
Network enables Istio to group endpoints resident in the same L3
domain/network.
|
java.util.Map<java.lang.String,java.lang.Integer> |
getPorts()
已过时。
|
int |
getPortsCount()
Set of ports associated with the endpoint.
|
java.util.Map<java.lang.String,java.lang.Integer> |
getPortsMap()
Set of ports associated with the endpoint.
|
int |
getPortsOrDefault(java.lang.String key,
int defaultValue)
Set of ports associated with the endpoint.
|
int |
getPortsOrThrow(java.lang.String key)
Set of ports associated with the endpoint.
|
int |
getWeight()
The load balancing weight associated with the endpoint.
|
java.lang.String getAddress()
REQUIRED: Address associated with the network endpoint without the port. Domain names can be used if and only if the resolution is set to DNS, and must be fully-qualified without wildcards. Use the form unix:///absolute/path/to/socket for Unix domain socket endpoints.
string address = 1;com.google.protobuf.ByteString getAddressBytes()
REQUIRED: Address associated with the network endpoint without the port. Domain names can be used if and only if the resolution is set to DNS, and must be fully-qualified without wildcards. Use the form unix:///absolute/path/to/socket for Unix domain socket endpoints.
string address = 1;int getPortsCount()
Set of ports associated with the endpoint. The ports must be associated with a port name that was declared as part of the service. Do not use for `unix://` addresses.
map<string, uint32> ports = 2;boolean containsPorts(java.lang.String key)
Set of ports associated with the endpoint. The ports must be associated with a port name that was declared as part of the service. Do not use for `unix://` addresses.
map<string, uint32> ports = 2;@Deprecated java.util.Map<java.lang.String,java.lang.Integer> getPorts()
getPortsMap() instead.java.util.Map<java.lang.String,java.lang.Integer> getPortsMap()
Set of ports associated with the endpoint. The ports must be associated with a port name that was declared as part of the service. Do not use for `unix://` addresses.
map<string, uint32> ports = 2;int getPortsOrDefault(java.lang.String key,
int defaultValue)
Set of ports associated with the endpoint. The ports must be associated with a port name that was declared as part of the service. Do not use for `unix://` addresses.
map<string, uint32> ports = 2;int getPortsOrThrow(java.lang.String key)
Set of ports associated with the endpoint. The ports must be associated with a port name that was declared as part of the service. Do not use for `unix://` addresses.
map<string, uint32> ports = 2;int getLabelsCount()
One or more labels associated with the endpoint.
map<string, string> labels = 3;boolean containsLabels(java.lang.String key)
One or more labels associated with the endpoint.
map<string, string> labels = 3;@Deprecated java.util.Map<java.lang.String,java.lang.String> getLabels()
getLabelsMap() instead.java.util.Map<java.lang.String,java.lang.String> getLabelsMap()
One or more labels associated with the endpoint.
map<string, string> labels = 3;java.lang.String getLabelsOrDefault(java.lang.String key,
java.lang.String defaultValue)
One or more labels associated with the endpoint.
map<string, string> labels = 3;java.lang.String getLabelsOrThrow(java.lang.String key)
One or more labels associated with the endpoint.
map<string, string> labels = 3;java.lang.String getNetwork()
Network enables Istio to group endpoints resident in the same L3 domain/network. All endpoints in the same network are assumed to be directly reachable from one another. When endpoints in different networks cannot reach each other directly, an Istio Gateway can be used to establish connectivity (usually using the AUTO_PASSTHROUGH mode in a Gateway Server). This is an advanced configuration used typically for spanning an Istio mesh over multiple clusters.
string network = 4;com.google.protobuf.ByteString getNetworkBytes()
Network enables Istio to group endpoints resident in the same L3 domain/network. All endpoints in the same network are assumed to be directly reachable from one another. When endpoints in different networks cannot reach each other directly, an Istio Gateway can be used to establish connectivity (usually using the AUTO_PASSTHROUGH mode in a Gateway Server). This is an advanced configuration used typically for spanning an Istio mesh over multiple clusters.
string network = 4;java.lang.String getLocality()
The locality associated with the endpoint. A locality corresponds to a failure domain (e.g., country/region/zone). Arbitrary failure domain hierarchies can be represented by separating each encapsulating failure domain by /. For example, the locality of an an endpoint in US, in US-East-1 region, within availability zone az-1, in data center rack r11 can be represented as us/us-east-1/az-1/r11. Istio will configure the sidecar to route to endpoints within the same locality as the sidecar. If none of the endpoints in the locality are available, endpoints parent locality (but within the same network ID) will be chosen. For example, if there are two endpoints in same network (networkID "n1"), say e1 with locality us/us-east-1/az-1/r11 and e2 with locality us/us-east-1/az-2/r12, a sidecar from us/us-east-1/az-1/r11 locality will prefer e1 from the same locality over e2 from a different locality. Endpoint e2 could be the IP associated with a gateway (that bridges networks n1 and n2), or the IP associated with a standard service endpoint.
string locality = 5;com.google.protobuf.ByteString getLocalityBytes()
The locality associated with the endpoint. A locality corresponds to a failure domain (e.g., country/region/zone). Arbitrary failure domain hierarchies can be represented by separating each encapsulating failure domain by /. For example, the locality of an an endpoint in US, in US-East-1 region, within availability zone az-1, in data center rack r11 can be represented as us/us-east-1/az-1/r11. Istio will configure the sidecar to route to endpoints within the same locality as the sidecar. If none of the endpoints in the locality are available, endpoints parent locality (but within the same network ID) will be chosen. For example, if there are two endpoints in same network (networkID "n1"), say e1 with locality us/us-east-1/az-1/r11 and e2 with locality us/us-east-1/az-2/r12, a sidecar from us/us-east-1/az-1/r11 locality will prefer e1 from the same locality over e2 from a different locality. Endpoint e2 could be the IP associated with a gateway (that bridges networks n1 and n2), or the IP associated with a standard service endpoint.
string locality = 5;int getWeight()
The load balancing weight associated with the endpoint. Endpoints with higher weights will receive proportionally higher traffic.
uint32 weight = 6;Copyright © 2018–2020 Alibaba Group. All rights reserved.