Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/DkimAttributes.md
2025-02-20 12:59:19 -05:00

1.4 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-dkim-attributes DkimAttributes DkimAttributes DkimAttributes pythonsdk
python
Python
sdk
DkimAttributes
V2024DkimAttributes
/tools/sdk/python/v2024/models/dkim-attributes
SDK
Software Development Kit
DkimAttributes
V2024DkimAttributes

DkimAttributes

DKIM attributes for a domain or identity

Properties

Name Type Description Notes
id str UUID associated with domain to be verified [optional]
address str The identity or domain address [optional]
dkim_enabled bool Whether or not DKIM has been enabled for this domain / identity [optional] [default to False]
dkim_tokens []str The tokens to be added to a DNS for verification [optional]
dkim_verification_status str The current status if the domain /identity has been verified. Ie Success, Failed, Pending [optional]
}

Example

from sailpoint.v2024.models.dkim_attributes import DkimAttributes

dkim_attributes = DkimAttributes(
id='123b45b0-aaaa-bbbb-a7db-123456a56abc',
address='BobSmith@sailpoint.com',
dkim_enabled=True,
dkim_tokens=[uq1m3jjk25ckd3whl4n7y46c56r5l6aq, u7pm38jky9ckdawhlsn7y4dcj6f5lpgq, uhpm3jjkjjckdkwhlqn7yw6cjer5tpay],
dkim_verification_status='Success'
)

[Back to top]