public interface UrlDispatchRuleOrBuilder extends MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDomain()
Domain name to match against.
|
ByteString |
getDomainBytes()
Domain name to match against.
|
java.lang.String |
getPath()
Pathname within the host.
|
ByteString |
getPathBytes()
Pathname within the host.
|
java.lang.String |
getService()
Resource ID of a service in this application that should
serve the matched request.
|
ByteString |
getServiceBytes()
Resource ID of a service in this application that should
serve the matched request.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
java.lang.String getDomain()
Domain name to match against. The wildcard "`*`" is supported if specified before a period: "`*.`". Defaults to matching all domains: "`*`".
string domain = 1;
ByteString getDomainBytes()
Domain name to match against. The wildcard "`*`" is supported if specified before a period: "`*.`". Defaults to matching all domains: "`*`".
string domain = 1;
java.lang.String getPath()
Pathname within the host. Must start with a "`/`". A single "`*`" can be included at the end of the path. The sum of the lengths of the domain and path may not exceed 100 characters.
string path = 2;
ByteString getPathBytes()
Pathname within the host. Must start with a "`/`". A single "`*`" can be included at the end of the path. The sum of the lengths of the domain and path may not exceed 100 characters.
string path = 2;
java.lang.String getService()
Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: `default`.
string service = 3;
ByteString getServiceBytes()
Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: `default`.
string service = 3;