Interface GrpcRoute.DestinationOrBuilder (0.1.0)

public static interface GrpcRoute.DestinationOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getDestinationTypeCase()

public abstract GrpcRoute.Destination.DestinationTypeCase getDestinationTypeCase()
Returns
Type Description
GrpcRoute.Destination.DestinationTypeCase

getServiceName()

public abstract String getServiceName()

Required. The URL of a destination service to which to route traffic. Must refer to either a BackendService or ServiceDirectoryService.

string service_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Returns
Type Description
String

The serviceName.

getServiceNameBytes()

public abstract ByteString getServiceNameBytes()

Required. The URL of a destination service to which to route traffic. Must refer to either a BackendService or ServiceDirectoryService.

string service_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Returns
Type Description
ByteString

The bytes for serviceName.

getWeight()

public abstract int getWeight()

Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as:

  • weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.

    If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.

    If weights are specified for any one service name, they need to be specified for all of them.

    If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.

optional int32 weight = 2 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
int

The weight.

hasServiceName()

public abstract boolean hasServiceName()

Required. The URL of a destination service to which to route traffic. Must refer to either a BackendService or ServiceDirectoryService.

string service_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Returns
Type Description
boolean

Whether the serviceName field is set.

hasWeight()

public abstract boolean hasWeight()

Optional. Specifies the proportion of requests forwarded to the backend referenced by the serviceName field. This is computed as:

  • weight/Sum(weights in this destination list). For non-zero values, there may be some epsilon from the exact proportion defined here depending on the precision an implementation supports.

    If only one serviceName is specified and it has a weight greater than 0, 100% of the traffic is forwarded to that backend.

    If weights are specified for any one service name, they need to be specified for all of them.

    If weights are unspecified for all services, then, traffic is distributed in equal proportions to all of them.

optional int32 weight = 2 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
boolean

Whether the weight field is set.