Class: Google::Apis::AppengineV1beta5::UrlMap
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta5::UrlMap
- 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
URL pattern and description of how the URL should be handled. App Engine can handle URLs by executing application code, or by serving static files uploaded with the version, such as images, CSS, or JavaScript.
Instance Attribute Summary collapse
-
#api_endpoint ⇒ Google::Apis::AppengineV1beta5::ApiEndpointHandler
Uses Google Cloud Endpoints to handle requests.
-
#auth_fail_action ⇒ String
Action to take when users access resources that require authentication.
-
#login ⇒ String
Level of login required to access this resource.
-
#redirect_http_response_code ⇒ String
30x code to use when performing redirects for the secure field.
-
#script ⇒ Google::Apis::AppengineV1beta5::ScriptHandler
Executes a script to handle the request that matches the URL pattern.
-
#security_level ⇒ String
Security (HTTPS) enforcement for this URL.
-
#static_files ⇒ Google::Apis::AppengineV1beta5::StaticFilesHandler
Files served directly to the user for a given URL, such as images, CSS stylesheets, or JavaScript source files.
-
#url_regex ⇒ String
A URL prefix.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UrlMap
constructor
A new instance of UrlMap.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UrlMap
Returns a new instance of UrlMap
1017 1018 1019 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1017 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_endpoint ⇒ Google::Apis::AppengineV1beta5::ApiEndpointHandler
Uses Google Cloud Endpoints to handle requests.
Corresponds to the JSON property apiEndpoint
993 994 995 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 993 def api_endpoint @api_endpoint end |
#auth_fail_action ⇒ String
Action to take when users access resources that require authentication.
Defaults to redirect.
Corresponds to the JSON property authFailAction
1009 1010 1011 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1009 def auth_fail_action @auth_fail_action end |
#login ⇒ String
Level of login required to access this resource.
Corresponds to the JSON property login
1003 1004 1005 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1003 def login @login end |
#redirect_http_response_code ⇒ String
30x code to use when performing redirects for the secure field. Defaults to
302.
Corresponds to the JSON property redirectHttpResponseCode
1015 1016 1017 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1015 def redirect_http_response_code @redirect_http_response_code end |
#script ⇒ Google::Apis::AppengineV1beta5::ScriptHandler
Executes a script to handle the request that matches the URL pattern.
Corresponds to the JSON property script
988 989 990 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 988 def script @script end |
#security_level ⇒ String
Security (HTTPS) enforcement for this URL.
Corresponds to the JSON property securityLevel
998 999 1000 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 998 def security_level @security_level end |
#static_files ⇒ Google::Apis::AppengineV1beta5::StaticFilesHandler
Files served directly to the user for a given URL, such as images, CSS
stylesheets, or JavaScript source files. Static file handlers describe which
files in the application directory are static files, and which URLs serve them.
Corresponds to the JSON property staticFiles
983 984 985 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 983 def static_files @static_files end |
#url_regex ⇒ String
A URL prefix. Uses regular expression syntax, which means regexp special
characters must be escaped, but should not contain groupings. All URLs that
begin with this prefix are handled by this handler, using the portion of the
URL after the prefix as part of the file path.
Corresponds to the JSON property urlRegex
976 977 978 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 976 def url_regex @url_regex end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1022 def update!(**args) @url_regex = args[:url_regex] if args.key?(:url_regex) @static_files = args[:static_files] if args.key?(:static_files) @script = args[:script] if args.key?(:script) @api_endpoint = args[:api_endpoint] if args.key?(:api_endpoint) @security_level = args[:security_level] if args.key?(:security_level) @login = args[:login] if args.key?(:login) @auth_fail_action = args[:auth_fail_action] if args.key?(:auth_fail_action) @redirect_http_response_code = args[:redirect_http_response_code] if args.key?(:redirect_http_response_code) end |