removing part of model docs from v2024

This commit is contained in:
darrell-thobe-sp
2025-01-28 08:52:12 -05:00
parent cb679653ff
commit fb685431b3
639 changed files with 0 additions and 26446 deletions

View File

@@ -1,37 +0,0 @@
---
id: v2024-backup-options
title: BackupOptions
pagination_label: BackupOptions
sidebar_label: BackupOptions
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'BackupOptions']
slug: /tools/sdk/powershell/v2024/models/backup-options
tags: ['SDK', 'Software Development Kit', 'BackupOptions']
---
# BackupOptions
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IncludeTypes** | Pointer to **[]String** | Object type names to be included in a Configuration Hub backup command. | [optional]
**ObjectOptions** | Pointer to [**map[string]ObjectExportImportNames**](object-export-import-names) | Additional options targeting specific objects related to each item in the includeTypes field. | [optional]
## Examples
- Prepare the resource
```powershell
$BackupOptions = Initialize-PSSailpoint.V2024BackupOptions -IncludeTypes null `
-ObjectOptions {TRIGGER_SUBSCRIPTION={includedNames=[Trigger Subscription name]}}
```
- Convert the resource to JSON
```powershell
$BackupOptions | ConvertTo-JSON
```
[[Back to top]](#)