Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.35 KB

File metadata and controls

35 lines (26 loc) · 1.35 KB

WafConfigHttpbl

Project Honey Pot HTTP:BL configuration

Properties

Name Type Description Notes
httpbl_enabled bool Enable HTTP:BL [optional] [default to False]
block_suspicious bool Block suspicious IPs [optional] [default to False]
block_harvester bool Block email harvesters [optional] [default to False]
block_spam bool Block spam sources [optional] [default to False]
block_search_engine bool Block search engines [optional] [default to False]
httpbl_key str HTTP:BL API key [optional]

Example

from quantcdn.models.waf_config_httpbl import WafConfigHttpbl

# TODO update the JSON string below
json = "{}"
# create an instance of WafConfigHttpbl from a JSON string
waf_config_httpbl_instance = WafConfigHttpbl.from_json(json)
# print the JSON string representation of the object
print(WafConfigHttpbl.to_json())

# convert the object into a dict
waf_config_httpbl_dict = waf_config_httpbl_instance.to_dict()
# create an instance of WafConfigHttpbl from a dict
waf_config_httpbl_from_dict = WafConfigHttpbl.from_dict(waf_config_httpbl_dict)

[Back to Model list] [Back to API list] [Back to README]