public interface UrlDispatchRuleOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getDomain()
public abstract String getDomain() Domain name to match against. The wildcard "" is supported if
specified before a period: ".".
Defaults to matching all domains: "*".
string domain = 1;
| Type | Description |
| String | The domain. |
getDomainBytes()
public abstract ByteString getDomainBytes() Domain name to match against. The wildcard "" is supported if
specified before a period: ".".
Defaults to matching all domains: "*".
string domain = 1;
| Type | Description |
| ByteString | The bytes for domain. |
getPath()
public abstract 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;
| Type | Description |
| String | The path. |
getPathBytes()
public abstract 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;
| Type | Description |
| ByteString | The bytes for path. |
getService()
public abstract 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;
| Type | Description |
| String | The service. |
getServiceBytes()
public abstract 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;
| Type | Description |
| ByteString | The bytes for service. |