Class UrlDispatchRule
Rules to match an HTTP request and dispatch that request to a service.
Inheritance
System.Object
UrlDispatchRule
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Appengine.v1beta.Data
Assembly: Google.Apis.Appengine.v1beta.dll
Syntax
public class UrlDispatchRule : IDirectResponseSchema
Properties
Domain
Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
Declaration
[JsonProperty("domain")]
public virtual string Domain { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Path
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.
Declaration
[JsonProperty("path")]
public virtual string Path { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Service
Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
Declaration
[JsonProperty("service")]
public virtual string Service { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |