Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 2.62 KB

File metadata and controls

41 lines (32 loc) · 2.62 KB

ConfigurationTemplate

Configuration Template Object ### Description The ConfigurationTemplate object is used to represent a configuration template. ### Usage Example Returned from the GET Configuration Templates endpoint.

Properties

Name Type Description Notes
configuration_template_id UUID The ID of the configuration template. [optional]
name str The name of the configuration template. [optional]
admin_owner_id UUID The ID of the owner of the configuration template. [optional]
visibility VisibilityInfo The visibility info of the configuration template. [optional]
linked_audit_message_channel_ids List[UUID] The IDs of the audit message channels linked to the configuration template. [optional]
request_configuration_id UUID The ID of the request configuration linked to the configuration template. [optional]
member_oncall_schedule_ids List[UUID] The IDs of the on-call schedules linked to the configuration template. [optional]
break_glass_user_ids List[UUID] The IDs of the break glass users linked to the configuration template. [optional]
require_mfa_to_approve bool A bool representing whether or not to require MFA for reviewers to approve requests for this configuration template. [optional]
require_mfa_to_connect bool A bool representing whether or not to require MFA to connect to resources associated with this configuration template. [optional]
ticket_propagation TicketPropagationConfiguration [optional]
custom_request_notification str Custom request notification sent upon request approval for this configuration template. [optional]

Example

from opal_security.models.configuration_template import ConfigurationTemplate

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

# convert the object into a dict
configuration_template_dict = configuration_template_instance.to_dict()
# create an instance of ConfigurationTemplate from a dict
configuration_template_from_dict = ConfigurationTemplate.from_dict(configuration_template_dict)

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