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,43 @@
---
id: v2025-domain-status-dto
title: DomainStatusDto
pagination_label: DomainStatusDto
sidebar_label: DomainStatusDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'DomainStatusDto', 'V2025DomainStatusDto']
slug: /tools/sdk/powershell/v2025/models/domain-status-dto
tags: ['SDK', 'Software Development Kit', 'DomainStatusDto', 'V2025DomainStatusDto']
---
# DomainStatusDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | New UUID associated with domain to be verified | [optional]
**Domain** | **String** | A domain address | [optional]
**DkimEnabled** | [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | DKIM is enabled for this domain | [optional]
**DkimTokens** | **[]String** | DKIM tokens required for authentication | [optional]
**DkimVerificationStatus** | **String** | Status of DKIM authentication | [optional]
## Examples
- Prepare the resource
```powershell
$DomainStatusDto = Initialize-PSSailpoint.V2025DomainStatusDto -Id 123b45b0-aaaa-bbbb-a7db-123456a56abc `
-Domain sailpoint.com `
-DkimEnabled true `
-DkimTokens [token1, token2, token3] `
-DkimVerificationStatus PENDING
```
- Convert the resource to JSON
```powershell
$DomainStatusDto | ConvertTo-JSON
```
[[Back to top]](#)