add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
---
id: v2025-domain-status-dto
title: DomainStatusDto
pagination_label: DomainStatusDto
sidebar_label: DomainStatusDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'DomainStatusDto', 'V2025DomainStatusDto']
slug: /tools/sdk/python/v2025/models/domain-status-dto
tags: ['SDK', 'Software Development Kit', 'DomainStatusDto', 'V2025DomainStatusDto']
---
# 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.v2025.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]](#)