com.google.appengine.v1.UrlDispatchRuleOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-appengine-v1 Show documentation
Show all versions of proto-google-appengine-v1 Show documentation
PROTO library for proto-google-appengine-v1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/appengine/v1/application.proto
package com.google.appengine.v1;
public interface UrlDispatchRuleOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.appengine.v1.UrlDispatchRule)
com.google.protobuf.MessageOrBuilder {
/**
*
* 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 getDomain();
/**
*
* Domain name to match against. The wildcard "`*`" is supported if
* specified before a period: "`*.`".
* Defaults to matching all domains: "`*`".
*
*
* string domain = 1;
*/
com.google.protobuf.ByteString
getDomainBytes();
/**
*
* 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 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;
*/
com.google.protobuf.ByteString
getPathBytes();
/**
*
* Resource ID of a service in this application that should
* serve the matched request. The service must already
* exist. Example: `default`.
*
*
* string service = 3;
*/
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;
*/
com.google.protobuf.ByteString
getServiceBytes();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy