Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.6 KB

File metadata and controls

30 lines (21 loc) · 1.6 KB

PolicyUserNameTemplate

Okta Expression Language (EL) expression to generate or transform a unique username for the IdP user. * IdP user profile attributes can be referenced with the idpuser prefix such as idpuser.subjectNameId. * You must define an IdP user profile attribute before it can be referenced in an Okta EL expression. To define an IdP user attribute policy, you may need to create a new IdP instance without a base profile property. Then edit the IdP user profile to update the IdP instance with an expression that references the IdP user profile attribute that you just created.

Properties

Name Type Description Notes
template str [optional]

Example

from okta.models.policy_user_name_template import PolicyUserNameTemplate

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

# convert the object into a dict
policy_user_name_template_dict = policy_user_name_template_instance.to_dict()
# create an instance of PolicyUserNameTemplate from a dict
policy_user_name_template_from_dict = PolicyUserNameTemplate.from_dict(policy_user_name_template_dict)

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