Class: Google::Apis::AppengineV1beta::UrlDispatchRule
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta::UrlDispatchRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1beta/classes.rb,
generated/google/apis/appengine_v1beta/representations.rb,
generated/google/apis/appengine_v1beta/representations.rb
Overview
Rules to match an HTTP request and dispatch that request to a service.
Instance Attribute Summary collapse
-
#domain ⇒ String
Domain name to match against.
-
#path ⇒ String
Pathname within the host.
-
#service ⇒ String
Resource ID of a service in this application that should serve the matched request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UrlDispatchRule
constructor
A new instance of UrlDispatchRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UrlDispatchRule
Returns a new instance of UrlDispatchRule
2782 2783 2784 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 2782 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domain ⇒ String
Domain name to match against. The wildcard "" is supported if specified
before a period: ".".Defaults to matching all domains: "*".
Corresponds to the JSON property domain
2767 2768 2769 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 2767 def domain @domain end |
#path ⇒ String
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.
Corresponds to the JSON property path
2774 2775 2776 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 2774 def path @path end |
#service ⇒ String
Resource ID of a service in this application that should serve the matched
request. The service must already exist. Example: default.
Corresponds to the JSON property service
2780 2781 2782 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 2780 def service @service end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2787 2788 2789 2790 2791 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 2787 def update!(**args) @domain = args[:domain] if args.key?(:domain) @path = args[:path] if args.key?(:path) @service = args[:service] if args.key?(:service) end |