Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.05 KB

File metadata and controls

29 lines (21 loc) · 1.05 KB

Filters

Filters provides a mechanism for specifying which attacks to run. An empty set of filters will result in all tests being run.

Properties

Name Type Description Notes
attack_objectives List[AttackObjective] Only attacks that have one of these attack objectives will be run. If empty, this filter is not applied. [optional]

Example

from ri.apiclient.models.filters import Filters

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

# convert the object into a dict
filters_dict = filters_instance.to_dict()
# create an instance of Filters from a dict
filters_from_dict = Filters.from_dict(filters_dict)

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