Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/DomainStatusDto.md
2025-05-07 14:37:48 +00:00

1.4 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-domain-status-dto DomainStatusDto DomainStatusDto DomainStatusDto powershellsdk
powershell
PowerShell
sdk
DomainStatusDto
V2024DomainStatusDto
/tools/sdk/powershell/v2024/models/domain-status-dto
SDK
Software Development Kit
DomainStatusDto
V2024DomainStatusDto

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
$DomainStatusDto = Initialize-V2024DomainStatusDto  -Id 123b45b0-aaaa-bbbb-a7db-123456a56abc `
 -Domain sailpoint.com `
 -DkimEnabled true `
 -DkimTokens [token1, token2, token3] `
 -DkimVerificationStatus PENDING
  • Convert the resource to JSON
$DomainStatusDto | ConvertTo-JSON

[Back to top]