| Name | Type | Description | Notes |
|---|---|---|---|
| parent_ptp_id | str | The id of the parent policy template pack. | |
| title | str | The title of the policy template. | |
| alias | str | The alias of the policy template. | |
| description | str | The description of the policy template. | [optional] |
| services | List[TenantPolicyForPolicyWithSettingServicesInner] | The list of services display names associated the policy template. | |
| execution_type | PolicyExecutionType | The execution type of the policy template. | |
| details | PolicyTemplateDetailsOutput | The details of the policy template. | |
| description2 | str | The description2 of the policy template. | [optional] |
| resource_type | str | The resource type of the policy template. | |
| recommendation_details | PolicyTemplateRecommendationDetailsOutput | The recommendation details for the policy template. | |
| policy_template_id | str | The id of the policy template. | |
| category | PolicyCategory | The category of the policy template. | |
| provider | Provider | The cloud provider of the policy template. | |
| id | str | The unique identifier of the tenant policy. | |
| state | TenantPolicySystemState | The state of the tenant policy. |
from onelens_backend_client.models.tenant_policy_for_policy_with_setting import TenantPolicyForPolicyWithSetting
# TODO update the JSON string below
json = "{}"
# create an instance of TenantPolicyForPolicyWithSetting from a JSON string
tenant_policy_for_policy_with_setting_instance = TenantPolicyForPolicyWithSetting.from_json(json)
# print the JSON string representation of the object
print(TenantPolicyForPolicyWithSetting.to_json())
# convert the object into a dict
tenant_policy_for_policy_with_setting_dict = tenant_policy_for_policy_with_setting_instance.to_dict()
# create an instance of TenantPolicyForPolicyWithSetting from a dict
tenant_policy_for_policy_with_setting_form_dict = tenant_policy_for_policy_with_setting.from_dict(tenant_policy_for_policy_with_setting_dict)