add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2025-update-detail
title: UpdateDetail
pagination_label: UpdateDetail
sidebar_label: UpdateDetail
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'UpdateDetail', 'V2025UpdateDetail']
slug: /tools/sdk/powershell/v2025/models/update-detail
tags: ['SDK', 'Software Development Kit', 'UpdateDetail', 'V2025UpdateDetail']
---
# UpdateDetail
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Message** | **String** | The detailed message for an update. Typically the relevent error message when status is error. | [optional]
**ScriptName** | **String** | The connector script name | [optional]
**UpdatedFiles** | **[]String** | The list of updated files supported by the connector | [optional]
**Status** | **Enum** [ "ERROR", "UPDATED", "UNCHANGED", "SKIPPED" ] | The connector update status | [optional]
## Examples
- Prepare the resource
```powershell
$UpdateDetail = Initialize-PSSailpoint.V2025UpdateDetail -Message unsupported xsd version, please ensure latest xsd version http://www.sailpoint.com/xsd/sailpoint_form_2_0.xsd is used for source config `
-ScriptName servicenow `
-UpdatedFiles [pod/org/connectorFiles/testconnector/test1.jar] `
-Status ERROR
```
- Convert the resource to JSON
```powershell
$UpdateDetail | ConvertTo-JSON
```
[[Back to top]](#)