Skip to main content

Autowritesetting

Auto-Write Setting for SED

Properties

NameTypeDescriptionNotes
enabledboolWhether auto-write is currently enabled for the tenant[optional] [default to False]
included_source_ids[]strSource IDs in the allowlist. Empty array means not in allowlist mode.[optional]
excluded_source_ids[]strSource IDs to exclude from auto-write. Always applied.[optional]
}

Example

from sailpoint.suggested_entitlement_description.models.autowritesetting import Autowritesetting

autowritesetting = Autowritesetting(
enabled=True,
included_source_ids=["2c91808a7813090a017814552e526349","2c91808a7813090a017814552e52634a"],
excluded_source_ids=["2c91808a7813090a017814552e526350"]
)

[Back to top]