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
CreateConfigurationTemplateInfo Object ### Description The CreateConfigurationTemplateInfo object is used to store creation info for a configuration template. ### Usage Example Use in the POST Configuration Templates endpoint.
Properties
Name
Type
Description
Notes
admin_owner_id
UUID
The ID of the owner of the configuration template.
The request configuration list of the configuration template. If not provided, the default request configuration will be used. Deprecated in favor of `request_configurations`.
Custom request notification sent upon request approval for this configuration template.
[optional]
Example
fromopal_security.models.create_configuration_template_infoimportCreateConfigurationTemplateInfo# TODO update the JSON string belowjson="{}"# create an instance of CreateConfigurationTemplateInfo from a JSON stringcreate_configuration_template_info_instance=CreateConfigurationTemplateInfo.from_json(json)
# print the JSON string representation of the objectprint(CreateConfigurationTemplateInfo.to_json())
# convert the object into a dictcreate_configuration_template_info_dict=create_configuration_template_info_instance.to_dict()
# create an instance of CreateConfigurationTemplateInfo from a dictcreate_configuration_template_info_from_dict=CreateConfigurationTemplateInfo.from_dict(create_configuration_template_info_dict)