starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,42 @@
---
id: v2024-dkim-attributes
title: DkimAttributes
pagination_label: DkimAttributes
sidebar_label: DkimAttributes
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'DkimAttributes', 'V2024DkimAttributes']
slug: /tools/sdk/python/v2024/models/dkim-attributes
tags: ['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
```python
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]](#)