adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
---
id: beta-domain-status-dto
title: DomainStatusDto
pagination_label: DomainStatusDto
sidebar_label: DomainStatusDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'DomainStatusDto', 'BetaDomainStatusDto']
slug: /tools/sdk/powershell/beta/models/domain-status-dto
tags: ['SDK', 'Software Development Kit', 'DomainStatusDto', 'BetaDomainStatusDto']
---
# DomainStatusDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | New UUID associated with domain to be verified | [optional]
**Domain** | Pointer to **String** | A domain address | [optional]
**DkimEnabled** | Pointer to [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | DKIM is enabled for this domain | [optional]
**DkimTokens** | Pointer to **[]String** | DKIM tokens required for authentication | [optional]
**DkimVerificationStatus** | Pointer to **String** | Status of DKIM authentication | [optional]
## Examples
- Prepare the resource
```powershell
$DomainStatusDto = Initialize-PSSailpoint.BetaDomainStatusDto -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]](#)