Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.4 KB

File metadata and controls

29 lines (21 loc) · 1.4 KB

UnknownExternalSourceRuleConfig

Properties

Name Type Description Notes
whitelisted_urls List[str] Whitelisted URLs is a list of the URL domains that should not be flagged by the unknown external source rule. [optional]
ignore_contexts bool Ignore contexts specifies whether the firewall should skip the contexts field of the model input in the firewall validate request. [optional]

Example

from ri.apiclient.models.unknown_external_source_rule_config import UnknownExternalSourceRuleConfig

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

# convert the object into a dict
unknown_external_source_rule_config_dict = unknown_external_source_rule_config_instance.to_dict()
# create an instance of UnknownExternalSourceRuleConfig from a dict
unknown_external_source_rule_config_from_dict = UnknownExternalSourceRuleConfig.from_dict(unknown_external_source_rule_config_dict)

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