Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/DomainStatusDto.md
2025-01-28 13:29:29 -05: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
beta-domain-status-dto DomainStatusDto DomainStatusDto DomainStatusDto powershellsdk
powershell
PowerShell
sdk
DomainStatusDto
BetaDomainStatusDto
/tools/sdk/powershell/beta/models/domain-status-dto
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
$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
$DomainStatusDto | ConvertTo-JSON

[Back to top]