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
CreateRequestConfigurationInfoList Object ### Description The CreateRequestConfigurationInfoList object is used as an input to the CreateRequestConfigurations API. ### Formatting Requirements The CreateRequestConfigurationInfoList object must contain a list of RequestConfiguration objects. Exactly one default RequestConfiguration must be provided. A default RequestConfiguration is one with a condition of null and a priority of 0. The default RequestConfiguration will be used when no other RequestConfiguration matches the request. Only one RequestConfiguration may be provided for each priority, and the priorities must be contiguous. For example, if there are two RequestConfigurations with priorities 0 and 2, there must be a RequestConfiguration with priority 1. To use the condition field, the condition must be a valid JSON object. The condition must be a JSON object with the key group_ids (more options may be added in the future), whose value is a list of group IDs. The condition will match if the user requesting access is a member of any of the groups in the list. Currently, we only support using a single group as a condition.
fromopal_security.models.create_request_configuration_info_listimportCreateRequestConfigurationInfoList# TODO update the JSON string belowjson="{}"# create an instance of CreateRequestConfigurationInfoList from a JSON stringcreate_request_configuration_info_list_instance=CreateRequestConfigurationInfoList.from_json(json)
# print the JSON string representation of the objectprint(CreateRequestConfigurationInfoList.to_json())
# convert the object into a dictcreate_request_configuration_info_list_dict=create_request_configuration_info_list_instance.to_dict()
# create an instance of CreateRequestConfigurationInfoList from a dictcreate_request_configuration_info_list_from_dict=CreateRequestConfigurationInfoList.from_dict(create_request_configuration_info_list_dict)