Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

TenantPolicyExclusions

Properties

Name Type Description Notes
entity_ids List[str] The resources excluded from running the policies on.

Example

from onelens_backend_client.models.tenant_policy_exclusions import TenantPolicyExclusions

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

# convert the object into a dict
tenant_policy_exclusions_dict = tenant_policy_exclusions_instance.to_dict()
# create an instance of TenantPolicyExclusions from a dict
tenant_policy_exclusions_form_dict = tenant_policy_exclusions.from_dict(tenant_policy_exclusions_dict)

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