Class: Google::Apis::AppengineV1::ErrorHandler
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::ErrorHandler
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/appengine_v1/classes.rb,
lib/google/apis/appengine_v1/representations.rb,
lib/google/apis/appengine_v1/representations.rb
Overview
Custom static error page to be served when an error occurs.
Instance Attribute Summary collapse
-
#error_code ⇒ String
Error condition this handler applies to.
-
#mime_type ⇒ String
MIME type of file.
-
#static_file ⇒ String
Static file content to be served for this error.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ErrorHandler
constructor
A new instance of ErrorHandler.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ErrorHandler
Returns a new instance of ErrorHandler.
1009 1010 1011 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1009 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_code ⇒ String
Error condition this handler applies to.
Corresponds to the JSON property errorCode
997 998 999 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 997 def error_code @error_code end |
#mime_type ⇒ String
MIME type of file. Defaults to text/html.
Corresponds to the JSON property mimeType
1002 1003 1004 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1002 def mime_type @mime_type end |
#static_file ⇒ String
Static file content to be served for this error.
Corresponds to the JSON property staticFile
1007 1008 1009 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1007 def static_file @static_file end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1014 1015 1016 1017 1018 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1014 def update!(**args) @error_code = args[:error_code] if args.key?(:error_code) @mime_type = args[:mime_type] if args.key?(:mime_type) @static_file = args[:static_file] if args.key?(:static_file) end |