removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,39 +0,0 @@
---
id: sp-config-message
title: SpConfigMessage
pagination_label: SpConfigMessage
sidebar_label: SpConfigMessage
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SpConfigMessage']
slug: /tools/sdk/powershell/beta/models/sp-config-message
tags: ['SDK', 'Software Development Kit', 'SpConfigMessage']
---
# SpConfigMessage
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Key** | **String** | Message key. | [required]
**Text** | **String** | Message text. | [required]
**Details** | [**map[string]SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | Message details if any, in key:value pairs. | [required]
## Examples
- Prepare the resource
```powershell
$SpConfigMessage = Initialize-PSSailpoint.BetaSpConfigMessage -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]](#)