StaticTextHttpResponseBody

class oci.waf.models.StaticTextHttpResponseBody(**kwargs)

Bases: oci.waf.models.http_response_body.HttpResponseBody

Allows returning static text as HTTP response body. Example: { “type”: “STATIC_TEXT”, “text”: “{ “code”: 403, “message”:”Unauthorised” }” }

Attributes

TYPE_STATIC_TEXT str(object=’’) -> str
text [Required] Gets the text of this StaticTextHttpResponseBody.
type [Required] Gets the type of this HttpResponseBody.

Methods

__init__(**kwargs) Initializes a new StaticTextHttpResponseBody object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
TYPE_STATIC_TEXT = 'STATIC_TEXT'
__init__(**kwargs)

Initializes a new StaticTextHttpResponseBody object with values from keyword arguments. The default value of the type attribute of this class is STATIC_TEXT and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • type (str) – The value to assign to the type property of this StaticTextHttpResponseBody. Allowed values for this property are: “STATIC_TEXT”
  • text (str) – The value to assign to the text property of this StaticTextHttpResponseBody.
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

text

[Required] Gets the text of this StaticTextHttpResponseBody. Static response body text.

Returns:The text of this StaticTextHttpResponseBody.
Return type:str
type

[Required] Gets the type of this HttpResponseBody. Type of HttpResponseBody.

Allowed values for this property are: “STATIC_TEXT”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The type of this HttpResponseBody.
Return type:str