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,39 @@
---
id: beta-create-domain-dkim405-response
title: CreateDomainDkim405Response
pagination_label: CreateDomainDkim405Response
sidebar_label: CreateDomainDkim405Response
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CreateDomainDkim405Response', 'BetaCreateDomainDkim405Response']
slug: /tools/sdk/powershell/beta/models/create-domain-dkim405-response
tags: ['SDK', 'Software Development Kit', 'CreateDomainDkim405Response', 'BetaCreateDomainDkim405Response']
---
# CreateDomainDkim405Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ErrorName** | Pointer to [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | A message describing the error | [optional]
**ErrorMessage** | Pointer to [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | Description of the error | [optional]
**TrackingId** | Pointer to **String** | Unique tracking id for the error. | [optional]
## Examples
- Prepare the resource
```powershell
$CreateDomainDkim405Response = Initialize-PSSailpoint.BetaCreateDomainDkim405Response -ErrorName NotSupportedException `
-ErrorMessage Cannot consume content type `
-TrackingId e7eab60924f64aa284175b9fa3309599
```
- Convert the resource to JSON
```powershell
$CreateDomainDkim405Response | ConvertTo-JSON
```
[[Back to top]](#)