Skip to main content

Autowritesettingresponse

Auto-Write Setting response with timestamps

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]
created_atdatetimeWhen settings were first created[optional]
updated_atdatetimeWhen settings were last modified[optional]
}

Example

from sailpoint.suggested_entitlement_description.models.autowritesettingresponse import Autowritesettingresponse

autowritesettingresponse = Autowritesettingresponse(
enabled=True,
included_source_ids=[2c91808a7813090a017814552e526349, 2c91808a7813090a017814552e52634a],
excluded_source_ids=[2c91808a7813090a017814552e526350],
created_at='2026-02-15T10:30Z',
updated_at='2026-03-09T14:22Z'
)

[Back to top]