Class: Google::Apis::AppengineV1::ErrorHandler

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_codeString

Error condition this handler applies to. Corresponds to the JSON property errorCode

Returns:

  • (String)


997
998
999
# File 'lib/google/apis/appengine_v1/classes.rb', line 997

def error_code
  @error_code
end

#mime_typeString

MIME type of file. Defaults to text/html. Corresponds to the JSON property mimeType

Returns:

  • (String)


1002
1003
1004
# File 'lib/google/apis/appengine_v1/classes.rb', line 1002

def mime_type
  @mime_type
end

#static_fileString

Static file content to be served for this error. Corresponds to the JSON property staticFile

Returns:

  • (String)


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