Create Profile / Provisioning Policy

When Identity Security Cloud provisions new accounts to a Sybase SAP ASE direct connect source, it uses the attributes on the Create Profile page as instructions or a template for what to include in the account. This page is also referred to as the provisioning policy.

Important
This page describes the configuration of the default Create Profile. However, SailPoint recommends that you work with Services to define a Create Profile specific to your company's needs.

The following generators create required information for a new Sybase SAP ASE account. You might need to edit the contents.

Note
Attributes marked with an asterisk (*) are mandatory.

Account Attribute

Generator

Description

native_identity*

Create Unique Account ID

This generator uses the value in the Pattern Used field to generate a unique DN for the new account

password*

Create Password

This generator creates an initial password for the new account that matches the password policy assigned to the associated Sybase SAP ASE source in Identity Security Cloud.

password_expiration_interval

Disable

The user password expiration interval expressed in days. You can set this from 0 to 32767 days.

default_database

Disable

The default user database

default_language

Disable

The default language

full_name

Disable

The full name of a user

Provision Password Expiration Interval Attribute

If the Password_Expiration_Interval attribute is not part of Create Profile, then use the following API to update the Create Profile form.

  1. Get the JSON response:

    Method: GET

    URL: https://{url}/api/accountProfile/get/<source_id>?usage=Create

  2. Copy the JSON response from the above API and use it as an input for the following API.

    Copy
    Method: Post
    URL: https://{url}/api/accountProfile/update/<source_id>?usage=Create
    Content-Type: application/json
    Body:

    {
        "attributes": {},
        "isRequired": false,
        "name": "password_expiration_interval",
        "transform": null,
        "type": "string"
    }