Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.54 KB

TenantPolicyFilters.md

File metadata and controls

34 lines (25 loc) · 1.54 KB

TenantPolicyFilters

Properties

Name Type Description Notes
search_query str [optional]
parent_ptp_ids List[str] Filter by parent policy template pack id. [optional] [default to []]
categories List[PolicyCategory] Filter by type. [optional] [default to []]
providers List[Provider] Filter by provider. [optional] [default to []]
services List[ActionTypeFiltersServicesInner] Filter by services. [optional] [default to []]
execution_types List[PolicyExecutionType] Filter by execution type. [optional] [default to []]

Example

from onelens_backend_client.models.tenant_policy_filters import TenantPolicyFilters

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

# convert the object into a dict
tenant_policy_filters_dict = tenant_policy_filters_instance.to_dict()
# create an instance of TenantPolicyFilters from a dict
tenant_policy_filters_form_dict = tenant_policy_filters.from_dict(tenant_policy_filters_dict)

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