mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
---
|
||||
id: beta-domain-status-dto
|
||||
title: DomainStatusDto
|
||||
pagination_label: DomainStatusDto
|
||||
sidebar_label: DomainStatusDto
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'DomainStatusDto', 'BetaDomainStatusDto']
|
||||
slug: /tools/sdk/python/beta/models/domain-status-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'DomainStatusDto', 'BetaDomainStatusDto']
|
||||
---
|
||||
|
||||
# DomainStatusDto
|
||||
|
||||
Domain status DTO containing everything required to verify via DKIM
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**id** | **str** | New UUID associated with domain to be verified | [optional]
|
||||
**domain** | **str** | A domain address | [optional]
|
||||
**dkim_enabled** | **object** | DKIM is enabled for this domain | [optional]
|
||||
**dkim_tokens** | **[]str** | DKIM tokens required for authentication | [optional]
|
||||
**dkim_verification_status** | **str** | Status of DKIM authentication | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.domain_status_dto import DomainStatusDto
|
||||
|
||||
domain_status_dto = DomainStatusDto(
|
||||
id='123b45b0-aaaa-bbbb-a7db-123456a56abc',
|
||||
domain='sailpoint.com',
|
||||
dkim_enabled=true,
|
||||
dkim_tokens=[token1, token2, token3],
|
||||
dkim_verification_status='PENDING'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user