Skip to main content

DomainStatusDto

Properties

NameTypeDescriptionNotes
IdStringNew UUID associated with domain to be verified[optional]
DomainStringA domain address[optional]
DkimEnabled[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0DKIM is enabled for this domain[optional]
DkimTokens[]StringDKIM tokens required for authentication[optional]
DkimVerificationStatusStringStatus of DKIM authentication[optional]

Examples

  • Prepare the resource
$DomainStatusDto = Initialize-PSSailpoint.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]