mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
---
|
||||
id: v2024-dkim-attributes
|
||||
title: DkimAttributes
|
||||
pagination_label: DkimAttributes
|
||||
sidebar_label: DkimAttributes
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'DkimAttributes', 'V2024DkimAttributes']
|
||||
slug: /tools/sdk/powershell/v2024/models/dkim-attributes
|
||||
tags: ['SDK', 'Software Development Kit', 'DkimAttributes', 'V2024DkimAttributes']
|
||||
---
|
||||
|
||||
|
||||
# DkimAttributes
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **String** | UUID associated with domain to be verified | [optional]
|
||||
**Address** | Pointer to **String** | The identity or domain address | [optional]
|
||||
**DkimEnabled** | Pointer to **Boolean** | Whether or not DKIM has been enabled for this domain / identity | [optional] [default to $false]
|
||||
**DkimTokens** | Pointer to **[]String** | The tokens to be added to a DNS for verification | [optional]
|
||||
**DkimVerificationStatus** | Pointer to **String** | The current status if the domain /identity has been verified. Ie Success, Failed, Pending | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$DkimAttributes = Initialize-PSSailpoint.V2024DkimAttributes -Id 123b45b0-aaaa-bbbb-a7db-123456a56abc `
|
||||
-Address BobSmith@sailpoint.com `
|
||||
-DkimEnabled true `
|
||||
-DkimTokens [uq1m3jjk25ckd3whl4n7y46c56r5l6aq, u7pm38jky9ckdawhlsn7y4dcj6f5lpgq, uhpm3jjkjjckdkwhlqn7yw6cjer5tpay] `
|
||||
-DkimVerificationStatus Success
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$DkimAttributes | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user