You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromri.apiclient.models.unknown_external_source_rule_configimportUnknownExternalSourceRuleConfig# TODO update the JSON string belowjson="{}"# create an instance of UnknownExternalSourceRuleConfig from a JSON stringunknown_external_source_rule_config_instance=UnknownExternalSourceRuleConfig.from_json(json)
# print the JSON string representation of the objectprint(UnknownExternalSourceRuleConfig.to_json())
# convert the object into a dictunknown_external_source_rule_config_dict=unknown_external_source_rule_config_instance.to_dict()
# create an instance of UnknownExternalSourceRuleConfig from a dictunknown_external_source_rule_config_from_dict=UnknownExternalSourceRuleConfig.from_dict(unknown_external_source_rule_config_dict)