class Google::Apis::AppengineV1beta4::UrlDispatchRule
Rules to match an HTTP request and dispatch that request to a module.
Attributes
domain[RW]
The domain name to match on. Supports '*' (glob) wildcarding on the left-hand side of a '.'. If empty, all domains will be matched (the same as '*'). Corresponds to the JSON property `domain` @return [String]
module[RW]
path[RW]
The pathname within the host. This must start with a '/'. A single '*' (glob) can be included at the end of the path. The sum of the lengths of the domain and path may not exceed 100 characters. Corresponds to the JSON property `path` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/appengine_v1beta4/classes.rb, line 107 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/appengine_v1beta4/classes.rb, line 112 def update!(**args) @domain = args[:domain] if args.key?(:domain) @path = args[:path] if args.key?(:path) @module = args[:module] if args.key?(:module) end