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,37 @@
---
id: v2025-scheduled-action-payload-content-backup-options
title: ScheduledActionPayloadContentBackupOptions
pagination_label: ScheduledActionPayloadContentBackupOptions
sidebar_label: ScheduledActionPayloadContentBackupOptions
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ScheduledActionPayloadContentBackupOptions', 'V2025ScheduledActionPayloadContentBackupOptions']
slug: /tools/sdk/powershell/v2025/models/scheduled-action-payload-content-backup-options
tags: ['SDK', 'Software Development Kit', 'ScheduledActionPayloadContentBackupOptions', 'V2025ScheduledActionPayloadContentBackupOptions']
---
# ScheduledActionPayloadContentBackupOptions
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IncludeTypes** | **[]String** | Object types that are to be included in the backup. | [optional]
**ObjectOptions** | [**map[string]ScheduledActionResponseContentBackupOptionsObjectOptionsValue**](scheduled-action-response-content-backup-options-object-options-value) | Map of objectType string to the options to be passed to the target service for that objectType. | [optional]
## Examples
- Prepare the resource
```powershell
$ScheduledActionPayloadContentBackupOptions = Initialize-PSSailpoint.V2025ScheduledActionPayloadContentBackupOptions -IncludeTypes [ROLE, IDENTITY_PROFILE] `
-ObjectOptions {SOURCE={includedNames=[Source1, Source2]}, ROLE={includedNames=[Admin Role, User Role]}}
```
- Convert the resource to JSON
```powershell
$ScheduledActionPayloadContentBackupOptions | ConvertTo-JSON
```
[[Back to top]](#)