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: v2024-sp-config-message
title: SpConfigMessage
pagination_label: SpConfigMessage
sidebar_label: SpConfigMessage
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SpConfigMessage', 'V2024SpConfigMessage']
slug: /tools/sdk/powershell/v2024/models/sp-config-message
tags: ['SDK', 'Software Development Kit', 'SpConfigMessage', 'V2024SpConfigMessage']
---
# SpConfigMessage
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Key** | **String** | Message key. | [required]
**Text** | **String** | Message text. | [required]
**Details** | [**map[string]AnyType**]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | Message details if any, in key:value pairs. | [required]
## Examples
- Prepare the resource
```powershell
$SpConfigMessage = Initialize-PSSailpoint.V2024SpConfigMessage -Key UNKNOWN_REFERENCE_RESOLVER `
-Text Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity] `
-Details {details=message details}
```
- Convert the resource to JSON
```powershell
$SpConfigMessage | ConvertTo-JSON
```
[[Back to top]](#)