Class: Google::Apis::AppengineV1beta5::UrlDispatchRule

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/appengine_v1beta5/classes.rb,
generated/google/apis/appengine_v1beta5/representations.rb,
generated/google/apis/appengine_v1beta5/representations.rb

Overview

Rules to match an HTTP request and dispatch that request to a service.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UrlDispatchRule

Returns a new instance of UrlDispatchRule



1844
1845
1846
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1844

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#domainString

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

Returns:

  • (String)


1829
1830
1831
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1829

def domain
  @domain
end

#pathString

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

Returns:

  • (String)


1836
1837
1838
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1836

def path
  @path
end

#serviceString

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

Returns:

  • (String)


1842
1843
1844
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1842

def service
  @service
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1849
1850
1851
1852
1853
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1849

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