Name | Type | Description | Notes |
---|---|---|---|
force_update | bool | Force update (TRUE/FALSE), default: FALSE | [optional] [default to False] |
title | str | [optional] | |
description | str | [optional] | |
services | List[ActionTypeFiltersServicesInner] | [optional] | |
execution_type | PolicyExecutionType | [optional] | |
details | PolicyTemplateDetailsInput | [optional] | |
description2 | str | [optional] | |
resource_type | str | [optional] | |
recommendation_details | PolicyTemplateRecommendationDetailsInput | [optional] | |
requirements | str | [optional] | |
id | str | The unique identifier of the policy template. |
from onelens_backend_client.models.update_policy_template_request import UpdatePolicyTemplateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdatePolicyTemplateRequest from a JSON string
update_policy_template_request_instance = UpdatePolicyTemplateRequest.from_json(json)
# print the JSON string representation of the object
print(UpdatePolicyTemplateRequest.to_json())
# convert the object into a dict
update_policy_template_request_dict = update_policy_template_request_instance.to_dict()
# create an instance of UpdatePolicyTemplateRequest from a dict
update_policy_template_request_form_dict = update_policy_template_request.from_dict(update_policy_template_request_dict)