Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

EntityNameFilter

Filters entities by name using a string match strategy.

Properties

Name Type Description Notes
string_match_type StringMatchType
string str The string value to match against the entity name.

Example

from opal_security.models.entity_name_filter import EntityNameFilter

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

# convert the object into a dict
entity_name_filter_dict = entity_name_filter_instance.to_dict()
# create an instance of EntityNameFilter from a dict
entity_name_filter_from_dict = EntityNameFilter.from_dict(entity_name_filter_dict)

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