You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UpdateConfigurationTemplateInfo Object ### Description The ConfigurationTemplate object is used to represent an update to a configuration template. ### Usage Example Use in the PUT Configuration Templates endpoint.
Properties
Name
Type
Description
Notes
configuration_template_id
UUID
The ID of the configuration template.
name
str
The name of the configuration template.
[optional]
admin_owner_id
UUID
The ID of the owner of the configuration template.
Custom request notification sent upon request approval for this configuration template.
[optional]
Example
fromopal_security.models.update_configuration_template_infoimportUpdateConfigurationTemplateInfo# TODO update the JSON string belowjson="{}"# create an instance of UpdateConfigurationTemplateInfo from a JSON stringupdate_configuration_template_info_instance=UpdateConfigurationTemplateInfo.from_json(json)
# print the JSON string representation of the objectprint(UpdateConfigurationTemplateInfo.to_json())
# convert the object into a dictupdate_configuration_template_info_dict=update_configuration_template_info_instance.to_dict()
# create an instance of UpdateConfigurationTemplateInfo from a dictupdate_configuration_template_info_from_dict=UpdateConfigurationTemplateInfo.from_dict(update_configuration_template_info_dict)