Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.3 KB

AddTenantPolicyExclusionsRequest.md

File metadata and controls

31 lines (22 loc) · 1.3 KB

AddTenantPolicyExclusionsRequest

Properties

Name Type Description Notes
exclusions TenantPolicyExclusions The exclusions to add.
tenant_id str The id of the tenant.
policy_id str The id of the tenant policy.

Example

from onelens_backend_client.models.add_tenant_policy_exclusions_request import AddTenantPolicyExclusionsRequest

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

# convert the object into a dict
add_tenant_policy_exclusions_request_dict = add_tenant_policy_exclusions_request_instance.to_dict()
# create an instance of AddTenantPolicyExclusionsRequest from a dict
add_tenant_policy_exclusions_request_form_dict = add_tenant_policy_exclusions_request.from_dict(add_tenant_policy_exclusions_request_dict)

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